.scroll-box {
	--sb-animate: all 0.5s ease-out;
	/*--sb-animate2: transform 0.3s ease;*/
	--sb-animate2: transform 0.5s ease-out;
	--sb-col: 30px;
	--sb-blur: 6px;

	overflow: hidden;
}
.scroll-box .r-container {
	padding-top: 40px;
	padding-bottom: 40px;
}
.scroll-box__row {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
}
.scroll-box__row:before {
	content: '';
	right: 100%;
	top: 0;
	height: 100%;
	width: 100vw;
	background-color: #fff;
	position: absolute;
	z-index: 2;
}
.scroll-box__text {
	position: relative;
	z-index: 2;
	background-color: #fff;
}
.scroll-box__slider {
	position: relative;
	z-index: 1;
	padding-top: 18px;
	padding-bottom: 18px;
}
.scroll-box__scroll {
	overflow: visible !important;
}
.scroll-box__list {
	display: flex;
}
.scroll-box__item {
	width: 248px;
	height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
	background-color: #F4F6F9;
	position: relative;
	font-family: var(--font-default);
}
.scroll-box__item-mode-v2 {
	border-radius: 24px;
}
.scroll-box__item-mode-v3 {
	width: 300px;
	height: 300px;
}
.scroll-box__col {
	padding-bottom: 44px;
	padding-right: var(--sb-col);
	flex-shrink: 0;	
}
.r-ss-custom .scrollbar-track {
	background-color: #48618F38;
	border-radius: 5px;
}
.r-ss-custom .scrollbar-track-x {
	height: 10px;
	transition: var(--animate-transition);
}
.r-ss-custom .scrollbar-track-7 {
	width: 10px;
	transition: var(--animate-transition);
}
.r-ss-custom .scrollbar-thumb {
	width: 10px;
	height: 10px;
	background-color: #132038;
	border-radius: 5px;
	transition: var(--animate-transition);
}
.scroll-box__info {
	box-sizing: border-box;
	padding: 13px 15px;
	background: linear-gradient(0deg, #EDF0F6C4 0%, #FFFFFF00 100%);
	/*backdrop-filter: blur(var(--sb-blur));*/
	min-height: 112px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.scroll-box__item-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}
.scroll-box__info-mode-v2 {
	min-height: 123px;
	padding-top: 13px;
	background: linear-gradient(0deg, #A6B1C9 0%, #FFFFFF00 100%);
	position: relative;
	z-index: 2;
}
.scroll-box__name {
	color: #132038;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.21875;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.scroll-box__name-mode-v2 {
	color: #000;
	font-weight: 600;
}
.scroll-box__date {
	display: flex;
	align-items: center;
	color: #000;
	font-size: 13px;
	line-height: 1.05;
	text-transform: uppercase;
}
.scroll-box__date span {
	background-color: #CD0700;
	padding: 2px 10px;
	border-radius: 13px;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.3125;
	display: block;
	margin-right: 6px;
}
.scroll-box__post {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	line-height: 1.4;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.scroll-box__warning {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	right: 16px;
	top: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.scroll-box__descr {
	display: none;
	margin-top: 12px;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.125;
	margin-bottom: auto;
	overflow: hidden;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.scroll-box__dark {
	background-color: #E7EDF8;
}
.scroll-box__dark .scroll-box__row:before {
	background-color: #E7EDF8;
}
.scroll-box__dark .scroll-box__text {
	background-color: #E7EDF8;
}

@media (min-width: 1024px) {
	.scroll-box__item {
		/*will-change: transform;
		transition: var(--sb-animate2) 0.4s;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		filter: grayscale(.2) blur(0px);*/
		transition: all 0.4s ease;
		position: relative;
		z-index: 1;
	}
	.scroll-box__item-img {
		/*transition: var(--sb-animate2) 0.4s;
		image-rendering: pixelated;
		transform: scale(1.1008, 1.1) translateZ(0);*/
		transition: all 0.4s ease;
	}
	.scroll-box__info {
		/*image-rendering: pixelated;*/
	}
	/*.scroll-box__list:has(.scroll-box__item:hover) .scroll-box__item {*/
	.scroll-box__list:hover .scroll-box__item:not(:hover) {
		/*transform: scale(0.8992, 0.89715) translateZ(0);
    	filter: grayscale(.65) blur(0px);*/
    	transform: scale(0.9);
    	filter: grayscale(50%);
    	opacity: .7;
    	z-index: 1;
	}
	/*.scroll-box__list:has(.scroll-box__item:hover) .scroll-box__item .scroll-box__item-img {
		transform: scale(1) translateZ(0);
	}
	.scroll-box__list:has(.scroll-box__item:hover) .scroll-box__item .scroll-box__info {
		transform: scaleY(0.9952) translateZ(0);
	}
	.scroll-box__list:has(.scroll-box__item:hover) .scroll-box__item .scroll-box__name {
		transform: scale(0.99989, 1.0051) translateZ(0);
	}
	.scroll-box__list:has(.scroll-box__item:hover) .scroll-box__item .scroll-box__date {
		transform: scale(0.99989, 1.021) translateZ(0);
	}*/
	.scroll-box__list .scroll-box__item:hover {
		/*transform: scale(1) translateZ(0) !important;
    	filter: grayscale(0) blur(0px) !important;*/
    	transform: scale(1) !important;
    	filter: grayscale(0) !important;
    	z-index: 2 !important;
    	opacity: 1 !important;
	}
	/*.scroll-box__list .scroll-box__item:hover .scroll-box__info {
		transform: scaleY(1) translateZ(0) !important;
	}
	.scroll-box__list .scroll-box__item:hover .scroll-box__item-img {
		transform: scale(1) translateZ(0) !important;
		filter: grayscale(0) blur(0px) !important;
	}*/
	.r-ss-custom .scrollbar-track-x:hover {
		height: 15px;
		border-radius: 8px;
	}
	.r-ss-custom .scrollbar-track-x:hover .scrollbar-thumb {
		height: 15px;
		border-radius: 8px;
	}
	.scroll-box__item-hover:hover .scroll-box__descr {
		display: block;
		display: -webkit-box;
	}
	.scroll-box__item-hover:hover .scroll-box__info {
		height: 100%;
		background-color: #132038BF;
	}
	.scroll-box__item-hover:hover .scroll-box__name {
		color: #fff;
	}
	.scroll-box__item-hover:hover .scroll-box__date {
		color: #fff;
	}
}
@media (max-width: 580px) {
	.scroll-box {
		--sb-col: 20px;
	}
	.scroll-box__item {
		width: 200px;
		height: 282px;
		border-radius: 7px;
	}
	.scroll-box__item-mode-v2 {
		border-radius: 19px;
	}
	.scroll-box__item-mode-v3 {
		width: 150px;
		height: 150px;
	}
	.scroll-box__info {
		padding: 11px 13px;
		min-height: 96px;
	}
	.scroll-box__info.scroll-box__info-mode-v2 {
		min-height: 105px;
		padding-top: 11px;
	} 
	.scroll-box__name {
		font-size: 14px;
	}
	.scroll-box__date {
		font-size: 11px;
	}
	.scroll-box__date span {
		padding: 1px 6px;
		border-radius: 6px;
		font-size: 10px;
		margin-right: 4px;
	}
	.scroll-box__post {
		font-size: 14px;
	}
	.scroll-box__col {
		padding-bottom: 30px;
	}
	.r-ss-custom .scrollbar-track {
		border-radius: 3px;
	}
	.r-ss-custom .scrollbar-track-x {
		height: 6px;
	}
	.r-ss-custom .scrollbar-track-7 {
		width: 6px;
	}
	.r-ss-custom .scrollbar-thumb {
		width: 6px;
		height: 6px;
		border-radius: 3px;
	}
}