@charset "utf-8";

.distpicker {
    position: absolute;
    display: none;
    z-index: 2019;
    width: 280px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.distpicker-nav {
    overflow: hidden;
    background: #E5E5E5;
    white-space: nowrap;
}
.distpicker-nav-item {
    float: left;
    min-width: 30px;
    padding: 6px 12px;
    color: #333333;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}
.distpicker-nav-item:hover {
    background-color: #f7f7f7;
}
.distpicker-nav-item.active {
    background: #FFFFFF;
}
.distpicker-content {
    
    background: #FFFFFF;
}
.distpicker-tab {
    display: none;
    overflow: auto;
    max-height: 260px;
    margin: auto;
    padding: 10px;
    list-style: none;
}
.distpicker-tab.active {
    display: block;
}
.distpicker-tab-item {
    display: inline-block;
    margin: auto;
    padding: 6px 12px;
    color: #333333;
    font-size: 14px;
    cursor: pointer;
}
.distpicker-tab-item:hover {
    color: #dd2534;
    opacity: 0.8;
}
.distpicker-tab-item.active {
    color: #dd2534;
    font-weight: 600;
}