/* Dropdown control */
.selectBox-dropdown {

    position: relative;
    border-width: 0 0 1px 0;
    border-color: #231f20;
    border-style: solid;

    text-decoration: none;
    text-align: right;
    color: #231f20;
    outline: none;
    display: inline-block;
    cursor: default;
    font-size: 17px;
    font-weight: 300;
    background: url(../images/arrow-selec-yellow.png) no-repeat 10px 50%;
    /*height: 30px;*/
    background-size: 23px;
    box-sizing: border-box;

}

.form-talk-to-us .selectBox-dropdown {
    border-color: #fff;
    color: #fff;
background: none;
}

/*.selectBox-dropdown:focus,*/
/*.selectBox-dropdown:focus .selectBox-arrow {*/
/*    border-color: #fff;*/
/*    color: #fff;*/
/*    */
/*}*/

.selectBox-dropdown.selectBox-menuShowing {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {

    display: inline-block;
    white-space: nowrap;
    /*overflow: hidden;*/
}

 .selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 23px;
    height: 100%;


}
footer  .selectBox-dropdown .selectBox-arrow{
    background: #000 url(../images/Layer1.svg) no-repeat 0;
    background-size: contain;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 300px;
    min-height: 1em;
    background: #231f20;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    cursor: pointer;
}

.select-footer-selectBox-dropdown-menu {
    background: #fff;
}

.selectBox-options.select-footer-selectBox-dropdown-menu LI A {
    color: #000;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options::-webkit-scrollbar {
    width: 0;
}

.selectBox-options LI A {
    line-height: 1.5;

    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
    font-size: 17px;
    color: #fff;
    font-weight: 300;
    padding: 5px 10px;
}

.form-talk-to-us .selectBox-options LI A {
    color: #231f20
}
.selectBox-options{
    padding: 13px 0;
}
.selectBox-options LI.selectBox-hover A {
    background-color: #f3c52b;
}

.selectBox-options LI.selectBox-disabled A {
    color: #f3c52b;
    background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #f3c52b;
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}