﻿.dropdown {
    -webkit-user-select: none;
    position: relative;
    display: inline-block;
    font-size: 13px;
    cursor: pointer;
}

.dropdown .dropdown-caret {
    border-top: 4px solid #666;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: none;
    position: relative;
    top: 9.5px;
    left: 5px;
}

.dropdown .dropdown-list {
    display: none;
    background: #fff;
    width: 150px;
    border: 1px solid #d6d6d6;
    box-shadow: 0 2px 4px rgba(0,0,0,.16);
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.16);
    position: absolute;
    z-index: 1;
    line-height: 17px;
    padding-top: 5px;
    padding-bottom: 5px;
    top: 25px;        
    right: -4px;
}

.dropdown .dropdown-list .list-item {
    display: block;
    padding: 6px 44px 6px 30px;
    color: #777;
}

.dropdown .dropdown-list .list-item:hover {
    background-color: #f1f1f1;
}

.dropdown .dropdown-list .current {
    background-image: url(/images/checkmark.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.dropdown.expand .dropdown-caret {
    border-top: none;
    border-bottom: 4px solid #666;
    top: -9.5px;
}

.dropdown.expand .dropdown-list {
    display: block;
}