@media (max-width: 1259px) {
	.gifts-list-wrap {
		overflow-x: auto; 
		padding: 8px;
		margin: -8px;
	}

	.gifts-list {
		white-space: nowrap;
	}
}
.shield-icon{
	background: var(--shield_icon_url);
	width: 32px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.gifts-list{
	position: static !important;
	right: var(--offset); /* для js */
	display: flex;
	justify-content: space-between;
	gap: var(--g);
}

.gifts-list__item-inner{
	box-shadow: 0px 1px 10px #2163F01F;
	border-radius: calc(var(--gx) * 2);
	padding: calc(var(--gx) * 4);
	display: flex;
	gap: calc(var(--offset) * .5);
	align-items: center;
	font-size: 15px;
}

@media (max-width: 1259px){

}
@media (max-width: 767px){
	.gifts-list__item-inner{
		font-size: 13px;
		padding: calc(var(--gx) * 2);
	}
	.gifts-list__item-inner .shield-icon{
		width: 24px;
		height: 30px;
	}
	.gifts-list{
		justify-content: flex-start;
		gap: var(--offset);
	}
}