.no-underlined-link,
.no-underlined-link:hover,
.no-underlined-link:focus {
	text-decoration: none;
}

.underline-with-bottom-border {
	position: relative;
}

.underline-with-bottom-border:after {
	content: "";
	position: absolute;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 1px;
	top: auto;
	left: 0;
	right: 0;
	bottom: -2px;
	border-bottom: 1px solid rgba(248, 249, 250, 0);
	border-bottom-color: rgba(var(--department-rgb, silver), 0.75);
	transform-origin: center center;
	transform: scaleX(0) !important;
	transition: transform .35s;
}

.underline-with-bottom-border:hover:after {
	transform: scaleX(1);
}

/*
.underline-with-bottom-border:after:hover {
	left: 0;
	right: 0;
	border-color: var(--txt-lighter);
}
*/


/** ------------------ UNDERLINER -------------------- */

.special-border-underline:before,
.special-border-underline:after {
	content:'';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	top: auto;
	transition: all .2s;
}

.special-border-underline:before {
	border-bottom: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.special-border-underline:after {
	border-bottom: 1px solid var(--department);
	opacity: 0 !important;
	transform-origin: center center;
	transform: scaleX(0) !important;
}

.special-border-underline:hover:after {
	transform: scaleX(1) !important;
	opacity: 1 !important;
}

