.toolbar {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 100%;
	transition: opacity @transition-fast ease-in-out;

	.button {
		color: @white;
		background: @dark;
		border: none;
		border-radius: 0;

		svg path {
			fill: @white;
		}

		&:not(:disabled):hover,
		&:not(:disabled):focus {
			color: @white;
			background: @primary;
			border: none;

			svg path {
				fill: @white;
			}
		}
	}
}