body {
	padding: 20px;
}

tg-fixed-buttons {
	display: block;
}

tg-fixed-buttons.fixed-bottom {
	background-color: #fff;
	bottom: 0;
	left: 0;
	padding: 15px 30px;
	position: fixed;
	width: 100%;
	box-shadow: 0px 2px 10px rgba(0, 0 , 0, 1);
	transform: translateY(100%);
	animation: animateFixedButton .2s ease-in-out forwards;
}

@keyframes animateFixedButton {
	to {
		transform: translateY(0%);
	}
}