.SelectWrapper{
        display:table;
        width: 100%;
        position: relative;
    }
    .SelectWrapper:after{
        z-index: 11;
        color: #bebebe;
        font-family: 'icomoon' !important;
        font-size: 2rem;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e906";
        position: absolute;
        pointer-events: none;
        margin-left: -30px;
        margin-top: 13px;
    }
    .SelectWrapper.open:after{
        content: "\e909";
    }
    .dropdown-toggle{
        display: table-cell;
        width: 100%;
        vertical-align: middle;
        border: none;
        border-radius: 0px;
        border-bottom: 1px solid #aaa;
        outline: none;
        margin: 0px;
        padding: 0.1em 2em 1px 0em;
        background: none;
        font-family: "Univers LT W01_57 Condensed";
        height: 41px !important;
        line-height: 26px;
        letter-spacing: -0.21px;
        color:black;
        font-size: 19px;
    }
    .dropdown-toggle-open {
        background-color: transparent !important;
    }
    .dropdown-toggle:hover{
        cursor: pointer;
    }
    .dropdown-menu{
        position: absolute;
        left: 0px;
        margin-top: 45px;
        padding: 0;
        line-height: 30px;
        letter-spacing: 0;
        width: 100%;
        max-height: 450px;
        overflow-y: scroll;
        z-index: 12;
        display: none;
        float: left;
        min-width: 160px;
        text-align: left;
        list-style: none;
        background-color: #fff;
    }
    .dropdown-menu::-webkit-scrollbar {
        width: 2px;
        background-color: transparent;
    }
    .dropdown-menu::-webkit-scrollbar-thumb {
        background-color: #000000;
    }
    .dropdown-menu li{
        padding: 8px 25px 9px 25px;
        border: 1px solid #e5e5e5;
        border-top: none;
        text-decoration: none;
        color:#444444;
        font-size: inherit;
        -webkit-transition: all 200ms ease;
        transition: all 200ms ease;
        white-space: nowrap;
    }
    .dropdown-menu li:hover{
        background-color: #ebf9fa;
        cursor: pointer;
        color: #00B1EB;
    }