/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */

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

/* SelectBoxIt container */
#svm-canvas .selectboxit-container {
	position: relative;
	display: inline-block;
	vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
#svm-canvas .selectboxit-container * {
	font-size: 14px;

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

/* Button */
#svm-canvas .selectboxit-container .selectboxit {
  width: 220px; /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  display: block;
  position: relative;
}

/* Height and Vertical Alignment of Text */
#svm-canvas .selectboxit-container span, #svm-canvas .selectboxit-container .selectboxit-options a {
	height: 38px; /* Height of the drop down */
	line-height: 38px;
	display: block;
	text-decoration: none !important;
}

/* Focus pseudo selector */
#svm-canvas .selectboxit-container .selectboxit:focus {
	outline: 0;
}

/* Disabled Mouse Interaction */
#svm-canvas .selectboxit.selectboxit-disabled, #svm-canvas .selectboxit-options .selectboxit-disabled {
	opacity: 0.25;
	filter: alpha(opacity=25);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	cursor: default;
}

/* Button Text */
#svm-canvas .selectboxit-text {
	text-indent: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	float: left;
	min-width: calc(100% - 30px);
}

#svm-canvas .selectboxit .selectboxit-option-icon-container {
	margin-left: 5px;
}

/* Options List */
#svm-canvas .selectboxit-container .selectboxit-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: 0;
	text-align: left;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* Individual options */
#svm-canvas .selectboxit-option .selectboxit-option-anchor{
	padding: 0 2px;
}

/* Individual Option Hover Action */
#svm-canvas .selectboxit-option .selectboxit-option-anchor:hover {
	text-decoration: none;
}

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

/* The first Drop Down option */
#svm-canvas .selectboxit-option-first {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

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

/* The last Drop Down option */
#svm-canvas .selectboxit-option-last {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

/* Drop Down optgroup headers */
#svm-canvas .selectboxit-optgroup-header {
	font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
#svm-canvas .selectboxit-optgroup-header:hover {
	cursor: default;
}

/* Drop Down down arrow container */
#svm-canvas .selectboxit-arrow-container {
	/* Positions the down arrow */
	width: 30px;
	position: absolute;
	right: 0;
}

/* Drop Down down arrow */
#svm-canvas .selectboxit .selectboxit-arrow-container .selectboxit-arrow {
	/* Horizontally centers the down arrow */
	margin: 0 auto;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
}

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

/* Drop Down individual option icon positioning */
#svm-canvas .selectboxit-option-icon-container {
	float: left;
}

#svm-canvas .selectboxit-container .selectboxit-option-icon {
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

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

/* #svm-canvas removed because of rendering issues */
.selectboxit-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 */
#svm-canvas .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 */
#svm-canvas .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
*/
#svm-canvas .selectboxit-container span.selectboxit {
	border: 2px solid #EAEAEA;
	background: #fff;
	color: #323232;
	border-radius: 0;
	padding: 0;
	box-sizing: border-box;
	height: 40px;
	line-height: 40px;
}

.selectboxit-btn:after {
    color: #999 !important;
    content: "\f107";
    display: block;
    font-family: "arrows";
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    right: 0.25em;
    text-align: center;
    width: 30px;
    z-index: 10;
}

#svm-canvas .selectboxit-btn.selectboxit-enabled:hover,
#svm-canvas .selectboxit-btn.selectboxit-enabled:focus,
#svm-canvas .selectboxit-btn.selectboxit-enabled:active {
	border-radius: 0;
}

#svm-canvas .selectboxit-btn.selectboxit-enabled:hover,
#svm-canvas .selectboxit-btn.selectboxit-enabled:focus {
	color: #333333;
	text-decoration: none;
}

#svm-canvas .selectboxit-default-arrow {
	display: none;
}

#svm-canvas .selectboxit-list {
	background-color: #ffffff;
	border: 1px solid #ccc;
	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);
}

#svm-canvas .selectboxit-list a {
	text-decoration: none;
}

#svm-canvas .selectboxit-list .selectboxit-option-anchor {
	color: #333333;
}

#svm-canvas .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #61abe0;
	background-repeat: repeat-x;
}

#svm-canvas .selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
	color: #999999;
}

#svm-canvas #sort_resultsSelectBoxItContainer.selectboxit-container .selectboxit {
	width: 265px;
}