select {
    width: 100% !important;
}
body { overflow-x: hidden; }
/* Dropdown control */
.selectBox-dropdown {
    width: 100% !important;
    padding: 7px 36px 4px 0px !important;
    position: relative;
    border: 0;
    text-decoration: none;
    color: #000;
    outline: none;
    vertical-align: middle;
    display: inline-block;
    cursor: default;
    cursor: pointer;
    border: 0px !important;
    height: auto;
    background: #fff;
    border: 0px;
    border-bottom: 2px solid #ececec !important;
}

.selectBox-dropdown .selectBox-label {
    width: 100% !important;
    padding: 0px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    border: 0px;
    color: #2d2a2a !important;
    line-height: 20px;
    height: auto !important;
}
.selectBox-dropdown .selectBox-label.current, .selectBox-disabled .selectBox-label { color: #2d2a2a !important;}
.selectBox-arrow  {
    display: inline-block;
    content: "";
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-style: solid;
    border-color: #2d2a2a;
    border-width: 0px 2px 2px 0px;
    display: block;
    position: absolute;
    right: 12px;
    top: 30%;
    transform: translateY(-50%) rotate(45deg);
    transition-duration: 0.5s;
}

.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{top: 56%; transform: translateY(-50%) rotate(-135deg);}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 220px;
    min-height: 1em;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    margin: 5px 0px 0px -5px !important;
    background: #fff;
    border: 0px;
    box-shadow: 6px 6px 15px 0 rgba(106, 92, 58, 0.2);
    border-radius: 10px !important;
    padding: 4px 0px 4px 15px !important;
    min-width: 215px;
}

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

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

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


.selectBox-options LI { position: relative; }
.selectBox-options LI A {
    line-height: 1.5;
    padding: 6px 2px;
    white-space: nowrap;
    overflow: hidden;
    font-weight: normal;
    font-size: 14px;
    color: #272324 !important;
    background: #fff;
    border-bottom: 1px solid #ececec;
    display: block !important;
    min-width: 60px;
    position: relative;
}
.selectBox-dropdown-menu li:last-child a { border: 0px !important; }

.selectBox-options LI.selectBox-selected a, .selectBox-options LI:hover a {
    color: #0168a6 !important;
}

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

.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;
}

.selectBox-options li.selectBox-selected:before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: #6a5c3a; position: absolute; right: 10px; top: 10px; }
.selectBox-options li.selectBox-selected:after  {
    content: "";
    box-sizing: border-box;
    height: 7px;
    width: 4px;
    border-style: solid;
    border-color: #fff;
    border-width: 0px 1px 1px 0px;
    display: block;
    position: absolute;
    right: 15px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    transition-duration: 0.5s;
}

@media only screen and (max-width: 768px) {
    /*.selectBox-dropdown .selectBox-label {font-size: 13px;}
    .selectBox-dropdown .selectBox-label:after {width: 24px; height: 24px; border-radius: 12px; top: 3px; right: 3px;}
    .selectBox-dropdown .selectBox-arrow {padding: 3px; right: 15px; top: 10px;}
    .selectBox-options LI A {font-size: 13px;}*/
}