/* QRABBCT link button — shine hover style (bt_link / bt_line) */
a.bt_link {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	line-height: 1.25;
	font-size: inherit;
	padding: 2px 8px;
	margin: 2px 2px;
	color: #305e85;
	text-transform: uppercase;
	border-radius: 5px;
	text-decoration: none;
	border: 1px solid rgb(146, 148, 248);
	position: relative;
	overflow: hidden;
	background-color: transparent;
	outline: none;
}

/* Перебиваем prosilver .postlink (:visited, :hover — тёмный текст и border-bottom) */
a.bt_link:link,
a.bt_link:visited,
a.bt_link:hover,
a.bt_link:active,
a.bt_link:focus {
	color: #305e85;
	border: 1px solid rgb(146, 148, 248);
	border-bottom: 1px solid rgb(146, 148, 248);
	background-color: transparent;
	text-decoration: none;
}

a.bt_link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(146, 148, 248, 0.4),
		transparent
	);
	transition: all 650ms;
}

a.bt_link:hover::before {
	left: 100%;
}

.bt_line {
	display: inline;
	position: relative;
	z-index: 1;
	line-height: inherit;
	color: inherit;
}

a.bt_link:visited .bt_line,
a.bt_link:hover .bt_line,
a.bt_link:active .bt_line,
a.bt_link:focus .bt_line {
	color: inherit;
}
