/* ===========================================================
 *
 *  Name:          selectordie_dev.css
 *  Updated:       2014-10-10
 *  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.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */


/* Remove, change to fit your needs */
@import url(http://fonts.googleapis.com/css?family=Lato:300,700);
.sod_select,
.sod_select * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select {
	display: inline-block;
	position: relative;
	font-family: "europa", Arial, Helvetica, sans-serif;
	font-size: 1.000rem !important;
	line-height: 50px;
	width: 100%; height: 50px;
	background: #FAFCF5 !important;
	border: 1px solid #E2E3DE !important;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 20px 0;
	padding: 0 20px;
	outline: 0;
	outline-offset: -2px;
	cursor: default;
	&:last-child {
		margin-bottom: 0;
	}
}

.sod_select.large {
	font-size: 1.875em;
	margin: 0 0 10px 0;
}


/* Up/Down arrows */
.sod_select:after {
	content: '';
	width: 0; height: 0;
	border-style: solid;
	border-width: 0 4px 8px 4px;
	border-color: transparent transparent #838383 transparent;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%; right: 10px;
}

.sod_select.open:after {
	-moz-transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	-o-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.sod_select.large:after {
	font-size: 18px;
}

/*
.sod_select:before,
.sod_select:after {
	content: "\25B2";
	position: absolute;
	right: 10px;
	top: 12px;
	font-size: 7px;
}
*/

/* Down arrow */
/*
.sod_select:after {
	content: "\25BC";
	top: auto;
	bottom: 12px;
}
*/

/* Change the border color on hover, focus and when open */
.sod_select:hover,
.sod_select.open,
.sod_select.focus {

}

.sod_select.open {

}

.sod_select.focus {
	
}

/* 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 {
	display: block;
	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_wrapper {
	line-height: 1;
	width: auto; height: auto;
	background: #FAFCF5;
	border: 1px solid #E2E3DE;
	-webkit-box-shadow: 0 3px 6px #ccc;
	box-shadow: 0 3px 6px #ccc;
	display: none;
	position: absolute;
	top: calc(100% + 10px); 
	left: 0; right: 0;
	z-index: 9999;
}

/* Shows the option list (don't edit) */
.sod_select.open .sod_list_wrapper {
	display: block;
}

/* Don't display the options when  */
.sod_select.disabled.open .sod_list_wrapper {
	display: none;
}

/* When the option list is displayed above the SoD */
.sod_select.above .sod_list_wrapper {
	top: auto; bottom: calc(100% + 10px);
}


/* Options list container */
.sod_select .sod_list {
	max-height: 500px !important;
	display: block;
	overflow-y: auto;
}

/* All the options. Keep the first three lines for truncating... */
.sod_select .sod_option {
	font-size: 12px;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	padding: 10px 15px;
	list-style-type: none;
}


/* Optgroups */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
	background: inherit;
	color: #939393;
	font-size: 10px;
	font-style: italic;
}

/* Children of an optgroup */
.sod_select .sod_option.groupchild {
	padding-left: 20px;
}

/* Used together with placeholderOption / data-placeholder-option */
.sod_select .sod_option.is-placeholder {
	display: none;
}

/* Disabled option */
.sod_select .sod_option.disabled {
	background: inherit;
	color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
.sod_select .sod_option.active {
	background: rgba(0, 0, 0, 0.1);
}

/*Make room for the check mark */
.sod_select .sod_option.selected {
	background: rgba(0, 0, 0, 0.1);
}

.sod_select .sod_option.selected.active {
	background: rgba(0, 0, 0, 0.1);
}


/* Displays a check mark for the selected option */
/*
.sod_select .sod_option.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);
}
*/

.sod_select .sod_option.link {
	/* If data-link is set on a specific option */
}

.sod_select .sod_option.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;
}