/* Styles for exanic DropDownList Implementation */

.dropdown-list
{
    position: relative;
    margin-bottom: 0;
    width: 100%;
}

    .dropdown-list:after
    {
        position: absolute;
        top: 14px;
        right: 12px;
        width: 11px;
        height: 6px;
        background: url(ddlarrow.png) no-repeat;
        content: '';
        pointer-events: none;
    }

    .dropdown-list > select
    {
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        display: inline-block;
        overflow: hidden;
        outline: none;
        text-indent: 0.01px;
        -ms-text-overflow: '';
        -o-text-overflow: '';
        text-overflow: '';
        cursor: pointer;
        width: 100%;
    }

        .dropdown-list > select::-ms-expand
        {
            display: none;
        }

        .dropdown-list > select > option
        {
            padding: 6px 12px;
        }

/* Fix for Inline Display */
.form-inline .dropdown-list
{
    display: inline-block;
    width: 150px;
}

    .form-inline .dropdown-list > select
    {
        width: 100%;
    }
