.tip {
	position: sticky;
	bottom: 19px;
	right: 32px;
	width: 50%;
	height: 40px;
	background: #fff;
	box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	z-index: 1;
	margin-top: 10px;
	padding: 5px;
	border: 1px black solid;
}

.tip label {
	margin: 0px;
}

.tip::after {
	content: "";
	position: absolute;
	top: -8px;
	left: 14%;
	display: block;
	width: 15px;
	height: 15px;
	transform: scaleX(0.8) rotate(225deg);
	border-bottom: 1px #000000 solid;
	z-index: 2;
	background: #ffffff;
	border-right: 1px #000000 solid;
	border-radius: 0px 0px 4px 0px;
}