﻿#top-search {
    width: 140px;
    float: left;
}

#pendingQueueList {
    height: 0px;
    max-height: 500px !important;
    overflow-y: auto;
    background-color: orange;
    cursor: pointer;
}

#pendingIncontactList {
    height: 0px;
    max-height: 500px !important;
    overflow-y: auto;
    background-color: magenta;
    cursor: pointer;
}

.pendingQueue {
    background-color: orange;
    text-shadow: none;
    cursor: pointer;
    height: 34px;
    border-radius: 3px;
    color: white;
    line-height: 100%;
    text-align: center;
}

.pendingIncontact {
    background-color: magenta;
    text-shadow: none;
    cursor: pointer;
    height: 34px;
    border-radius: 3px;
    color: white;
    line-height: 100%;
    text-align: center;
}

#top-block1, #top-block2, #top-block3, #top-block4 {
    padding-right: 10px;
}

#pendingQueueList::-webkit-scrollbar, #pendingIncontactList::-webkit-scrollbar {
    width: 5px;
}

/* Track */
#pendingQueueList::-webkit-scrollbar-track, #pendingIncontactList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}

/* Handle */
#pendingQueueList::-webkit-scrollbar-thumb, #pendingIncontactList::-webkit-scrollbar-thumb {
    background: #3180b1;
    border-radius: 10px;
}

/* Handle on hover */
    #pendingQueueList::-webkit-scrollbar-thumb:hover, #pendingIncontactList::-webkit-scrollbar-thumb:hover {
        background: #3180b9;
    }
