.Btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 110px;
	height: 30px;
	border: none;
	padding: 0px 20px;
	background-color: #946ce6;
	color: white;
	font-weight: 500;
	cursor: pointer;
	border-radius: 10px;
	box-shadow: 5px 5px 0px #784ecf;
	transition-duration: .3s;
}

.svg {
	width: 13px;
	position: absolute;
	right: 0;
	margin-right: 20px;
	fill: white;
	transition-duration: .3s;
}

.Btn:hover {
	color: transparent;
}

.Btn:hover svg {
	right: 43%;
	margin: 0;
	padding: 0;
	border: none;
	transition-duration: .3s;
}

.Btn:active {
	transform: translate(3px, 3px);
	transition-duration: .3s;
	box-shadow: 2px 2px 0px #784ecf;
}

.like-button {
	position: relative;
	cursor: pointer;
	display: flex;
	height: 36px;
	width: 136px;
	border-radius: 1rem;
	border: none;
	background-color: #ffffff;
	overflow: hidden;
	box-shadow:
		inset -2px -2px 3px rgba(255, 255, 255, 0.1), 
		inset -2px -2px 2px rgba(0, 0, 0, 0.1), 
		2px 2px 3px rgba(163, 153, 153, 0.1), 
		-2px -2px 3px rgba(255, 255, 255, 0.1)
}

.like {
	width: 70%;
	height: 100%;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: space-evenly;
}

.like-icon {
	fill: #dbd5d5;
	height: 28px;
	width: 28px;
}

.like-text {
	margin-right: 5px;
	font-weight: bold;
	color: #272727;
	font-size: 12px;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.like-count-one {
	margin: 0 5px;
	position: absolute;
	right: 0;
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #717070;
	font-size: 16px;
	border-left: 2px solid #e5e5e5;
	transition: all 0.5s ease-out;
}

.like-count-two {
	margin: 0 5px;
	position: absolute;
	right: 0;
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #717070;
	font-size: 16px;
	border-left: 2px solid #e5e5e5;
	transition: all 0.5s ease-out;
	transform: translateY(40px);
}

.likeicon-Active {
	fill: #fc4e4e;
	animation: enlarge 0.2s ease-out 1;
	transition: all 0.2s ease-out;
}

.like-count-two-Active {
	transform: translateX(0);
	color: #120101;
}

.like-count-one-Active {
	transform: translateY(-40px);
}

@keyframes enlarge {
	0% {
		transform: scale(0.5);
	}

	100% {
		transform: scale(1.2);
	}
}



.litbtn {
	height: 30px;
	--primary-color: #946ce6;
	--secondary-color: #fff;
	--hover-color: #111;
	--arrow-width: 10px;
	--arrow-stroke: 2px;
	box-sizing: border-box;
	border: 0;
	border-radius: 1rem;
	color: var(--secondary-color);
	padding: 1em 1.8em;
	background: var(--primary-color);
	display: flex;
	transition: 0.2s background;
	align-items: center;
	gap: 0.6em;
	font-weight: bold;
}

.litbtn .arrow-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.litbtn .arrow {
	margin-top: 1px;
	width: var(--arrow-width);
	background: var(--primary-color);
	height: var(--arrow-stroke);
	position: relative;
	transition: 0.2s;
}

.litbtn .arrow::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	border: solid var(--secondary-color);
	border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
	display: inline-block;
	top: -3px;
	right: 3px;
	transition: 0.2s;
	padding: 3px;
	transform: rotate(-45deg);
}

.litbtn:hover {
	background-color: var(--hover-color);
}

.litbtn:hover .arrow {
	background: var(--secondary-color);
}

.litbtn:hover .arrow:before {
	right: 0;
}