/* GIF Mania Share */

.gms-share-box {
	margin: 32px 0 20px;
	text-align: center;
	width: 100%;
}

.gms-share-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px 12px;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	padding: 23px 24px;
	border: 0;
	border-radius: 18px;
	background: linear-gradient(135deg, #ff5f00 0%, #ff8a00 45%, #ffc400 100%);
	color: #ffffff;
	font-family: inherit;
	font-size: 25px;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .4px;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(255, 115, 0, .35);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	-webkit-tap-highlight-color: transparent;
}

.gms-share-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(255, 115, 0, .45);
	filter: brightness(1.04);
}

.gms-share-button:active {
	transform: translateY(1px) scale(.99);
}

.gms-share-button:focus-visible {
	outline: 3px solid #222;
	outline-offset: 3px;
}

.gms-share-button:disabled {
	cursor: wait;
	opacity: .82;
}

.gms-share-icon {
	font-size: 34px;
	line-height: 1;
}

.gms-share-text {
	flex: 0 1 auto;
}

.gms-share-subtitle {
	display: block;
	flex-basis: 100%;
	margin-top: 5px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: none;
	opacity: .92;
}

.gms-share-button.is-loading .gms-share-icon {
	animation: gms-pulse 1s infinite ease-in-out;
}

.gms-share-status {
	min-height: 24px;
	margin-top: 9px;
	font-size: 14px;
	font-weight: 600;
	color: #444;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .2s ease, transform .2s ease;
}

.gms-share-status.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes gms-pulse {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.18);
	}
}

@media (max-width: 600px) {
	.gms-share-box {
		margin-top: 26px;
	}

	.gms-share-button {
		padding: 21px 15px;
		border-radius: 16px;
		font-size: 21px;
	}

	.gms-share-icon {
		font-size: 30px;
	}

	.gms-share-subtitle {
		font-size: 12px;
	}
}
