/* Deterministic line icons: no emoji or platform-dependent glyphs. */
.bky-line-arrow {
	display: block;
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bk-floating-action--top img {
	display: none !important;
}

.bk-floating-action--top::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: translateY(3px) rotate(45deg);
}

@media (max-width: 650px) {
	.bky-line-arrow {
		width: 25px;
		height: 25px;
	}

	.bk-floating-action--top::before {
		width: 9px;
		height: 9px;
	}
}

