select {
    width: 100% !important;
}
/* Dropdown control */
.selectBox-dropdown {
    width: 100% !important;
    /*padding: 5px 40px 6px 15px !important;*/
    padding: 10px 40px 5px 15px !important;
    position: relative;
    border: 0;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    display: inline-block;
    cursor: default;
    cursor: pointer;
    border: 0px !important;
    height: auto;
    background: #f7f7f7;
    border: 1px solid #f7f7f7;
    font-weight: 300;
}

.selectBox-dropdown .selectBox-label {
    width: 100% !important;
    padding: 0px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    font-size: 16px;
    border: 0px;
    color: #212120 !important;
    font-weight: 300;
    line-height: 20px;
}
.selectBox-arrow  {
    display: inline-block;
    content: "";
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-style: solid;
    border-color: #212120;
    border-width: 0px 2px 2px 0px;
    display: block;
    position: absolute;
    right: 12px;
    top: 40%;
    transform: translateY(-50%) rotate(45deg);
    transition-duration: 0.5s;
}



.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{top: 56%; transform: translateY(-50%) rotate(-135deg);}



#by_year .selectBox-dropdown .selectBox-label:before {
    background: url('../images/media/calender_icon.png') no-repeat left top;
    background-size: cover;
    width: 21px;
    height: 22px;
    top: 5px;
}
#by_category .selectBox-dropdown .selectBox-label:before {
    background: url('../images/media/category_icon.png') no-repeat left top;
    background-size: cover;
    width: 19px;
    height: 19px;
    top: 6px;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 220px;
    min-height: 1em;
    padding-top: 0px !important;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    margin: 4px 0px !important;
    background: #fff;
    border:1px solid #f7f7f7;
}

/* 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 A {
    line-height: 1.5;
    padding: 6px 10px;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 300;
    
    font-size: 15px;
    color: #212120 !important;
    background: #fff;
}
/*.selectBox-dropdown-menu li:first-child { display: none !important; }*/

.selectBox-options LI.selectBox-selected a, .selectBox-options LI:hover a {
    color: #212120 !important;
    background: #f7f7f7 !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;
}


@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: 17px;}
.selectBox-options LI A {font-size: 13px;}
}