.pricing-table {
	display: flex;
}

.pricing-table .card {
	width: 100% !important;
	max-width: 400px !important;
	height: 370px;
	padding: 30px;
	margin-inline: auto !important;
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 2px 2px 46px -4px rgba(0, 0, 0, 0.6);
	transition: all 0.2s ease-in-out;
}

.pricing-table .card:nth-child(1) {
	margin: 0 30px;
	z-index: 2;
	width: 250px;
	height: 400px;
	background: #ff416c;
	background: linear-gradient(to right, #1762be, #1762be);
}

.pricing-table .card .type {
	margin-top: 30px;
	letter-spacing: 0.1rem;
}

.pricing-table .card .price {
	font-size: 7.5rem;
	position: relative;
	margin: 10px 0px 20px;
	z-index: 2;
}

.pricing-table .card .price span {
	font-size: 1.8rem;
	position: absolute;
	left: -15%;
	top: 65%;
}

.pricing-table .card .price::before {
	position: absolute;
	content: "";
	color: rgba(255, 255, 255, 0.06);
	font-size: 9.5rem;
	z-index: -1;
	right: -30%;
	bottom: 15%;
	text-shadow: 0 0 0px rgba(51, 55, 69, 0);
	transition: all 1s ease-in-out;
}

.pricing-table .card .plan {
	position: relative;
	font-size: 2.7rem;
	font-weight: 900 !important;
	margin-bottom: 10px;
	color: #FFFFFF;
}

.pricing-table .card .plan::before,
.pricing-table .card .plan::after {
	position: absolute;
	content: "";
	width: 35px;
	height: 2px;
	background: #fff;
	bottom: 40%;
	transition: all 0.2s ease-out;
}
.pricing-table .card .plan::before {
	right: 100%;
	transform: translate(-50%, -50%);
}

.pricing-table .card .plan::after {
	left: 115%;
	transform: translate(0%, -50%);
}

.pricing-table .card .details {
	text-transform: capitalize;
}

.pricing-table .card .details li {
	margin: 15px 0px;
	color: #fff !important;
	font-size: 2rem !important;
}

.pricing-table .card .buy-button {
	cursor: pointer;
	position: absolute;
	width: 250px;
	height: 180px;
	background: #fff;
	border-radius: 15%;
	right: -24%;
	bottom: -30%;
	transition: all 0.4s ease-in-out;
}

.pricing-table .card .buy-button h3 {
	text-shadow: 0 0 0;
	text-decoration: none;
	color: #fff;
	position: absolute;
	left: 8%;
	top: 5%;
	color: #333745;
	font-size: 2.2rem;
	transition: all 0.4s ease-in-out;
}

.pricing-table .card:hover {
	transform: scale(1.02);
}

.pricing-table .card:hover .price::before {
	-webkit-animation: text-hover 1s ease-in-out infinite normal;
	animation: text-hover 1s ease-in-out infinite normal;
}

.pricing-table .card:hover .plan::before {
	right: 90%;
}

.pricing-table .card:hover .plan::after {
	left: 105%;
}

.pricing-table .card:hover .buy-button {
	width: 100%;
	right: 0%;
	border-radius: 0%;
}

.pricing-table .card:hover .buy-button h3 {
	left: 50%;
	transform: translate(-50%, 0%);
}

@-webkit-keyframes text-hover {
	0% {
		right: -30%;
	}

	50% {
		right: -37%;
	}

	100% {
		right: -30%;
	}
}

@keyframes text-hover {
	0% {
		right: -30%;
	}

	50% {
		right: -37%;
	}

	100% {
		right: -30%;
	}
}