div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/*Верстка*/
.news-main {
	padding-bottom: 82px;
}

.news-card__wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* grid-template-columns: repeat(3, 1fr); */
	gap: 40px;
}

.news-card {
	display: flex;
	flex-direction: column;
	padding: 32px 23px 23px;
	background-color: #FFFFFF;
	border: 1px solid #E5E5E5;
	border-radius: 8px;

	transition: all .35s ease-out;
}

.news-card__top {
	position: relative;
	padding-bottom: 50%;
}

.news-card__img {
	/* position: absolute; */
	/* top: 0; */
	/* left: 0; */
	/* width: 100%; */
	/* height: 100%; */
	/* width: 112px !important; */
	/* height: 112px !important; */
	object-fit: cover;
	object-position: center;

	/* border-radius: 50%; */

	position: absolute;
	/* width: calc(100% - 55px) !important; */
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.news-card__name {
	display: block;
	margin-top: 30px;
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	color: #1D1D1D;
}

.news-card__text {
	margin: 8px 0 30px;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	/* color: #666666; */
	color: #1d1d1d !important;
	margin-bottom: 0;
}

.news-card__text p {
	margin-bottom: 0;
}

.news-card__text.mb-14 {
	margin-bottom: 14px;
}

.news-card__price {
	margin-top: auto;
}

.news-card__current {
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	color: #1D1D1D;
}

.news-card__box {
	display: flex;
	align-items: center;
	margin-top: 4px;
}

.news-card__old {
	margin-bottom: 7px;

	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #BCC1CC;
}

.news-card__old+.news-card__sale {
	margin-left: 7px;
}

.news-card__sale {
	padding: 4px;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #1D1D1D;
	background-color: #FFD130;
	border-radius: 2px;
}

.news-card__text ul:not([id*="bx_"]) {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 7px;
}

.news-card__text ul:not([id*="bx_"]) > li {
	/* margin-top: 0 !important; */
	margin-left: 14px;
	margin-top: 8px !important;
}

.news-card__text ul:not([id*="bx_"]) > li:before {
	content: "·";
    margin: 0 7px 0 -11px;
}

@media (max-width: 1200px) {
	.news-main {
		padding-bottom: 20px;
	}

	.news-card__wrapper {
		gap: 20px;
	}

	.news-card {
		padding: 20px;
	}
}

@media (max-width: 991px) {
	.news-card__wrapper {
		display: flex;
		overflow-x: auto;
		padding-bottom: 16px;
	}

	.news-card {
		min-width: 280px;
		max-width: 280px;
	}
}

.arrow-all__item-line {
	background: #cacaca;
	height: 2px;
	position: absolute;
	right: 1px;
	top: 3px;
	left: calc(100% - 18px);
	transition: left ease .5s;
}

.arrow-all__item-arrow {
	position: absolute !important;
	right: 0;
	top: 0 !important;
}

.svg {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
}

.arrow-all {
	position: absolute;
	right: -1px;
	top: 7px;
	z-index: 1;
	width: 34px;
	height: 8px;
}

.news-card .news-card__top {
	position: relative;
}

.news-card .news-card__top .arrow-all {
	right: 0;
	/* top: 0; */
	bottom: -36px;
	top: initial;
}

/* HOVER STYLES */
/* #1f3680 */
.news-card:hover {
	box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
	/* border: none; */
	border-color: #fff;
}

.news-card:hover .arrow-all__item-line {
	left: calc(100% - 34px);
}

.news-card:hover .stroke-theme-target .arrow-all__item-line {
	background: #1f3680;
}


.news-card:hover .stroke-theme-target i.svg svg path {
	stroke: #1f3680;
}