
.custom-dropdown__select {
    font-family: Tahoma;
    text-align: left;
    margin: 0; /* remove default margins */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    width: 100%;
    height: 30px;
    border: 1px solid #C6CCD5;
    padding: 0px 0px 0px 10px;
    border: 1px solid #C6CCD5;
    background-color: white;
    box-sizing: border-box;
    color: #707883;
    font-size: 12px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor:pointer;
}



    .custom-dropdown__select option {
        padding-bottom: 5px;
        padding-left: 10px;
        background-color: white; /*Color of option BG*/
        color: #333333;
    }

@supports (pointer-events: none) and ((-webkit-appearance: none) or
      (-moz-appearance: none) or
      (appearance: none)) {
    .custom-dropdown {
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }
}
    .custom-dropdown__select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .custom-dropdown::before,
    .custom-dropdown::after {
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .custom-dropdown::after { /*  Custom dropdown arrow */
        height: 6px;
        font-size: .625em;
        line-height: 1;
        right: 11px;
        top: 50%;
        margin-top: -3px;
    }


    .custom-dropdown::before { /*  Custom dropdown arrow cover */
        width: 2.9em;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .custom-dropdown__select[disabled] {
        color: rgba(102,102,102,1);
    }

    .custom-dropdown.custom-dropdown--disabled::after {
        color: rgba(102,102,102,1);
    }

    .custom-dropdown__select--Grey {
        background-color: #ffffff;
        border: 1px solid #F2F2F2 !important;
        width: 261px;
        height: 30px;
    }

    .custom-dropdown--Grey::before {
        top: 0px;
        bottom: 0px;
        background-color: #DEE2E7 !important;
        border: 1px solid #C6CCD5 !important;
        width: 32px !important;
    }

    .custom-dropdown--Grey::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #242B31;
    }

    .custom-dropdown__select--Form {
        background-color: #ffffff;
        border: 1px solid #c6ccd5;
        width: 100%;
        height: 30px;
        color: #707883;
        font-size: 12px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }

        .custom-dropdown__select--Form:focus {
            border: 1px solid #82DAFF;
        }

    .custom-dropdown--Form::before {
        top: 0px;
        bottom: 0px;
        background-color: #DEE2E7 !important;
        border: 1px solid #C6CCD5 !important;
        width: 37px !important;
    }

    .custom-dropdown--Form::after {
        content: '';
        width: 0;
        height: 0;
        right: 14px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #242B31;
    }
     