/*КОСТЫЛИЩЕ КОСТЫЛЬНОЕ, ТАК НЕЛЬЗЯ, НО КНОПКА ДОЛЖНА ВЫГЛЯДЕТЬ ТАК*/
tfoot tr td .btn.px-3.my-3.text-center {
	overflow: hidden;
	transition: 1s;
	background-color: #FFC329;
	padding: 10px 60px;
}
tfoot tr td .btn.px-3.my-3.text-center + label {
	position: relative;
    display: inline-block;
    vertical-align: middle;
}
tfoot tr td .btn.px-3.my-3.text-center + label:after {
	content: "";
	background-color: rgba(255, 255, 255, 0.5);
	height: 100px;
	position: absolute;
	transform: translate3d(-360px, -43px, 0) rotate3d(0, 0, 1, -30deg);
	transition: all 2.3s cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
}
tfoot tr td .btn.px-3.my-3.text-center:hover + label:after {
	background-color: rgba(255, 255, 255, 0.7);
	transform: translate3d(100px, -43px, 0) rotate3d(0, 0, 1, 0deg);
}
tfoot tr td .btn.px-3.my-3.text-center:before {
	content: "";
	background: url("arrow.svg") center no-repeat;
	height: 16px;
	width: 16px;
	position: absolute;
	color: #222;
	right: 13px;
	bottom: calc(50% - 7px);
	transition: 0.6s;
	margin-top: -1.5px;
}
tfoot tr td .btn.px-3.my-3.text-center:hover:before {
	right: 6px;
}