.select2-selection--single {
	background-color: $preset-bg;
	border-bottom: $input-border;
	border-radius: 0;
	height: 3em;
	box-sizing: content-box; /* To match height with text elements */

	.select2-selection__rendered {
		color: $primary-text-color;
		line-height: 3em;
	}

	.select2-selection__clear {
		cursor: pointer;
		float: right;
		font-weight: bold;
	}

	.select2-selection__placeholder {
		color: $secondary-text-color;
	}

	.select2-selection__arrow {
		height: 2em;
		position: absolute;
		top: 0.5em;
		right: 1px;
		width: 20px;

		b {
			border-color: $primary-text-color transparent transparent transparent;
			border-style: solid;
			border-width: 5px 4px 0 4px;

			height: 0;
			left: 50%;

			margin-left: -4px;
			margin-top: -2px;

			position: absolute;

			top: 50%;
			width: 0;
		}
	}
}

&[dir="rtl"] {
	.select2-selection--single {
		.select2-selection__clear {
			float: left;
		}

		.select2-selection__arrow {
			left: 1px;
			right: auto;
		}
	}
}

&.select2-container--disabled {
	.select2-selection--single {
		background-color: #eee;
		cursor: default;

		.select2-selection__clear {
			display: none;
		}
	}
}

&.select2-container--open {
	.select2-selection--single {
		.select2-selection__arrow {
			b {
				border-color: transparent transparent $primary-text-color transparent;
				border-width: 0 4px 5px 4px;
			}
		}
	}
}
