/**
 * @component
 * @name Dropdown
 */
/**
 * @class
 * @name .fs-dropdown-element
 * @type element
 * @description Target element
 */
/**
 * @class
 * @name .fs-dropdown
 * @type element
 * @description Base widget class
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-multiple
 * @type modifer
 * @description Indicates multi-selected element
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-cover
 * @type modifer
 * @description Indicates cover positioning
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-bottom
 * @type modifer
 * @description Indicates bottom positioning
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-disabled
 * @type modifer
 * @description Indicates disabled state
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-open
 * @type modifer
 * @description Indicates open state
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-focus
 * @type modifer
 * @description Indicates focus state
 */
/**
 * @class
 * @name .fs-dropdown.fs-dropdown-mobile
 * @type modifer
 * @description Indicates mobile option
 */
.fs-dropdown {
	position: relative;
	z-index: 1;
	display: block;
	max-width: 100%;
	/**
	   * @class
	   * @name .fs-dropdown-selected
	   * @type element
	   * @description Handle item
	   */
	/**
	   * @class
	   * @name .fs-dropdown-options
	   * @type element
	   * @description Options container
	   */
	/**
	   * @class
	   * @name .fs-dropdown-group
	   * @type element
	   * @description Option group label
	   */
	/**
	   * @class
	   * @name .fs-dropdown-item
	   * @type element
	   * @description Option item
	   */
}

.fs-dropdown,
.fs-dropdown:after,
.fs-dropdown:before,
.fs-dropdown *,
.fs-dropdown *:after,
.fs-dropdown *:before {
	box-sizing: border-box;
	transition: none;
	user-select: none !important;
}

.fs-dropdown-element {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	z-index: -1;
	opacity: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}

.fs-dropdown-mobile .fs-dropdown-element {
	z-index: 7;
}

.fs-dropdown-mobile.fs-dropdown-multiple .fs-dropdown-element {
	z-index: -1;
}

.fs-dropdown-selected {
	border: none;
	padding: 5px;
	width: 100%;
	position: relative;
	z-index: 2;
	background: #ffffff;
	border: 1px solid #bcbcbc;
	color: #000000;
	cursor: pointer;
	display: block;
	overflow: hidden;
	text-align: left;
	text-overflow: clip;
}
.fs-dropdown-selected:after {
	height: 0;
	width: 0;
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #546E7A;
	content: '';
	display: block;
	margin: auto 0;
}

.fs-dropdown-options {
	width: 100%;
	max-height: 260px;
	position: absolute;
	top: 100%;
	padding: 5px;
	left: 0;
	z-index: 5;
	background: #ffffff;
	border: 1px solid;
	display: none;
	overflow: auto;
	overflow-x: hidden;
}

.fs-dropdown-options.fs-scrollbar {
	position: absolute;
}

.fs-dropdown-group {
	display: block;
	font-size: 75%;
}

.fs-dropdown-item {
	border: none;
	padding: 0;
	width: 100%;
	background: #ffffff;
	border-radius: 0;
	color: #000000;
	cursor: pointer;
	display: block;
	overflow: hidden;
	text-align: left;
	text-decoration: none;
	text-overflow: ellipsis;
	/**
		   * @class
		   * @name .fs-dropdown-item.fs-dropdown-item_placeholder
		   * @type modifier
		   * @description Indicates placeholder item
		   */
	/**
		   * @class
		   * @name .fs-dropdown-item.fs-dropdown-item_selected
		   * @type modifier
		   * @description Indicates selected item
		   */
	/**
		   * @class
		   * @name .fs-dropdown-item.fs-dropdown-item_disabled
		   * @type modifier
		   * @description Indicates disabled item
		   */
}

.fs-dropdown-item_placeholder {
	display: none;
}

.fs-dropdown-item_selected {
	background: #dddddd;
}

.fs-dropdown-item_disabled {
	cursor: default;
	opacity: 0.5;
}

.fs-dropdown-open {
	z-index: 3;
}

.fs-dropdown-open .fs-dropdown-options {
	display: block;
}

.fs-dropdown-open .fs-dropdown-selected {
	z-index: 6;
}

.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected {
	z-index: 4;
}

.fs-dropdown-cover .fs-dropdown-options {
	top: 0;
}

.fs-dropdown-bottom .fs-dropdown-options {
	top: auto;
	bottom: 100%;
}

.fs-dropdown-bottom.fs-dropdown-cover .fs-dropdown-options {
	top: auto;
	bottom: 0;
}

.fs-dropdown-multiple .fs-dropdown-options {
	width: 100%;
	position: static;
	display: block;
}

.fs-dropdown-disabled {
	opacity: 0.5;
}

.fs-dropdown-disabled .fs-dropdown-selected {
	cursor: default;
}

.fs-dropdown-disabled .fs-dropdown-group,
.fs-dropdown-disabled .fs-dropdown-item {
	cursor: default;
}

.fs-dropdown-options.fs-scrollbar {
	overflow: hidden;
}

.fs-dropdown-options.fs-scrollbar .fs-scrollbar-bar {
	border: 1px solid;
	border-width: 0 0 0 1px;
}

.fs-dropdown-options.fs-scrollbar .fs-scrollbar-content {
	max-height: 260px;
	height: auto;
}

.fs-dropdown-options.fs-scrollbar.fs-scrollbar-active .fs-scrollbar-content {
	padding: 0;
}
