﻿/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */

/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/


/* /////////////////////////////////////////////////////////////////// */
/* GENERIC DROPDOWN                                                    */
/* /////////////////////////////////////////////////////////////////// */
/* SelectBoxIt container */
.content .selectboxit-container {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100% !important;
    margin-bottom: 12px;
}

.content table .selectboxit-container {
    margin-bottom: 0 !important;
}

/* Styles that apply to all SelectBoxIt elements */
.content .selectboxit-container * {
    font-family: robotoregular;
    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;*/
}

/* Button */
.content .selectboxit-container .selectboxit {
    width: 100%; /* Width of the dropdown button */
    cursor: pointer;
    margin: 0;
    padding: 0;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    position: relative;
}

/* Height and Vertical Alignment of Text */
.content .selectboxit-container span, .content .selectboxit-container .selectboxit-options a {
    height: 40px; /* Height of the drop down */
    line-height: 40px; /* Vertically positions the drop down text */
    display: block;
}

/* Focus pseudo selector */
.content .selectboxit-container .selectboxit:focus {
    outline: 0;
}

/* Disabled Mouse Interaction */
.content .selectboxit.selectboxit-disabled, .content .selectboxit-options .selectboxit-disabled {
    background-color: #2e3b52 !important;
    background-image: none;
    color: #0e1d38 !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    cursor: default;
}

/* Button Text */
.content .selectboxit-text {
    text-indent: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.content .selectboxit .selectboxit-option-icon-container {
    margin-left: 5px;
}

/* Options List */
.content .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 !important;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
    display: none;
    z-index: 9999999999999;
    border-radius: 2px;
    text-align: left;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Individual options */
.content .selectboxit-option .selectboxit-option-anchor {
    padding: 0 8px;
    height: auto !important;
    text-indent: 0 !important;
    border-bottom: 1px #a9acb1 solid;
}

.content .selectboxit-option:last-child .selectboxit-option-anchor {
    border: none;
}


/* Individual Option Hover Action */
.content .selectboxit-option .selectboxit-option-anchor:hover {
    text-decoration: none;
}

/* Individual Option Optgroup Header */
.content .selectboxit-option, .selectboxit-optgroup-header {
    text-indent: 5px; /* Horizontal Positioning of the select box option text */
    margin: 0;
    list-style-type: none;
    background: none !important;
    padding-left: 0 !important;
}

/* The first Drop Down option */
.content .selectboxit-option-first {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

/* The first Drop Down option optgroup */
.content .selectboxit-optgroup-header + .selectboxit-option-first {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

/* The last Drop Down option */
.content .selectboxit-option-last {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

/* Drop Down optgroup headers */
.content .selectboxit-optgroup-header {
    font-weight: bold;
}

    /* Drop Down optgroup header hover psuedo class */
    .content .selectboxit-optgroup-header:hover {
        cursor: default;
    }

/* Drop Down down arrow container */
.content .selectboxit-arrow-container {
    /* Positions the down arrow */
    width: 30px;
    position: absolute;
    right: 0;
}

/* Drop Down down arrow */
.content .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 */
    .content .selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
        top: 30%;
    }

/* Drop Down individual option icon positioning */
.content .selectboxit-option-icon-container {
    float: left;
}

.content .selectboxit-container .selectboxit-option-icon {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.content .selectboxit-option-icon-url {
    width: 18px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    float: left;
}

.content .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 */
.content .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 */
.content .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
*/

.content .selectboxit-btn {
    background-image: linear-gradient(bottom, #d8deea 50%, #dfe7f2 0%);
    background-image: -o-linear-gradient(bottom, #d8deea 50%, #dfe7f2 0%);
    background-image: -moz-linear-gradient(bottom, #d8deea 50%, #dfe7f2 0%);
    background-image: -webkit-linear-gradient(bottom, #d8deea 50%, #dfe7f2 0%);
    background-image: -ms-linear-gradient(bottom, #d8deea 50%, #dfe7f2 0%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d8deea, endColorstr=#dfe7f2);
    background-color: #d8deea;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #3D4246;
}

    .content .selectboxit-btn.selectboxit-enabled:hover,
    .content .selectboxit-btn.selectboxit-enabled:focus,
    .content .selectboxit-btn.selectboxit-enabled:active {
        /*background-position: 0 -20px;*/
    }

/*.selectboxit-btn.selectboxit-enabled:hover,
    .selectboxit-btn.selectboxit-enabled:focus {
        color: #333333;
        text-decoration: none;
        background-position: 0 -20px;
    }*/


.content .selectboxit-default-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid #acacae;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.content .selectboxit.selectboxit-disabled .selectboxit-default-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid #181f2b;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.content .selectboxit-list {
    background-color: #d8deea;
    border: 1px solid #a9acb1;
    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);
}

    .content .selectboxit-list .selectboxit-option-anchor {
        color: #3D4246;
    }

    .content .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
        color: #3D4246;
        background-color: #dfe7f2;
    }

    .content .selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
        color: #999999;
    }


/* /////////////////////////////////////////////////////////////////// */
/* LAMP FINDER DROPDOWN                                                */
/* /////////////////////////////////////////////////////////////////// */

/* SelectBoxIt container */
#LampFinder .selectboxit-container {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 12px;
}

    /* Styles that apply to all SelectBoxIt elements */
    #LampFinder .selectboxit-container * {
        font-family: robotoregular;
        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;
    }

    /* Button */
    #LampFinder .selectboxit-container .selectboxit {
        width: 100%; /* Width of the dropdown button */
        cursor: pointer;
        margin: 0;
        padding: 0;
        border-radius: 2px;
        overflow: hidden;
        display: block;
        position: relative;
    }

    /* Height and Vertical Alignment of Text */
    #LampFinder .selectboxit-container span, #LampFinder .selectboxit-container .selectboxit-options a {
        height: 40px; /* Height of the drop down */
        line-height: 40px; /* Vertically positions the drop down text */
        display: block;
    }

    /* Focus pseudo selector */
    #LampFinder .selectboxit-container .selectboxit:focus {
        outline: 0;
    }

/* Disabled Mouse Interaction */
#LampFinder .selectboxit.selectboxit-disabled, #LampFinder .selectboxit-options .selectboxit-disabled {
    background-color: #2e3b52 !important;
    background-image: none;
    color: #A0A5B1 !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    cursor: default;
}

/* Button Text */
#LampFinder .selectboxit-text {
    text-indent: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    width: 100%;
    height: 40px;
}

#LampFinder .selectboxit #LampFinder .selectboxit-option-icon-container {
    margin-left: 5px;
}

/* Options List */
#LampFinder .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: 2px;
    text-align: left;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Individual options */
#LampFinder .selectboxit-option .selectboxit-option-anchor {
    padding: 0 2px;
}

    /* Individual Option Hover Action */
    #LampFinder .selectboxit-option .selectboxit-option-anchor:hover {
        text-decoration: none;
    }

/* Individual Option Optgroup Header */
#LampFinder .selectboxit-option, .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 */
#LampFinder .selectboxit-option-first {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

/* The first Drop Down option optgroup */
#LampFinder .selectboxit-optgroup-header + .selectboxit-option-first {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

/* The last Drop Down option */
#LampFinder .selectboxit-option-last {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

/* Drop Down optgroup headers */
#LampFinder .selectboxit-optgroup-header {
    font-weight: bold;
}

    /* Drop Down optgroup header hover psuedo class */
    #LampFinder .selectboxit-optgroup-header:hover {
        cursor: default;
    }

/* Drop Down down arrow container */
#LampFinder .selectboxit-arrow-container {
    /* Positions the down arrow */
    width: 30px;
    position: absolute;
    right: 0;
}

/* Drop Down down arrow */
#LampFinder .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 */
    #LampFinder .selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
        top: 30%;
    }

/* Drop Down individual option icon positioning */
#LampFinder .selectboxit-option-icon-container {
    float: left;
}

#LampFinder .selectboxit-container .selectboxit-option-icon {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Drop Down individual option icon positioning */
#LampFinder .selectboxit-option-icon-url {
    width: 18px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    float: left;
}

#LampFinder .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 */
#LampFinder .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 */
#LampFinder .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
*/

#LampFinder .selectboxit-btn {
    background-image: linear-gradient(bottom, rgb(255,204,51) 50%, rgb(255,217,102) 0%);
    background-image: -o-linear-gradient(bottom, rgb(255,204,51) 50%, rgb(255,217,102) 0%);
    background-image: -moz-linear-gradient(bottom, rgb(255,204,51) 50%, rgb(255,217,102) 0%);
    background-image: -webkit-linear-gradient(bottom, rgb(255,204,51) 50%, rgb(255,217,102) 0%);
    background-image: -ms-linear-gradient(bottom, rgb(255,204,51) 50%, rgb(255,217,102) 0%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffcc33, endColorstr=#ffd966);
    background-color: rgb(255,204,51);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

    #LampFinder .selectboxit-btn.selectboxit-enabled:hover,
    #LampFinder .selectboxit-btn.selectboxit-enabled:focus,
    #LampFinder .selectboxit-btn.selectboxit-enabled:active {
        /*background-position: 0 -20px;*/
    }

/*.selectboxit-btn.selectboxit-enabled:hover,
    .selectboxit-btn.selectboxit-enabled:focus {
        color: #333333;
        text-decoration: none;
        background-position: 0 -20px;
    }*/


#LampFinder .selectboxit-default-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid #886d1b;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

#LampFinder .selectboxit.selectboxit-disabled .selectboxit-default-arrow {
    width: 0;
    height: 0;
    border-top: 4px solid #181f2b;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

#LampFinder .selectboxit-list {
    background-color: #ffd966;
    border: 1px solid #ffcc33;
    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);
}

    #LampFinder .selectboxit-list .selectboxit-option-anchor {
        color: #000;
    }

    #LampFinder .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
        color: #000;
        background-color: #ffcc33;
    }

    #LampFinder .selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
        color: #999999;
    }
