.custom-dropdown__select {
    background-color: #EEEEEE;
    width: 100%;
    height: 59px;
    border: 0 none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
     -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 10px;
    color: #555555;
    font-family: "SourceSansPro-Regular";
    font-size: 16px;
}


    .custom-dropdown__select option {
        padding-left: 10px;
    }

.custom-dropdown::before,
.custom-dropdown::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.custom-dropdown::after { /*  Custom dropdown arrow */
    content: url(../../images/DropDownArrow.png);
    display: inline;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 0;
    top: 0;
    z-index: 10;
}

.custom-dropdown:hover::after {
    content: url(../../images/DropDownArrowHover.png);
}

.custom-dropdown::before { /*  Custom dropdown arrow cover */
    width: 2.9em;
    right: 0;
    top: 0;
    bottom: 0;
}
