body.t-body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

.back-button {
	position: fixed;
	bottom: 40px;
	right: 0;
	display: block;
	padding: 14px 24px;
	font-family: TildaSans, Arial, sans-serif;
	color: #ffffff !important;
	background: linear-gradient(90deg, #d3b589 50%, #e9cda2 75%, #ad8f62 100%);
	box-shadow: 5px 5px 8px rgb(30 30 30 / 50%);
	transition: all .5s ease;
	transform: translateX(100%);
	animation: 2.5s show-button forwards ease;
}

@keyframes show-button {
    80% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}