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

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

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

/* Styles that apply to all SelectBoxIt elements */

.selectboxit-container * {
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    /* Prevents text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    color: #000;
    font: 11px "Roboto", Arial;
    outline: none;
    user-select: none;
    white-space: nowrap;
}

/* Button */

.selectboxit-container .selectboxit {
    border: none;
    cursor: pointer;
    display: block;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.small .selectboxit-container .selectboxit {
    background: url("../Content/imgs/select_small.jpg") no-repeat 0 0;
    width: 81px !important; /* Width of the dropdown button */
}

.medium .selectboxit-container .selectboxit {
    background: url("../Content/imgs/select_medium.jpg") no-repeat 0 0;
    width: 115px !important; /* Width of the dropdown button */
}

.big .selectboxit-container .selectboxit {
    background: url("../Content/imgs/select_big.jpg") no-repeat 0 0;
    width: 199px !important; /* Width of the dropdown button */
}

.bigger .selectboxit-container .selectboxit {
    background: url("../Content/imgs/select_bigger.jpg") no-repeat 0 0;
    width: 360px !important; /* Width of the dropdown button */
}

/* Height and Vertical Alignment of Text */

.selectboxit-container span, .selectboxit-container .selectboxit-options a {
    display: block;
    height: 24px; /* Height of the drop down */
    line-height: 28px; /* Vertically positions the drop down text */
}

.bigger .selectboxit-container span, .bigger .selectboxit-container .selectboxit-options a {
    display: block;
    height: 30px; /* Height of the drop down */
    line-height: 34px; /* Vertically positions the drop down text */
}

/* Focus pseudo selector */

.selectboxit-container .selectboxit:focus { outline: 0; }

/* Disabled Mouse Interaction */

.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
    filter: alpha(opacity=65);
    opacity: 0.65;
}

/* Button Text */

.selectboxit-text {
    float: left;
    overflow: hidden;
    text-indent: 5px;
    text-overflow: ellipsis;
}

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

/* Options List */

.selectboxit-options {
    -moz-box-shadow: none;
    -moz-box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 !important;
    position: absolute;
    text-align: left;
    width: 100%;
    *width: 100% !important;
    z-index: 1000000;
}

.small .selectboxit-options { max-width: 81px !important; }

.medium .selectboxit-options { max-width: 115px !important; }

.big .selectboxit-options { max-width: 198px !important; }

.bigger .selectboxit-options { max-width: 360px !important; }

.selectboxit-options li { margin: 2px 0 !important; }

/* Individual options */

.selectboxit-option .selectboxit-option-anchor { padding: 0 2px; }

/* Individual Option Hover Action */

.selectboxit-option .selectboxit-option-anchor:hover { text-decoration: none; }

/* Individual Option Optgroup Header */

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

/* The first Drop Down option */

.selectboxit-option-first {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* The first Drop Down option optgroup */

.selectboxit-optgroup-header + .selectboxit-option-first {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

/* The last Drop Down option */

.selectboxit-option-last {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Drop Down optgroup headers */

.selectboxit-optgroup-header { font-weight: bold; }

/* Drop Down optgroup header hover psuedo class */

.selectboxit-optgroup-header:hover { cursor: default; }

/* Drop Down down arrow container */

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

/* Drop Down down arrow */

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

/* Drop Down down arrow for jQueryUI and jQuery Mobile */

.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon { top: 30%; }

/* Drop Down individual option icon positioning */

.selectboxit-option-icon-container { float: left; }

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

/* Drop Down individual option icon positioning */

.selectboxit-option-icon-url {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    float: left;
    height: 100%;
    width: 18px;
}

.selectboxit-rendering {
    display: inline-block !important;
    *display: inline !important;
    left: -9999px !important;
    position: absolute !important;
    top: -9999px !important;
    visibility: visible !important;
    zoom: 1 !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
*/

.selectboxit-btn {
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    border-bottom-color: #b3b3b3;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
    background-color: #e6e6e6;
    color: #333333;
}

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

.selectboxit-default-arrow {
    /*  width: 0;
  height: 0;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;*/
}

.selectboxit-list {
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor { color: #000; }

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    color: #0791c6;
    /*background-color: #0081c2;
  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;*/
}

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