@keyframes wc-skeleton-shimmer {
	to {
		transform: translateX(100%);
	}
}

.wp-block-button.wc-block-components-product-button {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
	white-space: normal;
}

.wp-block-button.wc-block-components-product-button.has-custom-width .wp-block-button__link {
	box-sizing: border-box;
}

.wp-block-button.wc-block-components-product-button.wp-block-button__width-25 .wp-block-button__link {
	width: 25%;
}

.wp-block-button.wc-block-components-product-button.wp-block-button__width-50 .wp-block-button__link {
	width: 50%;
}

.wp-block-button.wc-block-components-product-button.wp-block-button__width-75 .wp-block-button__link {
	width: 75%;
}

.wp-block-button.wc-block-components-product-button.wp-block-button__width-100 .wp-block-button__link {
	width: 100%;
}

.wp-block-button.wc-block-components-product-button .wp-block-button__link {
	display: inline-flex;
	justify-content: center;
	text-align: center;
	white-space: normal;
	width: auto;
}

.wp-block-button.wc-block-components-product-button a[hidden] {
	display: none;
}

@keyframes slideOut {
	0% {
		transform: translateY(0);
	}
	
	to {
		transform: translateY(-100%);
	}
}

@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateY(90%);
	}
	
	to {
		opacity: 1;
		transform: translate(0);
	}
}

.wp-block-button.wc-block-components-product-button.align-left {
	align-items: flex-start;
}

.wp-block-button.wc-block-components-product-button .wc-block-components-product-button__button {
	align-items: center;
	border-style: none;
	display: inline-flex;
	justify-content: center;
	line-height: inherit;
	overflow: hidden;
	white-space: normal;
	word-break: normal;
}

@keyframes loading__animation {
	to {
		transform: translateX(100%);
	}
}