@charset "UTF-8";

/*
	STYLE SHEET FOR JQUERY LISTNAV PLUGIN V 3.0.0, 11/22/2017
	For more information, visit http://esteinborn.github.com/jquery-listnav
*/

@import "../common/md_colors";
@import "../common/variables_mixins";

.listNav,
.ln-letters {
	overflow: hidden;
}

.listNavHide {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

.letterCountShow {
	display: block;
}

.ln-letters {
	flex-wrap: wrap;
	margin-bottom: 24px;
	align-items: center;
	display: flex;
	border-left: 1px solid $border-color-hex;
	padding: 1px 0 0 1px;
	margin-left: -1px;
	a {
		border: 1px solid $border-color-hex;
		display: block;
		@include font-size(14px);
		padding: 8px 16px;
		text-decoration: none;
		background: $white;
		color: $text-color-primary;
		flex-shrink: 0;
		min-width: 20px;
		text-align: center;
		margin-top: -1px;
		&:first-child {
			margin-left: -1px;
		}
		+ a {
			margin: -1px 0 0 -1px;
		}
	}
	a:hover,
	.ln-selected {
		background-color: $theme-color;
		border-color: $theme-color;
		color: $white;
		position: relative;
		z-index: 10;
	}
	.ln-disabled {
		background: rgba(0,0,0,.02) !important;
		color: $muted-color !important;
		border-color: $border-color-hex !important;
	}
}

.ln-no-match {
	list-style: none;
	margin: 0;
	@include font-size(18px);
}

.ln-letter-count {
	color: $text-color-secondary;
	@include font-size(12px);
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 20px;
	margin-left: -1px;
	margin-top: -2px;
}
