.floater{
	@extend .text-primary-contrast;
	@extend .shadow;
	background-color:map-get($theme-colors, primary);
	position:fixed;
	right:15px;
	z-index:6;
	width:35px;
	height:35px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content: center;
	font-size:1.2rem;

	&:hover{
		cursor:pointer;
		background-color:darken(map-get($theme-colors, primary), 15%);
	}
}

#find-link{
	top:120px;
}

#searched-page-names-for-links-results-container{
	display:grid;
	grid-template-columns:repeat(3, calc(33.333% - 10px));
	grid-gap: 10px;
	max-height:450px;
	overflow-y:auto;
}

.search-page-name-for-links-name{
	max-width:92%;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
