/* ===========================================================
 *
 *  Name:          selectordie.css
 *  Updated:       2014-04-27
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Beards, Rock & Loud Guns | Cogs 'n Kegs
 * =========================================================== */

/* Remove, change to fit your needs */
@font-face {
    font-family: 'siemens_sansroman';
    src: url('../../fonts/siemenssans-roman-webfont.eot');
    src: url('../../fonts/siemenssans-roman-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/siemenssans-roman-webfont.woff') format('woff'),
         url('../../fonts/siemenssans-roman-webfont.ttf') format('truetype'),
         url('../../fonts/siemenssans-roman-webfont.svg#siemens_sansroman') format('svg');
    font-weight: normal;
    font-style: normal;

}

.sod_select,
.sod_select *
    {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
			font-family: 'siemens_sansroman';
    }

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select
    {
        display: inline-block;
        position: relative;
        line-height: 1;
        width: 134px;
		height:41px;
		background:#FFF;
        /*background: url(../../images/drop-bg.jpg) repeat-x left top;
		border-radius:10px;
		-moz-border-radius:10px;
		-webkit-border-radius:10px;*/
		margin:0px 4px 0 0px;
		padding-left:14px;
		padding-top:14px;
        color: #828282;
        font-size: 13px;
        font-weight: 400;
        text-align: left;
        text-transform: none;
        outline: 0;
        outline-offset: -2px; /* Opera */
        cursor: default;
		float:left;
    }
	
	.locationleft{width:182px; height:31px; border:solid 1px #c3c3c3; border-radius:0px; background:url(../../images/locationdrop-bg.jpg) repeat-x left top !important; margin-top:0px;}
	.locationleft .sod_label{margin-top:-5px;}
	
	.locationleft:after
            {
                content: "\25BC";
                top: 10px;
                bottom: 9px !important;
				font-size:15px;
            }
	.locationleft:hover, .focus { border-color: #afaeae !important; }
	.locationleft .sod_list{width:180px !important; border-radius:0px !important;}
	.locationleft .sod_list li{width:100% !important;}
	
	.sortby{width:125px; height:23px; float:right; border:solid 1px #c3c3c3; border-radius:0px; background:url(../../images/sortby-bg.jpg) repeat-x left top !important; margin-top:0px; margin-right:0px;}
	.sortby .sod_label{margin-top:-9px; font-size:12px; margin-left:0px;}
	.sortby:hover, .focus { border-color: #afaeae !important; }
	.sortby .sod_list{width:123px !important; border-radius:0px !important;}
	.sortby .sod_list li{width:100% !important;}
	.sortby:after
		{
			content: "\25BC";
			top: 10px;
			bottom: 5px !important;
			font-size:15px;
		}
		
	.venuebyocassion{width:162px; height:23px; float:right; border:solid 1px #c3c3c3; border-radius:0px; background:url(../../images/sortby-bg.jpg) repeat-x left top !important; margin-top:-66px; margin-right:0px;}
	.venuebyocassion .sod_label{margin-top:-9px; font-size:12px; margin-left:0px;}
	.venuebyocassion:hover, .focus { border-color: #afaeae !important; }
	.venuebyocassion .sod_list{width:160px !important; border-radius:0px !important;}
	.venuebyocassion .sod_list li{width:100% !important;}
	.venuebyocassion:after
		{
			content: "\25BC";
			top: 10px;
			bottom: 5px !important;
			font-size:15px;
		}
		
		

    /* Up/Down arrows */
    .sod_select:before,
    .sod_select:after
        {
            content: "";
            position: absolute;
            right: 10px;
            top: 12px;
            font-size: 7px;
        }

        /* Down arrow */
        .sod_select:after
            {
                content: "\25BC";
                top: auto;
                bottom: 15px;
				font-size:11px;
            }

    /* Change the border color on hover, focus and when open */
    .sod_select:hover,
    .sod_select.open,
    .sod_select.focus { border-color: #000000; }

        .sod_select.open { color: #919191; }
        .sod_select.focus { box-shadow: 0 0 5px rgba(0,0,0,.2); }

    /* When the entire SoD is disabled, go crazy! */
    .sod_select.disabled
        {
            border-color: #828282;
            color: #b2b2b2;
            cursor: not-allowed;
        }

    /* The "label", or whatever we should call it. Keep the first three lines for truncating. */
    .sod_select .sod_label
        {
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;

            padding-right: 15px;
        }

        .sod_select .sod_prefix { /* Use this if you're using a prefix and want to style it */ }
        .sod_select .sod_placeholder { /* Use this if you're using a placeholder and want to style it */ }



    /* Options list wrapper */
    .sod_select .sod_list
        {
            position: absolute;
            top: 100%;
            left: 0;
            display: none;
            height: auto;
            width: 135px;
            margin: 0 0 0 -3px;
			box-shadow:0px 0px 5px #666;
            background: #f9f9f9;
            color: #444444;
            font-weight: 300;
            z-index: 1;
			margin-left:0px;
        }

        /* Shows the option list (don't edit) */
        .sod_select.open .sod_list { display: block; border-radius:10px;
		-moz-border-radius:10px;
		-webkit-border-radius:10px; }

        /* Don't display the options when  */
        .sod_select.disabled.open .sod_list { display: none;  }

        /* When the option list is displayed above the SoD */
        .sod_select.above .sod_list
            {

            }

    /* Options list container */
    .sod_select .sod_list ul
        {
            overflow-y: auto;
            padding: 0;
            margin: 0;
			max-height:164px !important;
        }

        /* All the options. Keep the first three lines for truncating... */
        .sod_select .sod_list li
            {
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;

                position: relative;
                padding: 10px 10px;
                list-style-type: none;
            }
			

            /* Optgroups */
            .sod_select .sod_list .optgroup,
            .sod_select .sod_list .optgroup.disabled
                {
                    background: inherit;
                    color: #939393;
                    font-size: 10px;
                    font-style: italic;
                }

                /* Children of an optgroup */
                .sod_select .sod_list .groupchild { padding-left: 20px; }

            /* Disabled option */
            .sod_select .sod_list .disabled
                {
                    background: inherit;
                    color: #cccccc;
                }

            /* Hover state for options, also used when a user uses his/hers up/down keys */
            .sod_select .sod_list .active
                {
                    background: #f1eeee;
                    color: #333333;
					

                }
				.sod_select .sod_list li:first-child.active{
					border-radius:10px 10px 0px 0px;	
				}
				.sod_select .sod_list li:last-child.active{
					border-radius:0px 0px 10px 10px;	
				}

            /*Make room for the check mark */
            .sod_select .sod_list .selected
                {
                    font-weight: 700;
					color:#000;
					font-size:12.3px;
                    padding-right: 25px;
                }

                /* Displays a check mark for the selected option */
                .sod_select .sod_list .selected:before
                    {
                        content: "";
                        position: absolute;
                        right: 10px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                                transform: translateY(-50%);
                        display: inline-block;
                        color: #808080;
                        height: 9px;
                        width: 10px;
                        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
                    }

                /* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
                .sod_select.no_highlight .sod_list .selected { font-weight: 300; }
                .sod_select.no_highlight .sod_list .selected:before { display: none; }

            .sod_select .sod_list .link { /* If data-link is set on a specific option */ }
            .sod_select .sod_list .linkexternal { /* If data-link-external is set on a specific option */ }



    /* Hide native select */
    .sod_select select { display: none !important; }

        /* The native select in touch mode. Keep this first line. Sorry, keep everything. */
        .sod_select.touch select
            {
                -webkit-appearance: menulist-button;

                position: absolute;
                top: 0;
                left: 0;
                display: block !important;
                height: 100%;
                width: 100%;
                opacity: 0;
                z-index: 1;
            }