.qt-shared-button {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	background: #4f5c3e;
	overflow: hidden;
	cursor: pointer;
	border: none;
	text-decoration: none !important;
	box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.2);
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.qt-shared-button::before {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	width: 0%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.qt-shared-button:hover,
.qt-shared-button:focus,
.qt-shared-button:focus-visible {
	transform: translateY(-1px);
	outline: none;
}

.qt-shared-button:hover::before,
.qt-shared-button:focus::before {
	right: auto;
	left: 0;
	width: 100%;
}

.qt-shared-button span {
	position: relative;
	z-index: 20;
	display: block;
	width: 100%;
	padding: 12px 24px;
	color: #fff;
	font-family: "NeueMontreal-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.5px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.qt-shared-button:hover span,
.qt-shared-button:focus span {
	color: #4f5c3e;
	animation: qtHeroVideoScaleUp 0.3s ease-in-out;
}

@keyframes qtHeroVideoScaleUp {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.95);
	}

	100% {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.qt-shared-button,
	.qt-shared-button::before,
	.qt-shared-button span {
		transition: none;
	}
}

@media (max-width: 768px) {
	.qt-shared-button span {
		padding: 10px 22px;
		font-size: 15px;
	}
}
