.shop_cards {
	padding-top: 10rem;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}

.shop_card {
	height: 30rem;
	width: 27rem;
	gap: .5rem;
	border-radius: var(--br-10);
	padding: 0 1rem 1rem 1rem;
	background: var(--card);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.shop_card_img {
	height: 13rem;
	/* width: 20rem; */
}

.shop_backgrounds {
	z-index: -1;
	position: absolute;
	width: 89vw;
	height: 43rem;
}

.shop_back_1,
.shop_back_2 {
	height: 100%;
	position: absolute;
	top: 0;
}

.shop_back_1 {
	max-width: 40rem;
	left: 0;
}

.shop_back_2 {
	margin-right: -7rem;
	max-width: 40rem;
	right: 0;
}

.shop_back_1_img,
.shop_back_2_img {
	mask-composite: intersect;
	mask-image: linear-gradient(90deg,#0000 0%,#000 10% 90%,#0000 100%),linear-gradient(#0000 0%,#000 10% 90%,#0000 100%);
	width: 100%;
	height: 100%;
}

.shop_back_1_sphere {
	filter: blur(50px);
	background: radial-gradient(circle,#4d70ef33 0%,#4d70ef00 100%);
	border-radius: 50%;
	width: 100%;
	max-width: 730px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0
}

.shop_back_2_sphere {
	filter: blur(50px);
	background: radial-gradient(circle,#dda24221 0%,#dda24200 100%);
	border-radius: 50%;
	width: 100%;
	max-width: 730px;
	height: 100%;
	margin-right: 50px;
	position: absolute;
	top: 0;
	right: 0
}

.shop_card.privilage {
	background: linear-gradient(rgb(42 60 107) 0%, var(--card) 100%);
}

.shop_card.models {
	background: linear-gradient(rgb(77, 55, 33) 0%, var(--card) 100%);
}

.shop_card_text {
	font-size: var(--font-size-7xl);
	font-weight: 700;
}

.shop_card_desc {
	font-size: var(--font-size-m);
}

.button_1_link_href,
.button_2_link_href {
	font-weight: var(--font-weight-5);
	font-size: var(--font-size-l);
	width: 100%;
}

.button_1_link_href {
	background: #718cef;
	color: var(--text-default);
}

.button_1_link_href:hover {
	background: #718cef;
	filter: brightness(120%);
	color: var(--text-default);
}

.button_2_link_href {
	background: #ffd300;
	color: var(--bg);
}

.button_2_link_href:hover {
	background: #ffd300;
	filter: brightness(120%);
	color: var(--bg);
}

@media (max-width: 768px) {
	.shop_backgrounds {
		display: none;
	}

	.shop_cards {
		flex-direction: column;
	}
	.shop_card {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 1275px) {
	.shop_backgrounds {
		width: 122vw;
	}
}