@CHARSET "UTF-8";

/* Dropdown control */
.selectBox-dropdown {
    background-color: transparent;
    border: 1px solid #efefef;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: normal;
    height: 40px;
    position: relative;
    width: 100%;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
    -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-menuShowing-top {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.selectBox-label {
    padding: 2px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    height: 40px;
    left: 0;
    line-height: 34px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 100%;
}

#search_imov .selectBox-dropdown span, .selectBox-dropdown span > a{
    color: #fff;
}

.selectBox-dropdown span, .selectBox-dropdown span > a{
	color: #5e6d77;
    outline: none;
    text-decoration: none;
    text-transform: capitalize;
}

.selectBox-arrow:before {
    /*background: url(/packages/sunhouse/images/select-icons.png) 0 -40px no-repeat;*/
    font-family: FontAwesome;
    content: "\f0d7"; 
    display: block;
    height: 40px;
    outline: none;
    position: absolute;
    right: 0;
    width: 20px;
    top: 20%;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    list-style: none;
    z-index: 10;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #efefef; /* should be the same border width as .selectBox-dropdown */
    background-color: #efefef;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow-y: auto;   
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;   
}

/* 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;
}

.selectBox-options a:link, .selectBox-options a:visited {
    color: #5e6d77;
    text-decoration: none;
}

.selectBox-options a{
	display: block;
    outline: none;
    padding: 7px 0 7px 3px;
    text-transform: capitalize;
    color: #5e6d77;
}

.selectBox-options li:last-child{
	border-bottom: 0px;
}

/* Options */

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-bottom:1px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
	margin-top: 1px;
}

/*.selectBox-options a:link{
	color: #5e6d77;
    text-decoration: none;
}*/
.selectBox-options li{
    padding: 0 7px;
    border-bottom: solid 1px #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.selectBox-options li.selectBox-hover{
	background-color: #fff;
}

.selectBox-options li.selectBox-hover a {
	color:#5e6d77;
}

.selectBox-options li.selectBox-disabled a {
	color: #888;
	background-color: transparent;
}

.selectBox-options li.selectBox-selected a {
	background-color: transparent;
}

/* 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;
}*/