/* button.css */
.custom-button-with-background-wrapper {
	width: fit-content;
	display: block;
	height: 45px;
}

.custom-button-with-background-wrapper .custom-button {
	display: flex;
	padding: 0 25px;
	height: 45px;
	align-items: center;
	background-color: #FCB040;
	border-radius: 23px;
	width: fit-content;
	transform: translate(0, -45px);
	transition: all 0.3s ease-out;
}

.custom-button-with-background-wrapper .button-text {
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	letter-spacing: -0.32px;
	color: #333333;
	padding-right: 8px;
}

.custom-button-with-background-wrapper .cover {
	width: 100%;
	height: 45px;
	border-radius: 23px;
	background-color: #F7941D;
}

.custom-button-with-background-wrapper .custom-button:hover {
	text-decoration: none;
	transform: translate(3px, -48px);
}

.custom-button-wrapper {
	width: fit-content;
}

.custom-button-wrapper .custom-button {
	display: flex;
	align-items: center;
}

.custom-button-wrapper .button-text {
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	letter-spacing: -0.32px;
	color: #333333;
	width: 0;
	transition: all 0.3s ease-out;
	white-space: nowrap;
	overflow: hidden;
}

.custom-button-wrapper .custom-button.animation:hover {
	text-decoration: none;
}

.custom-button-wrapper .custom-button.animation:hover .button-text {
	width: 100%;
	padding-right: 3px;
}

.icon-button-wrapper {
	height: 41px;
	width: fit-content;
}

.icon-button-wrapper .icon-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	transition: transform 0.3s ease-out;
	transform: translate(0, -41px);
	cursor: pointer;
}

.icon-button-wrapper .cover {
	width: 41px;
	height: 41px;
	border-radius: 50%;
	background-color: #D1D1D1;
}

.icon-button-wrapper .icon {
	display: flex;
}

.icon-button-wrapper:hover .icon-button {
	transform: translate(2px, -43px);
	background-color: #FCB040 !important;
}

.icon-button-wrapper:hover .cover {
	background-color: #F7941D;
}

@media only screen and (max-width: 768px) {
	.icon-button-wrapper {
		height: 37px;
	}

	.icon-button-wrapper .icon-button {
		width: 37px;
		height: 37px;
		transform: translate(0, -37px);
	}

	.icon-button-wrapper .cover {
		width: 37px;
		height: 37px;
	}

	.icon-button-wrapper:hover .icon-button {
		transform: translate(0, -37px);
	}
}

.underline-button-wrapper .button-text {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: -0.32px;
	color: #333333;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	width: fit-content;
}

.underline-button-wrapper .button-text::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #F7941D;
	display: block;
	position: relative;
	width: 0;
	transition: all 0.3s ease-out;
}

.underline-button-wrapper .underline-button:hover {
	text-decoration: none;
}

.underline-button-wrapper .underline-button:hover .button-text::after {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.custom-button-with-background-wrapper {
		height: 41px;
	}

	.custom-button-with-background-wrapper .cover {
		display: none;
	}

	.custom-button-with-background-wrapper .custom-button {
		padding: 0 18px;
		height: 41px;
		transform: none;
	}

	.custom-button-with-background-wrapper .button-text {
		font-size: 15px;
		letter-spacing: -0.3px;
		padding-right: 7px;
	}

	.custom-button-with-background-wrapper .custom-button:hover {
		transform: none;
	}

	.custom-button-wrapper .button-text {
		width: 100%;
		padding-right: 3px;
	}
}
/* button.css end */