﻿/* https://www.xd.com 
 *
 * v4 2013-09-22
 * dropdown
 */
.caret
{
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -4px;
    vertical-align: middle;
    transition: .25s;
    -webkit-backface-visibility: hidden;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: top;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #808b96;
    border-bottom: none;
    _color: #fff;
    _font-size: 0;
    background: transparent;
}
.btn-group
{
    position: relative;
    width: 216px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    line-height: 25px;
}
.btn-group .dropdown-toggle
{
    width: 100%;
    padding: 0;
    line-height: 25px;
    background-color: #fff;
    height: 26px;
}
.btn-group .dropdown-toggle:hover
{
    background: #fff;
}
.btn-group .dropdown-toggle .filter-option
{
    text-align: left;
    left: 11px;
    position: absolute;
    top: 0;
    height: 25px;
    display: block;
    color: #999;
    overflow: hidden;
    right: 34px;
}
.btn-group .dropdown-menu
{
    display: none;
}
.open
{
    z-index: 9;
}
.open .dropdown-menu
{
    display: block;
}
.open .open
{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin: 8px 0 0 -2px;
    border-radius: 6px;
    float: left;
    background-clip: padding-box;
    transition: .25s;
    background: #fff;
    border: 2px solid #e0e0e0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}
.btn-group .dropdown-menu li a
{
    padding: 5px 11px 7px;
    display: block;
    transition: none;
    white-space: nowrap;
}
.btn-group .dropdown-menu li a:hover
{
    background-color: #f60;
    color: #fff;
    transition: none;
}
.checkbox, .radiobox
{
    cursor: pointer;
    padding-left: 18px;
    _zoom: 1;
    position: relative;
    display: block;
}
.checkbox .input-checkbox, .radiobox .input-radio
{
    display: none;
}
.checkbox .icon, .radiobox .icon
{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-family: "Flat-UI-Icons";
    color: #d7dcde;
}
.checkbox-checked .icon, .radiobox-checked .icon
{
    color: #f60;
}