/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.4.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2015 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container
{
    position: relative;
    display: block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .chosen-container *
    {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .chosen-container .chosen-drop
    {
        display: none;
        position: absolute;
        top: 100%;
        left: -9999px;
        z-index: 1010;
        width: 100%;
        border: 1px solid #ccc;
        border-top: 0;
        left: 0;
        background: #fff;
        transform: translateZ(0);
    }

    .chosen-container.chosen-with-drop .chosen-drop
    {
        display: block;
    }

    .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name
    {
        margin-right: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: normal;
        color: #999999;
    }

        .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after
        {
            content: ":";
            padding-left: 2px;
            vertical-align: top;
        }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single
{
    position: relative;
    cursor: default;
    overflow: hidden;
    background-clip: padding-box;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    width: 100%;
    height: 30px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.chosen-container-single .chosen-default
{
    color: #999;
}

.chosen-container-single .chosen-single span
{
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.chosen-container-single .chosen-single-with-deselect span
{
    margin-right: 38px;
}

.chosen-container-single .chosen-single abbr
{
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: white;
    font-size: 1px;
}

    .chosen-container-single .chosen-single abbr:hover
    {
        background-position: -42px -10px;
    }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover
{
    background-position: -42px -10px;
}

.chosen-container-single .chosen-single div
{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

    .chosen-container-single .chosen-single div .fa
    {
        margin-top: 9px;
    }

.chosen-container-single .chosen-search
{
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap;
}

    .chosen-container-single .chosen-search input[type="text"]
    {
        margin: 1px 0;
        padding: 4px 20px 4px 5px;
        width: 100%;
        height: auto;
        outline: 0;
        border: 1px solid #aaa;
        background: white;
        font-size: 1em;
        font-family: sans-serif;
        line-height: normal;
        border-radius: 0;
    }

.chosen-container-single .chosen-drop
{
    background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search
{
    position: absolute;
    left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results
{
    color: #555;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    max-height: 240px;
    -webkit-overflow-scrolling: touch;
}

    .chosen-container .chosen-results li
    {
        display: none;
        margin: 0;
        padding: 3px 5px;
        list-style: none;
        line-height: 14px;
        font-size: 12px;
        word-wrap: break-word;
        -webkit-touch-callout: none;
        cursor: default;
    }

        .chosen-container .chosen-results li.active-result
        {
            display: list-item;
        }

        .chosen-container .chosen-results li.disabled-result
        {
            display: list-item;
            color: #ccc;
        }

        .chosen-container .chosen-results li.highlighted
        {
            background: #3BB770;
            color: #fff;
        }

        .chosen-container .chosen-results li.no-results
        {
            display: list-item;
            background: #FFF;
        }

        .chosen-container .chosen-results li.group-result
        {
            display: list-item;
            font-weight: bold;
        }

        .chosen-container .chosen-results li.group-option
        {
            padding-left: 15px;
        }

        .chosen-container .chosen-results li em
        {
            font-style: normal;
            text-decoration: underline;
        }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices
{
    height: auto !important;
    height: 1%;
    cursor: text;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    width: 100%;
    padding: 1px 12px;
    margin: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .chosen-container-multi .chosen-choices li
    {
        float: left;
        list-style: none;
    }

        .chosen-container-multi .chosen-choices li.search-field
        {
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }

            .chosen-container-multi .chosen-choices li.search-field input[type="text"]
            {
                margin: 1px 0;
                padding: 0;
                height: 25px;
                outline: 0;
                border: 0 !important;
                background: transparent !important;
                box-shadow: none;
                color: #999;
                font-size: 100%;
                font-family: sans-serif;
                line-height: normal;
                border-radius: 0;
            }

        .chosen-container-multi .chosen-choices li.search-choice
        {
            position: relative;
            margin: 3px 5px 3px 0;
            padding: 3px 10px 3px 5px;
            max-width: 100%;
            background-color: #DDE5E7;
            color: #4E4E4E;
            cursor: default;
            text-align: center;
            font-size: 75%;
            font-weight: bold;
            line-height: 1;
            vertical-align: baseline;
            border-radius: .25em;
        }

            .chosen-container-multi .chosen-choices li.search-choice span
            {
                overflow: hidden;
                width: 100%;
                text-overflow: ellipsis;
                white-space: nowrap;
                display: inline-block;
                vertical-align: top;
            }

            .chosen-container-multi .chosen-choices li.search-choice .fa
            {
                color: #A3B4BD;
                cursor: pointer;
            }

        .chosen-container-multi .chosen-choices li.search-choice-disabled
        {
            padding-right: 5px;
            border: 1px solid #ccc;
            background-color: #e4e4e4;
            background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
            background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
            background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
            background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
            background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
            color: #666;
        }

        .chosen-container-multi .chosen-choices li.search-choice-focus
        {
            background: #d4d4d4;
        }

            .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close
            {
                background-position: -42px -10px;
            }

.chosen-container-multi .chosen-results
{
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected
{
    display: list-item;
    color: #ccc;
}

/* @end */


.chosen-container-active .chosen-single
{
    border-color: rgb(92, 184, 92);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(92, 184, 92, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(92, 184, 92,.6);
}

.chosen-container-active.chosen-with-drop .chosen-single
{
    border-color: rgb(92, 184, 92);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(92, 184, 92, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(92, 184, 92,.6);
}

.chosen-container-active .chosen-choices
{
    border-color: rgb(92, 184, 92);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(92, 184, 92, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(92, 184, 92,.6);
}

    .chosen-container-active .chosen-choices li.search-field input[type="text"]
    {
        color: #555 !important;
    }

.chosen-disabled
{
    opacity: 0.5 !important;
}
