/* Common */
/* Media */
/* Content */
/* Blocks */
.main {
	text-align: left;
	overflow: hidden;
}

.main__inner {
	min-height: 108.33333vw;
}

.news {
	padding-top: 5.55556vw;
	padding-bottom: 5.55556vw;
}

.news .invisible-block {
	display: none;
}

.news__title {
	margin-bottom: 6.66667vw;
}

.news__filters {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw 0;
	margin-bottom: 7.77778vw;
}

.news__filters-group {
	position: relative;
}

.news__filters-group-title {
	position: relative;
	display: flex;
	align-items: center;
	height: 11.11111vw;
	padding: 0 15vw 0 3.33333vw;
	border-radius: 2.22222vw;
	background: #ECEDF0;
	font-size: 3.88889vw;
	line-height: 120%;
	cursor: pointer;
	/*
                &.disabled {
                    color: $gray-80;
                    pointer-events: none;

                    &:after {
                        opacity: 0.5;
                    }
                }
                */
}

.news__filters-group-title:after {
	position: absolute;
	top: 50%;
	right: 3.33333vw;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: '';
	display: block;
	width: 5.55556vw;
	height: 5.55556vw;
	background: url(../img/icon/arrow-select.svg) no-repeat 50% 50%/cover;
}

.news__filters-group-title.open {
	background: #fff;
}

.news__filters-group-title.open:after {
	-webkit-transform: rotate(-180deg) translateY(2.77778vw);
	        transform: rotate(-180deg) translateY(2.77778vw);
}

.news__filters-group-title[data-disabled='true'] {
	color: #7E7F81;
	pointer-events: none;
}

.news__filters-group-title[data-disabled='true']:after {
	opacity: 0.5;
}

.news__filters-group-title.attention {
	border: 1px solid red;
}

.news__filters-group-content {
	position: absolute;
	top: calc(100% + 2.22222vw);
	left: 0;
	z-index: 1;
	width: 100%;
	padding: 1.38889vw 1.11111vw 1.38889vw 1.38889vw;
	border-radius: 2.22222vw;
	background: #ECEDF0;
}

.news__filters-group-content .custom-scrollbar-wrapper {
	max-height: 47.22222vw;
	overflow: auto;
}

.news__filters-group-content .custom-scrollbar-wrapper .simplebar-track {
	background-color: #E0E1E5;
}

.news__filters-group-content .custom-scrollbar-wrapper .simplebar-track.simplebar-vertical {
	width: 1.11111vw;
}

.news__filter {
	display: flex;
	flex-direction: column;
}

.news__filter-item {
	display: flex;
	padding: 1.66667vw;
	font-weight: 600;
	font-size: 3.61111vw;
	cursor: pointer;
}

.news__filter-item:hover {
	background: #E0E1E5;
}

#news-tabs-year .news__filter-item:not([data-active]),
#news-tabs-month .news__filter-item:not([data-active]) {
	color: #E0E1E5;
	pointer-events: none;
}

.news__filter-item:not([data-active]) {
	color: gray;
	pointer-events: none;
}

.news__filter_tabs {
	display: flex;
	flex-direction: row;
	gap: 2.22222vw;
	overflow: scroll;
	scrollbar-width: none;
	white-space: nowrap;
}

.news__filter_tabs .news__filter-item {
	display: flex;
	align-items: center;
	height: 8.88889vw;
	padding: 0 3.33333vw;
	border-radius: 2.22222vw;
	border: 1px solid #CACACB;
	font-size: 3.88889vw;
	white-space: nowrap;
	cursor: pointer;
}

.news__filter_tabs .news__filter-item:hover {
	background: none;
	border-color: #1C1C1C;
}

.news__filter_tabs .news__filter-item[data-checked] {
	background: #1C1C1C;
	border-color: #1C1C1C;
	color: #fff;
}

.news__cards {
	display: flex;
	flex-direction: column;
	gap: 5.55556vw 0;
	width: 100%;
}

.news__card {
	display: flex;
	flex-direction: column;
	min-height: 50.55556vw;
	border-radius: 4.44444vw;
	background: #fff;
	overflow: hidden;
	transition: all .3s;
}

.news__card:not([data-active]) {
	display: none;
}

.news__card_actual {
	display: flex;
}

.news__card-photo {
	height: 67.22222vw;
}

.news__card-photo IMG {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.news__card-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	padding: 4.44444vw 3.88889vw 3.88889vw 3.88889vw;
	border-radius: 4.44444vw;
	background: #fff;
	margin-top: -10.55556vw;
}

.news__card-theme {
	margin-bottom: 5.55556vw;
}

.news__card-theme DIV {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 9.16667vw;
	padding: 0 3.33333vw;
	border: 1px solid #CACACB;
	border-radius: 13.33333vw;
	font-size: 5vw;
	line-height: 120%;
	color: #7E7F81;
}

.news__card-title {
	font-size: 5.27778vw;
	line-height: 100%;
	margin-bottom: 10.55556vw;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-Webkit-box-orient: vertical;
	overflow: hidden;
}

.news__card-date {
	font-size: 4.44444vw;
	line-height: 120%;
	color: #7E7F81;
	margin: auto 0 0 0;
}

.news__button-more {
	display: flex;
	min-height: 13.33333vw;
	width: 68.05556vw;
	border-radius: 27.5vw;
	margin: 6.66667vw auto 0;
}

.news__empty {
	display: block;
	max-width: 88.88889vw;
	padding: 30.55556vw 0;
	font-size: 7.22222vw;
	line-height: 100%;
	color: #c9c9ca;
	text-align: center;
	margin: 0 auto;
}

.news__empty[data-active='false'] {
	display: none;
}
