/*<meta />*/

.sidenav-wrapper
{
	min-width: 300px;
	max-width: 600px;
}

.resizer
{
	width: 16px;
	z-index: 11;
}

.resize-handler
{
	height: calc(100% - 40px);
	position: relative;
	cursor: col-resize;
	margin: 2px;
}

.resize-handler-tool
{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}

.collapse-button
{
	position: relative;
	height: 40px;
	cursor: pointer;
	transition: background-color .1s ease-out;
	border-radius: 3px;
	background-color: transparent;
	border-color: transparent;
}

.collapse-button:hover
{
	background-color: hsla(216,71%,14%,0.15);
}

.grab-icon
{
	background: url('../../gfx/resizer-grip-lines-vertical-solid.svg');
	/* Adapted from Font Awesome (https://fontawesome.com/license) */
	background-position: right center;
	background-repeat: no-repeat;
}

.collapse-icon
{
	background: url('../../gfx/resizer-chevron-left-solid.svg');
	/* Adapted from Font Awesome (https://fontawesome.com/license) */
	background-repeat: no-repeat;
	background-position: center;
	margin: 2px;
	height: 100%;
}

.expand-icon
{
	background: url('../../gfx/resizer-chevron-right-solid.svg');
	/* Adapted from Font Awesome (https://fontawesome.com/license) */
	background-repeat: no-repeat;
	background-position: center;
	margin: 2px;
	height: 100%;
}

.tooltipcontainer .tooltiptext
{
	visibility: hidden;
	width: 120px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	height: 26px;
	line-height: 26px;
	/* adjust if height changes */
	top: calc((100% - 26px) / 2);
	/* adjust if height changes */
	left: calc(100% + 5px);
	/* adjust if border-width of .tooltiptext::after changes */
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 10px;
}

.tooltipcontainer .tooltiptext::after
{
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	border-width: 5px;
	border-style: solid;
	border-color: transparent #555 transparent transparent;
	margin-top: -5px;
	/* adjust if border-width changes */
}

.tooltipcontainer:hover .tooltiptext
{
	visibility: visible;
	opacity: 1;
}

div.sidenav-container li a
{
	text-overflow: ellipsis;
	overflow: hidden;
}

@media only screen and (max-width: 1279px)
{
	.resizer
	{
		display: none;
	}
}

