/*
 * jquery.selectBoxIt1.css 3.8.0
 * Author: @gregfranko
 */

/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/

/* selectBoxIt1 container */
.selectBoxIt1-container {
  position: relative;
  display: inline-block;
  vertical-align: top;

}

/* Styles that apply to all selectBoxIt1 elements */
.selectBoxIt1-container * {
 font-family: 'Merriweather',serif;
	font-size: 16px;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
  color:rgb(105, 166, 177);
  font-weight: normal;
}



/* Button */
.selectBoxIt1-container .selectBoxIt1 {
 
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
}
#location .mortgage_input {
 font-family: 'Merriweather',serif;
}

/* Height and Vertical Alignment of Text */
.selectBoxIt1-container span, .selectBoxIt1-container .selectBoxIt1-options a {
  height: 42px; /* Height of the drop down */
  line-height: 47px; /* Vertically positions the drop down text */
  display: block;
 padding-right: 5px;
 overflow: hidden;
}

/* Focus pseudo selector */
.selectBoxIt1-container .selectBoxIt1:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectBoxIt1.selectBoxIt1-disabled, .selectBoxIt1-options .selectBoxIt1-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectBoxIt1-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.selectBoxIt1 .selectBoxIt1-option-icon-container {
  margin-left: 5px;
}

/* Options List */
.selectBoxIt1-container .selectBoxIt1-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 6px;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  
}

/* Individual options */
 .selectBoxIt1-option .selectBoxIt1-option-anchor{
  padding: 0 2px;
}

/* Individual Option Hover Action */
.selectBoxIt1-option .selectBoxIt1-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectBoxIt1-option, .selectBoxIt1-optgroup-header {
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}

/* The first Drop Down option */
.selectBoxIt1-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectBoxIt1-optgroup-header + .selectBoxIt1-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectBoxIt1-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectBoxIt1-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectBoxIt1-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectBoxIt1-arrow-container {
  /* Positions the down arrow */
  width: 27px;
  position: absolute;
  right: 0;
  padding-right: 0 !important;

}

/* Drop Down down arrow */
.selectBoxIt1 .selectBoxIt1-arrow-container .selectBoxIt1-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top:0;
  right: 0;
  left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectBoxIt1 .selectBoxIt1-arrow-container .selectBoxIt1-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectBoxIt1-option-icon-container {
  float: left;
}

.selectBoxIt1-container .selectBoxIt1-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectBoxIt1-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectBoxIt1-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectBoxIt1-btn {
  background-color: #544660;
 border: 2px solid #fff;
 color:#FFFFFF;
}

.selectBoxIt1-btn.selectBoxIt1-enabled:hover,
.selectBoxIt1-btn.selectBoxIt1-enabled:focus,
.selectBoxIt1-btn.selectBoxIt1-enabled:active {
  color: #fff;
  background-color: #544660;
}

.selectBoxIt1-btn.selectBoxIt1-enabled:hover,
.selectBoxIt1-btn.selectBoxIt1-enabled:focus {
  color: #fff;
  text-decoration: none;
  background-position: 0 -15px;
  
}

.selectBoxIt1-default-arrow {
  width: 29px;
  height: 42px;
  background-image:url(arrow2.jpg);
  background-repeat:no-repeat;
  background-position:right top;

}

.selectBoxIt1-list {
  background-color: #544660;
  border: 2px solid #fff;
  color:#FFFFFF;


 /* border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
}

.selectBoxIt1-list .selectBoxIt1-option-anchor {
  color: #fff;
 
}

.selectBoxIt1-list > .selectBoxIt1-focus > .selectBoxIt1-option-anchor {
  color: #ffffff;
  background-color: #3A2948;
 /* background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;*/
}

.selectBoxIt1-list > .selectBoxIt1-disabled > .selectBoxIt1-option-anchor {
  color: #999999;
}


@media screen and (max-width: 960px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
width: 68px !important;
}

.selectBoxIt1 .selectBoxIt1-option-icon-container {
    margin-left: 0;
    padding-left: 0;
}
.selectBoxIt1-container span, .selectBoxIt1-container .selectBoxIt1-options a {
padding-right: 0 !important;
}

#bedrooms .selectBoxIt1-container span, .selectBoxIt1-container .selectBoxIt1-options a {
padding-right: 0 !important;
}




}
@media screen and (max-width: 780px) {  
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
width: 115px !important;
}
}
@media screen and (max-width: 670px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
    width: 250px !important;
}
#price_range_max .selectBoxIt1-container .selectBoxIt1 {
    width: 250px !important;
}

#bedrooms {
    border-right: 0 none;
    float: right;
    margin-right: 0;
    padding-right: 0;
    width: auto;
}
#bedrooms .selectBoxIt1 {
    width: 250px !important;
}

#location {
    border-right: 0 none;
    margin-right: 0;
    padding-right: 0;
    width: auto;
}
#location .selectBoxIt1-container .selectBoxIt1 {
    width: 250px !important;
}
#search_radius .selectBoxIt1-container .selectBoxIt1 {
    width: 250px !important;
}
}
@media screen and (max-width: 568px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
    width: 230px !important;
}
#price_range_max .selectBoxIt1-container .selectBoxIt1 {
    width: 230px !important;
}
#location .selectBoxIt1-container .selectBoxIt1 {
    width: 230px !important;
}
#bedrooms .selectBoxIt1 {
    width: 230px !important;
}
#search_radius .selectBoxIt1-container .selectBoxIt1 {
    width: 230px !important;
}
#bedrooms .selectBoxIt1 {
    width: 230px !important;
}
}

@media screen and (max-width: 490px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
    width: 380px !important;
}
#price_range_max .selectBoxIt1-container .selectBoxIt1 {
    width: 380px !important;
}
#price_range_max {
float: left;
}
#price_range {
 margin-bottom:0;
 padding-bottom:0;
}
#bedrooms {
width: 100%;
}

#location {
    margin-bottom: 0;
    padding-top: 0;
}
#search_radius {
padding-top: 0;
}
#search_radius .selectBoxIt1-container .selectBoxIt1 {
    width: 380px !important;
}
#location .selectBoxIt1-container .selectBoxIt1 {
    width: 380px !important;
}
#bedrooms .selectBoxIt1 {
    width: 380px !important;
}
.selectboxit-container .selectboxit {
   width: 380px !important;
}

}
@media screen and (max-width: 380px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
#price_range_max .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
#bedrooms .selectBoxIt1 {
    width: 335px !important;
}
#location .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
#search_radius .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
.selectboxit-container .selectboxit {
    width: 335px !important;
}

}
@media screen and (max-width: 380px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
#price_range_max .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
#bedrooms .selectBoxIt1 {
    width: 335px !important;
}
#location .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
#search_radius .selectBoxIt1-container .selectBoxIt1 {
    width: 335px !important;
}
.selectboxit-container .selectboxit {
    width: 335px !important;
}

}
@media screen and (max-width: 340px) { 
#price_range_min .selectBoxIt1-container .selectBoxIt1 {
    width: 265px !important;
}
#price_range_max .selectBoxIt1-container .selectBoxIt1 {
    width: 265px !important;
}
#bedrooms .selectBoxIt1 {
    width: 265px !important;
}
#location .selectBoxIt1-container .selectBoxIt1 {
    width: 265px !important;
}
#search_radius .selectBoxIt1-container .selectBoxIt1 {
    width: 265px !important;
}
.selectboxit-container .selectboxit {
    width: 265px !important;
}
#bedrooms .selectBoxIt1-container span, .selectBoxIt1-container .selectBoxIt1-options a {
padding-right: 0 !important;
max-width: 260px !important;
}

}