.button {
	position: relative;
	cursor: pointer;
	margin-top: 1.5625rem;
	background: linear-gradient(to bottom right, #2B1A16 0%, #5C3327 48%, #2B1A16 100%);
	border-radius: 30px;
	font-size: 1.125rem;
	color: #FFFFFF;
	display: -ms-flexbox;
	display: flex;
	column-gap: 0.5rem;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0.5rem 1.875rem 0.6875rem 1.875rem;
	border: none;
}

.button.button-bg {
	background: linear-gradient(to bottom right, #2B1A16 0%, #5C3327 48%) !important;
	color: #FFFFFF !important;
}

.button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

