/* Button Style-17 */
.tpgb-plus-button.button-style-17 .button-link-wrap {
	padding: 0;
	overflow: hidden;
	border: 1px solid #212121;
	color: #212121;
	transition: background 0.3s
}
.tpgb-plus-button.button-style-17 .button-link-wrap:hover {
	border-color: #313131;
}
.tpgb-plus-button.button-style-17 .button-link-wrap span:not(.btn-icon) {
	padding: 15px 30px;
}

.tpgb-plus-button.button-style-17 .button-link-wrap .btn-icon {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	left: 0;
	color: #fff;
}

.tpgb-plus-button.button-style-17.hover-top .button-link-wrap .btn-icon {
	transform: translate3d(0,-100%,0)
}

.tpgb-plus-button.button-style-17.hover-bottom .button-link-wrap .btn-icon {
	transform: translate3d(0,100%,0)
}

.tpgb-plus-button.button-style-17 .button-link-wrap:hover .btn-icon {
	transform: translate3d(0,0,0);
}

.tpgb-plus-button.button-style-17 .button-link-wrap span {
	transition: transform 0.3s cubic-bezier(.75,0,.125,1);
}

.tpgb-plus-button.button-style-17 .button-link-wrap:hover>span:not(.btn-icon) {
	opacity: 0;
	transform: translate3d(0,100%,0)
}

.tpgb-plus-button.button-style-17.hover-bottom .button-link-wrap:hover>span:not(.btn-icon) {
	transform: translate3d(0,-100%,0)
}

.tpgb-plus-button.button-style-17 .button-link-wrap::before {
	content: '';
	position: absolute;
	left: -50%;
	width: 200%;
	height: 200%;
	background: #f18248;
	top: -50%
}

.tpgb-plus-button.button-style-17.hover-top .button-link-wrap::before {
	transform: translate3d(0,-100%,0) rotate3d(0,0,1,-10deg)
}

.tpgb-plus-button.button-style-17.hover-top .button-link-wrap:hover::before {
	animation: button-style-17-top 0.3s forwards ease-in
}

.tpgb-plus-button.button-style-17.hover-bottom .button-link-wrap::before {
	transform: translate3d(0,100%,0) rotate3d(0,0,1,10deg)
}

.tpgb-plus-button.button-style-17.hover-bottom .button-link-wrap:hover::before {
	animation: button-style-17-bottom 0.3s forwards ease-in
}
@keyframes button-style-17-top {
	50% {
		transform: translate3d(0,-50%,0) rotate3d(0,0,1,-10deg);
		animation-timing-function: ease-out
	}
	100% {
		transform: translate3d(0,0%,0) rotate3d(0,0,1,0deg)
	}
}
@keyframes button-style-17-bottom {
	50% {
		transform: translate3d(0,50%,0) rotate3d(0,0,1,10deg);
		animation-timing-function: ease-out
	}
	100% {
		transform: translate3d(0,0%,0) rotate3d(0,0,1,0deg)
	}
}