﻿.custom-dropdown {
    display: inline-block;
    border-radius: 3px;
    margin: 2px 0px 0px 0px;
    width: 130px;
    background-color: #dcdcdc;
    height: 20px;
    border-width: 0px;
    box-shadow: 1px 1px 2px 0 rgba(0,0,0,.6);
    z-index: 10;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

 .custom-dropdown > .label {
        background: #f5f5f5;
        padding: 0 14px 0 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
        z-index: 2;
        height: 20px;
        line-height: 20px;
        border-radius: 3px 3px 0px 0px;
  }

  .custom-dropdown > .label:hover , .custom-dropdown > div >  ul > li:hover {
            background:#e9e9e9;
   }

   .custom-dropdown > .scrollable {
        padding: 0px;
        margin: 0px;
        position: absolute;
        width: 100%;
        top: 20px;
        overflow-x: hidden;
        box-shadow: 1px 1px 2px 0 rgba(0,0,0,.6);
    }

  .custom-dropdown > div > ul {
        padding:0px;
        margin:0px;
        background: #f5f5f5;
        overflow:hidden;
        max-height:150px;
        width: 135%;
        width: calc(100% + 19px);
        overflow-y:scroll;
        right:-19px;
    }

.open {
    overflow:visible;
}

.custom-dropdown > div > ul > li {
    padding: 0 14px 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 20px;
    line-height: 20px;
    color: #000;
}

.custom-dropdown > .label::after {
    content: " ";
    position: absolute;
    top: 7px;
    right: 9px;
    height: 9px;
    width: 9px;
    background: url(../../Assetsv2/images/arrow_icon.png) -27px 0 no-repeat;
}

