.custom-select {
	font-size: 18px;
	margin-bottom: 15px;
}
.custom-select__options-container-outer {
	position: relative;
}
.custom-select__options-container-inner {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	z-index: 1;
	min-width: 130%;
	padding: 20px 10px 20px 10px;
}
.custom-select__scroll {
	position: relative;
	height: 140px;
	width: 100%;
}
.custom-select__scroll-inner {
	overflow: hidden;
	padding-right: 20px;
}
.custom-select__options {
	display: block;
	list-style-type: none;
}
.custom-select__option {
	display: block;
}
.custom-select__selected-value-container {
	cursor: pointer;
	padding: 20px;
	background: rgb(255,255,255);
	background: rgba(255,255,255,0.2);
}
.custom-select__selected-value {
	width: calc(100% - 20px);
	overflow: hidden;
	white-space: nowrap;
}
.custom-select__caret {
	float: right;
}
.custom-select__caret-icon {
	width: 12px;
	height: 12px;
}
.custom-select__caret--open {
	display: none;
}
.custom-select--open .custom-select__caret--open {
	display: block;
}
.custom-select--open .custom-select__caret--closed {
	display: none;
}
.custom-select__use {
	display: block;
	width: 100%;
	text-align: center;
	padding: 20px;
	margin: 20px 0 0 0;
}
.custom-select__label {
	display: block;
	padding: 10px 0;
	white-space: nowrap;
}
.custom-select__options:first-child > .custom-select__option:first-child > .custom-select__label {
	padding-top: 0;
}
.custom-select__input {
	/* display: none;  */
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
.custom-select__faux-input {
	display: block;
	float: right;
	margin-left: 20px;
	margin-right: 0;
}
.custom-select__faux-input-icon {
	width: 18px;
	height: 18px;
	margin: 1px 0 0 4px;
	visibility: hidden;
}
.custom-select__input[type="checkbox"] + .custom-select__faux-input {
	float: left;
	margin-right: 20px;
	margin-left: 0;
	width: 23px;
	height: 23px;
	position: relative;
}
.custom-select__input[type="checkbox"] + .custom-select__faux-input:after {
	content: "";
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 2px solid;
	opacity: 0.6;
}
.custom-select__label--checked .custom-select__faux-input-icon {
	visibility: visible;
}
.ps-active-y > .custom-select__options {
	margin-right: 20px;
}
.custom-select__list {
	list-style-type: none;
	padding-left: 20px;
}
.custom-select--tree .custom-select__options {
	font-weight: bold;
}
.custom-select--tree .custom-select__options .custom-select__options {
	font-weight: normal;
	padding-left: 20px;
}


/* RTL */
[dir="rtl"] .custom-select__caret {
	float: left;
}
[dir="rtl"] .custom-select__options-container-inner {
	left: auto;
	right: 0;
}
[dir="rtl"] .custom-select__faux-input {
	float: left;
	margin-left: 0;
	margin-right: 20px;
}
[dir="rtl"] .custom-select__scroll-inner {
	padding-right: 0;
	padding-left: 20px;
}
[dir="rtl"] .custom-select__scroll {
	overflow: auto;
}