.product-card {
	position: relative;
	display: block;
	background: linear-gradient(1deg, #25252e 30%, #292932 100%);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
	padding: 16px;
}

.product-card img {
	width: 100%;
	height: 185px;
}

.product-card-img {
	position: relative;
    width: 100%;
    height: 240px;
    padding: 10px 11px;
    display: flex;
    margin-bottom: 15px;
    background: #fff0;
    border-radius: 13px;
    align-items: flex-start;
}

.product-card .overlay {
	position: absolute;
	width: 100%;
	height: 185px;
	top: 0;
}

.product-card .info .count {
	position: absolute;
    top: 25px;
    right: 25px;
    background-color: rgb(137, 75, 179);
    color: #fff;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 27px;
}

.product-card .info .title {
    font-size: 15px;
    font-weight: 600;
    text-overflow: ellipsis;
    max-width: 370px;
    overflow: hidden;
    white-space: nowrap;
    color: #ffff;
}

.product-card .info .price {
	color: #797f9a;
}

.product-card .info .new {
	position: absolute;
    top: 25px;
    left: 25px;
    background-color: rgb(227, 6, 19);
    color: #fff;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 27px;
}

.product-card>div:nth-child(1) {
	background-size: cover;
}

.product-card:hover>div:nth-child(2) {
	background: rgba(0, 0, 0, 0);
}


@media (max-width: 991.99px) {
	.product-card {
		
	}
}

.product-block {
	position: relative;
	margin: -30px;
	margin-bottom: 30px;
	border-bottom: 1px solid RGB(227, 228, 232);
	background: linear-gradient(to bottom, #6a9bb1 0%, #60acae 44%, #8ba7c3 100%);
	border-radius: 1px;
	color: #FFF;
	overflow: hidden;
}

.product-block .product-bg {
	position: absolute;
	height: calc(100% + 20px);
	width: calc(100% + 20px);
	background-size: 100% auto;
	left: -10px;
	top: -10px;
	filter: blur(4px);
}

.product-block .product-content {
	position: relative;
	background: rgba(0, 0, 0, 0.45);
	padding: 40px 15px;
}

.product-block .product-content h2 {
	font-size: 30px;
	display: block;
	width: calc(100% - 200px);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.product-block .product-content span b {
	line-height: 23px;
	padding: 3px 10px;
	color: RGB(255, 255, 255);
	border-radius: 2px;
}

.product-block .product-content span .price {
	background: #3fb358;
	margin-right: 10px;
}

.product-block .product-content span .count {
	background: #4196da;
}

.product-block .product-content button {
	position: absolute;
	right: 15px;
	top: 40px;
	height: 65px;
	width: 190px;
	font-size: 18px;
	background: rgba(65, 150, 218, 0.58);
}

.buy-product-key-info {
	margin: 15px 0 0 0;
	padding: 15px;
	background: #212531;
	border: 1px solid #DDD;
	border-radius: 2px;
}

.buy-product-key-info p:last-child {
	margin: 0;
}

.price_rcon {
	color: #FFF;
    background: radial-gradient(100% 100% at 50% 0, #7b44d3 0, #531d77 100%);
    transform: skewX(348deg);
    position: absolute;
    top: 10px;
    text-shadow: #00000052 1px 0 10px;
    font-weight: 600;
    right: 10px;
    display: flex;
    height: 38px;
    font-size: 11.5px;
    padding: 5px 20px;
    border-radius: 10px;
    cursor: default;
    max-width: 60%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}

.product-card-img .title {
	background: rgb(0 0 0 / 23%);
    backdrop-filter: blur(7px);
    color: #FFF;
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: 600;
    display: flex;
    height: 38px;
    font-size: 11.5px;
    padding: 5px 20px;
    border-radius: 50px;
    cursor: default;
    max-width: 60%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}

.product-card .actions {
    text-align: center;
    display: flex;
    transform: skewX(348deg);
    gap: 10px;
    border-radius: 10px;
    margin-top: 15px;
}

.btn_buy_rcon {
    width: 100%;
    background: linear-gradient(341deg, #ff7676 0%, #ff4040 55%);
    padding: 14px;
    color: #ffff;
    text-shadow: #00000052 1px 0 10px;
    border-radius: 10px;
}

.btn_buy_rcon:hover {
  color: #ffff;
  opacity: 0.7;
}

.btn_desp_rcon {
  background: linear-gradient(23deg, #3b3b49a3 0%, #3e3e4b 55%);
  width: 100%;
  padding: 14px;
  transition: 0.2s;
  color: #ffff;
  border-radius: 10px;
}

.btn_desp_rcon:hover {
  color: #ffff;
  opacity: 0.7;
}

.btn_rcon_back {
    height: 45px;
    border: none;
    cursor: pointer;
    display: flex;
    transition: 0.2s;
    padding: 0px 23px;
    background: #2e2e39;
    font-weight: 600;
    color: #666679;
    font-size: 11.5px;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
}

.btn_rcon_back:hover {
  background: #3a3a47;
  color: #ffffff;
}

.flex_rcon_shop {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.left_rcon_shop {
    width: 100%;
    padding: 25px;
    background: linear-gradient(1deg, #2c2f36 30%, #343840 100%);
    box-shadow: 0px 5px 10px #13151a4f;
    border-radius: 20px;
}

.right_rcon_shop {
    width: 100%;
    padding: 25px;
    height: fit-content;
    background: linear-gradient(1deg, #212129 30%, #292932 100%);
    box-shadow: 0px 5px 10px #13151a4f;
    border-radius: 20px;
}

.flex_rcon_shop .info_block_names {
	background: linear-gradient(1deg, #343440ab 30%, #353540 100%);
}

.left_rcon_shop p {
	margin-bottom: 0px;
}

.left_rcon_shop img:last-child {
	margin-bottom: 0px;
}

.left_rcon_shop img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
}

.right_rcon_shop .warning_map {
	font-size: 13px;
    font-weight: 600;
    color: #e26262;
    text-align: center;
    margin-bottom: 15px;
}

.head_block_rcon_shop {
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.head_block_rcon_shop i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(341deg, #ff7676 0%, #ff4040 55%);
    text-shadow: #000000d4 1px 0 7px;
    font-size: 14px;
    color: #ffffff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

@media (max-width: 768px) {
	.flex_rcon_shop {
		flex-direction: column;
	}
}