/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/keystonejs/react-select
*/
.Select {
	position: relative;
}

	.Select,
	.Select div,
	.Select input,
	.Select span {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

		.Select.is-disabled > .Select-control {
			background-color: #f9f9f9;
		}

			.Select.is-disabled > .Select-control:hover {
				box-shadow: none;
			}

		.Select.is-disabled .Select-arrow-zone {
			cursor: default;
			pointer-events: none;
		}

.Select-control {
	background-color: #fff;
	border-color: #d9d9d9 #ccc #b3b3b3;
	border-radius: 5px;
	border: 1px solid #dddddd;
	color: #333;
	cursor: default;
	display: table;
	height: 36px;
	outline: none;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.is-searchable.is-open > .Select-control {
	cursor: text;
}

.is-open > .Select-control {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background: #fff;
	border-color: #b3b3b3 #ccc #d9d9d9;
}

	.is-open > .Select-control > .Select-arrow {
		border-color: transparent transparent #999;
		border-width: 0 5px 5px;
	}

.is-searchable.is-focused:not(.is-open) > .Select-control {
	cursor: text;
}


.Select-placeholder,
:not(.Select--multi) > .Select-control .Select-value {
	bottom: 0;
    color: #222222;
	left: 0;
	line-height: 34px;
	padding-left: 10px;
	padding-right: 10px;
	position: absolute;
	right: 0;
	top: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    height: 34px;
    line-height: 32px;
    margin: 0;
    overflow: hidden;
    padding: 0 50px 0 13px;
    text-align: left;
    text-overflow: clip;
}

.has-value:not(.Select--multi) > .Select-control > .Select-value .Select-value-label,
.has-value.is-pseudo-focused:not(.Select--multi) > .Select-control > .Select-value .Select-value-label {
	color: #333;
}

.has-value:not(.Select--multi) > .Select-control > .Select-value a.Select-value-label,
.has-value.is-pseudo-focused:not(.Select--multi) > .Select-control > .Select-value a.Select-value-label {
	cursor: pointer;
	text-decoration: none;
}

	.has-value:not(.Select--multi) > .Select-control > .Select-value a.Select-value-label:hover,
	.has-value.is-pseudo-focused:not(.Select--multi) > .Select-control > .Select-value a.Select-value-label:hover,
	.has-value:not(.Select--multi) > .Select-control > .Select-value a.Select-value-label:focus,
	.has-value.is-pseudo-focused:not(.Select--multi) > .Select-control > .Select-value a.Select-value-label:focus {
		color: #007eff;
		outline: none;
		text-decoration: underline;
	}

.Select-input {
	height: 34px;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: middle;
}

	.Select-input > input {
		background: none transparent;
		border: 0 none;
		box-shadow: none;
		cursor: default;
		display: inline-block;
		font-family: inherit;
		font-size: inherit;
		height: 34px;
		margin: 0;
		outline: none;
		padding: 0;
		-webkit-appearance: none;
	}

.is-focused .Select-input > input {
	cursor: text;
}

.has-value.is-pseudo-focused .Select-input {
	opacity: 0;
}

.Select-control:not(.is-searchable) > .Select-input {
	outline: none;
}

.Select-loading-zone {
	cursor: pointer;
	display: table-cell;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 16px;
}

.Select-loading {
	-webkit-animation: Select-animation-spin 400ms infinite linear;
	-o-animation: Select-animation-spin 400ms infinite linear;
	animation: Select-animation-spin 400ms infinite linear;
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 2px solid #ccc;
	border-right-color: #333;
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.Select-clear-zone {
	-webkit-animation: Select-animation-fadeIn 200ms;
	-o-animation: Select-animation-fadeIn 200ms;
	animation: Select-animation-fadeIn 200ms;
	color: #999;
	cursor: pointer;
	display: table-cell;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 17px;
}

	.Select-clear-zone:hover {
		color: #D0021B;
	}

.Select-clear {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
}

.Select--multi .Select-clear-zone {
	width: 17px;
}

.Select-arrow-zone {
	cursor: pointer;
	display: table-cell;
	text-align: center;
	position: absolute;
    top: 0;
    right: 0;
    width: 37px;
    height: 100%;
    background: #f7f7f7;
    border-left: 1px solid #dddddd;
    content: '';
    display: block;
    margin: auto 0;
	padding-top: 5px;
}

.Select-arrow {
	width: 10px;
	height: 6px;
	display: inline-block;
    background: url(images/arrow-down.png) no-repeat center center;
}

.is-open .Select-arrow,
.Select-arrow-zone:hover > .Select-arrow {
	border-top-color: #666;
}

@-webkit-keyframes Select-animation-fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes Select-animation-fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.Select-menu-outer {
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-top-color: #e6e6e6;
	box-sizing: border-box;
	margin-top: -1px;
	max-height: 200px;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 1;
	-webkit-overflow-scrolling: touch;
}

.Select-menu {
	max-height: 198px;
	overflow-y: auto;
}

.Select-option {
	width: 100%;
    background: #ffffff;
    border: 0;
    color: #8b8b8b;
    cursor: pointer;
    display: block;
    font-size: 11px;
    margin: 0;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    padding: 0 13px;
    text-align: left;
    text-decoration: none;
    text-overflow: ellipsis;
}

	.Select-option:last-child {
		border-bottom-right-radius: 4px;
		border-bottom-left-radius: 4px;
	}

	.Select-option.is-focused {
		background: #f4f4f4;
		color: #3b3b3b;
	}

	.Select-option.is-disabled {
		color: #cccccc;
		cursor: default;
	}

.Select-noresults {
	box-sizing: border-box;
	color: #999999;
	cursor: default;
	display: block;
	padding: 8px 10px;
}

.Select--multi .Select-input {
	vertical-align: middle;
	margin-left: 10px;
	padding: 0;
}

.Select--multi.has-value .Select-input {
	margin-left: 5px;
}

.Select--multi .Select-value {
	background-color: rgba(0, 126, 255, 0.08);
	border-radius: 2px;
	border: 1px solid rgba(0, 126, 255, 0.24);
	color: #007eff;
	display: inline-block;
	font-size: 0.9em;
	line-height: 1.4;
	margin-left: 5px;
	margin-top: 5px;
	vertical-align: top;
}

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
	display: inline-block;
	vertical-align: middle;
}

.Select--multi .Select-value-label {
	border-bottom-right-radius: 2px;
	border-top-right-radius: 2px;
	cursor: default;
	padding: 2px 5px;
}

.Select--multi a.Select-value-label {
	color: #007eff;
	cursor: pointer;
	text-decoration: none;
}

	.Select--multi a.Select-value-label:hover {
		text-decoration: underline;
	}

.Select--multi .Select-value-icon {
	cursor: pointer;
	border-bottom-left-radius: 2px;
	border-top-left-radius: 2px;
	border-right: 1px solid rgba(0, 126, 255, 0.24);
	padding: 1px 5px 3px;
}

	.Select--multi .Select-value-icon:hover,
	.Select--multi .Select-value-icon:focus {
		background-color: rgba(0, 113, 230, 0.08);
		color: #0071e6;
	}

	.Select--multi .Select-value-icon:active {
		background-color: rgba(0, 126, 255, 0.24);
	}

.Select--multi.is-disabled .Select-value {
	background-color: #fcfcfc;
	border: 1px solid #e3e3e3;
	color: #333;
}

.Select--multi.is-disabled .Select-value-icon {
	cursor: not-allowed;
	border-right: 1px solid #e3e3e3;
}

	.Select--multi.is-disabled .Select-value-icon:hover,
	.Select--multi.is-disabled .Select-value-icon:focus,
	.Select--multi.is-disabled .Select-value-icon:active {
		background-color: #fcfcfc;
	}

@keyframes Select-animation-spin {
	to {
		transform: rotate(1turn);
	}
}

@-webkit-keyframes Select-animation-spin {
	to {
		-webkit-transform: rotate(1turn);
	}
}

.select-new {
	height: 28px;
}

.select-new-sort { width: 75px; }
.select-new-holiday { width: 75px; }

.select-new .Select-placeholder,
.select-new :not(.Select--multi) > .Select-control .Select-value {
	padding: 0 10px 0 0;
	height: 28px;
	background-color: inherit;
	font-size: inherit;
	line-height: 28px;
	text-overflow: ellipsis;
	color: #444;
}

.select-new .Select-control {
	color: #444;
	border: none;
	background-color: inherit;
	height: inherit;
}

.select-new .Select-arrow-zone {
	display: none;
}

.select-new .Select-menu-outer {
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	min-width: 150px;
	padding: 20px 0 10px;
	background: #fff;
	color: #8b949b;
	overflow: hidden;
}

.select-new .Select-menu {
	max-height: 168px;
	overflow-y: auto;
	width: 189px;
	padding-right: 17px;
}

.select-new .Select-option {
	padding: 5px 19px;
	margin-bottom: 8px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	font-size: 14px;
	vertical-align: middle;
	line-height: 1.75;
}

.select-new .Select-option.is-focused {
	background: #9ec408;
	color: #fff;
}

.select-new-holiday .Select-menu-outer {
	max-height: 200px;
	width: 165px;
}

.select-new-holiday .Select-menu {
	width: 200px;
}

.select-new-holiday .Select-menu {
	max-height: 200px;
	padding-bottom: 30px;
}