﻿/* GLOBAL SEARCH BOX */

.SearchContent
{
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
}

    .SearchContent .SearchField
    {
        width: 100%;
        box-sizing: border-box;
        padding-right: 50px;
        font-size: 16px;
        font-family: 'Open Sans',sans-serif;
    }

    .SearchContent .SearchField
    {
        width: 100%;
        box-sizing: border-box;
        padding-right: 50px;
        border: 0;
    }

    .SearchContent .SearchButton
    {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
    }

        .SearchContent .SearchButton:before
        {
            float: left;
            padding-top: 12px;
            padding-right: 10px;
            font-size: 24px;
            content: '\f002';
            font-family: 'FontAwesome5';
        }

/* GLOBAL SEARCH RESULTS */
.SearchOuterWrapper .SearchResultWrapper
{
    position: absolute;
    left: -1px;
    right: 0px;
    background-color: #fff;
    overflow-y: auto;
    margin-top: 10px;
    /*min-width: 300px;
    max-width: 300px;*/
    margin-left: 1px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    z-index: 99;
    box-sizing: border-box;
}

.SearchOuterWrapper .SearchResultContent
{
    float: left;
    width: 100%;
    color: #606060;
}

    .SearchOuterWrapper .SearchResultContent .ResultWrapper
    {
        float: left;
        width: 100%;
    }

    .SearchOuterWrapper .SearchResultContent .CategoriesWrapper
    {
    }

    .SearchOuterWrapper .SearchResultContent .CategoryItem
    {
        float: left;
        width: 100%;
        background: #ddd;
        color: #888;
        padding-left: 10px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .SearchOuterWrapper .SearchResultContent .ResultItem
    {
        float: left;
        width: 100%;
        color: #606060;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
        transition: background-color linear 200ms;
        box-sizing: border-box;
    }

        .SearchOuterWrapper .SearchResultContent .ResultItem:hover
        {
            background-color: #eee;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem:focus
        {
            background-color: #eee;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem .Left
        {
            position: absolute;
            width: 60px;
            height: 60px;
            max-width: 80px;
            max-height: 80px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #fff;
            display: table;
            padding: 2px;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem:hover .Left
        {
            border: 1px solid #ccc;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem .Right
        {
            min-height: 65px;
            margin-left: 70px;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem .ImagePlaceHolder
        {
            vertical-align: middle;
            display: table-cell;
            width: 55px;
            height: 55px;
            text-align: center;
        }

            .SearchOuterWrapper .SearchResultContent .ResultItem .ImagePlaceHolder img
            {
                max-width: 100%;
                max-height: 100%;
            }

        .SearchOuterWrapper .SearchResultContent .ResultItem span
        {
            display: block;
            max-width: 100%;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem .ProdNo
        {
            float: left;
            width: 100%;
            line-height: 1.2rem;
            font-size: 0.8rem;
            text-transform:uppercase;
        }
        .SearchOuterWrapper .SearchResultContent .ResultItem .Title
        {
            float: left;
            width: 100%;
            line-height: 1.2rem;
            font-size: 0.8rem
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem .Description
        {
            float: left;
            width: 100%;
            font-size: 1rem;
            color: #aaa;
        }

        .SearchOuterWrapper .SearchResultContent .ResultItem .CategoryDesc
        {
            float: left;
            width: 100%;
            font-size: 0.8rem;
            color: #999;
            text-transform: uppercase;
            line-height: 1rem;
        }

.SearchResultWrapper .Searching.Loader
{
    float:left;
    padding: 5px;
}
