
#ipsLayout_mainArea {
    min-height: auto;
}

.elNewsTags_container {
	position: relative;
}

.elNewsTags_container::before {
  content: ' ';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.001), rgb( var(--theme-page_background) ));
}

.elNewsTags {
    display: flex;
    overflow-y: scroll;
	padding-right: 100px;
}

.elNewsTags li {
    margin-bottom: var(--sp-4);
}

.elNewsTags li a {
    white-space: nowrap;
}

.elNewsTags {
    margin: var(--sp-4) 0 var(--sp-2) 0;
}

.elNews_modeToggle {
    letter-spacing: 0.11em;
}

.ipsNewsContent .ipsQuote {
    padding: var(--sp-4);
    background: none;
    color: rgb( var(--theme-link) );
    border-radius: 0;
    border: 0;
}

.ipsNewsContent .ipsQuote {
    position: relative;
    margin-top: 40px;
}

.ipsNewsContent .ipsQuote .ipsQuote_citation {
    display: none;
}

.ipsNewsContent .ipsQuote .ipsQuote_contents {
    border-left: 1px rgb( var(--theme-link), 0.25 ) solid;
    padding-left: var(--sp-4);
}

.ipsNewsContent .ipsQuote .ipsQuote_contents:before {
    content: ' ';
    background-image: url(https://newhouse.ru/uploads/pages_media/1_cms_quote.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -20px; left: 0;
    width: 25px; height: 20px;
}

.cmsNewsRecord section.ipsType_richText ol:not([class]) {
    counter-reset: point;
    list-style: none !important;
}

.cmsNewsRecord section.ipsType_richText ol:not([class]) li {
    position: relative;
}

.cmsNewsRecord section.ipsType_richText ol:not([class]) li:before {
    content: counter(point);
    counter-increment: point 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    width: 26px;
    height: 26px;
    color: #fff;
    background-color: rgb(var(--theme-brand_primary));
    border-radius: 20px;
    position: absolute;
    top: 5px;
    left: -40px;
}

.elNewsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    grid-auto-rows: minmax(100px, auto);
}

.elNewsGrid_2 {
    grid-template-columns: repeat(2, 1fr);
}

.elNewsGrid_loading {
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 767px) {
	.elNewsGrid, .elNewsGrid_2 {
    	grid-template-columns: repeat(1, 1fr);
	}
}

.elNewsGrid_noImage {
    box-shadow: var(--box--boxShadow);
    border-radius: var(--box--radius);
    background-color: var(--box--backgroundColor);
}

    .elNewsGrid_noImage > a {
        box-shadow: none;
        border-radius: 0;
        background-color: transparent;
    }

    .elNewsGrid_noImage .elNewsCard_image {
        display: none;
    }

.elNewsGrid:not(.elNewsGrid_withStats) .elNewsCard_stats {
    display: none;
}

    .elNewsCard_stats {
        padding-top: var(--sp-4) !important;
        color: rgb( var(--theme-text_light) );
		font-size: 13px;
		font-weight: 400;
    }

        .elNewsCard_statsIcon {
            display: block;
            width: 20px;
            height: 20px;
        }

.elNewsCard {
    display: flex;
    flex-direction: column;
    box-shadow: var(--box--boxShadow);
    border-radius: var(--box--radius);
    background-color: var(--box--backgroundColor);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    color: inherit;
}

.elNewsCard:hover, .elNewsCard:active {
    color: inherit;
}

.elNewsCard_image {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 240px;
    position: relative;
}

    .elNewsCard_image:before {
        content: ' ';
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
    }

    .elNewsCard_big .elNewsCard_image {
        height: 300px;
    }

    .elNewsCard:not(.elNewsCard_big) .elNewsCard_image .elNewsCard_title {
        display: none;
    }

    .elNewsCard.elNewsCard_big .elNewsCard_image .elNewsCard_title {
        display: block;
    }

    .elNewsCard_image > .elNewsCard_title {
        margin: var(--sp-9) var(--sp-7);
        margin-right: var(--sp-10);
        padding-right: var(--sp-10);
        font-size: 20px;
        font-weight: 400;
        color: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .elNewsCard_image > .elNewsCard_place {
        margin: var(--sp-5) var(--sp-5);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 2px;
        padding: 3px 6px;
        color: #FFFFFF;
        text-transform: uppercase;
        letter-spacing: 0.11em;
        position: absolute;
        bottom: 0;
        right: 0;
    }

	.elNewsCard .elNewsCard_category {
		font-size: 13.0px;
    	color: rgb( var(--theme-text_light) );
    	margin-bottom: var(--sp-2);
	}

	.elNewsCard .elNewsCard_title {
		font-weight: 500;
	}

	.elNewsCard .elNewsCard_desc {
		display: block;
		font-size: 14px;
		margin-top: 8px;
	}

    .elNewsCard.elNewsCard_big .elNewsCard_content {
        display: none;
    }

    .elNewsCard:not(.elNewsCard_big) .elNewsCard_content {
        display: flex;
        flex-direction: column;
    }

.elNewsCard_content {
    padding: var(--sp-6);
    font-size: 16px;
    flex-grow: 1;
    flex-shrink: 1;
}

.elNewsCard_date {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: var(--sp-4);
    font-size: 13px;
    color: rgb( var(--theme-text_light) );
    flex-grow: 1;
    flex-shrink: 1;
}

.elNewsInfo {
    margin-bottom: var(--sp-7);
}

.elNews_loadMore {
    text-align: center;
}



/* NEW CSS CODE GOES BELOW */



.ipsBreadcrumb {
    margin: 0 auto;
}

/** News Record */
.cmsNewsRecord {
    max-width: 980px;
    margin: 0 auto;
}

.cmsNewsRecord .ipsColumn {
    padding: 0 var(--sp-5);
}

.cmsNewsRecord .ipsType_pageTitle {
	font-size: 36px;
    line-height: 48px;
    font-family: charter, Georgia, Cambria, "Times New Roman", Times, serif;
    display: flex;
    align-items: center;
}

.cmsNewsRecord .ipsType_pageTitle .ipsBadge {
	margin-right: 10px;
}

.cmsNewsRecord .ipsPageHeader .ipsUserPhoto {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.cmsNewsRecord div[data-ipsRating] {
    text-align: right;
}

.cmsNewsRecord .ipsRating {
    font-size: 16px;
    float: none !important;
}

.cmsNewsRecord .ipsRating li {
    margin-left: 3px;
}

.cmsNewsRecord span[data-role="ratingStatus"] {
    display: block;
    text-align: right;
    margin-top: -1px;
}

.cmsNewsRecord section.ipsType_richText {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: -0.003em;
    font-family: charter, Georgia, Cambria, "Times New Roman", Times, serif;
}

.cmsNewsRecord section.ipsType_richText img {
    border-radius: 10px;
	box-shadow: var(--box--boxShadow);
}

.cmsNewsRecord section.ipsType_richText .ipsQuote {
    padding: var(--sp-4);
    background: none;
    color: rgb( var(--theme-link) );
    border-radius: 0;
    border: 0;
}

.cmsNewsRecord section.ipsType_richText .ipsQuote {
    position: relative;
    margin-top: 40px;
}

.cmsNewsRecord section.ipsType_richText .ipsQuote .ipsQuote_citation {
    display: none;
}

.cmsNewsRecord section.ipsType_richText .ipsQuote .ipsQuote_contents {
    border-left: 1px rgb( var(--theme-link), 0.25 ) solid;
    padding-left: var(--sp-4);
}

.cmsNewsRecord section.ipsType_richText .ipsQuote .ipsQuote_contents:before {
    content: ' ';
    background-image: url(https://newhouse.ru/uploads/pages_media/1_cms_quote.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -20px; left: 0;
    width: 25px; height: 20px;
}

.cmsNewsRecord .ipsTags_edit a {
    background: rgb( var(--theme-tag) );
    color: rgb( var(--theme-tag_font) );
}

.cmsNewsRecord .cmsNewsRecord_stats {
    display: flex;
    align-items: center;
    color: rgb(var(--theme-text_light));
}

.cmsNewsRecord .cmsNewsRecord_stats li {
    display: flex;
    align-items: center;
}

.cmsNewsRecord .cmsNewsRecord_stats li {
    margin-right: 20px;
}

.cmsNewsRecord .cmsNewsRecord_stats li svg {
    width: 20px;
    height: 20px;
}

.cmsNewsRecord .cmsNewsRecord_stats li span {
    display: inline-block;
    margin-left: 5px;
}

.cmsNewsRecord #elNewsActions {
    padding: 0px 12px;
}

.cmsNewsRecord .ipsCommentMultimod.ipsMargin_bottom {
    margin-bottom: 0 !important;
}

.cmsNewsRecord .ipsCommentMultimod #elCheck {
    line-height: 32px;
}

.cmsNewsRecord .cmsNewsRecord_comments h2 {
    font-size: 20px;
    font-weight: 400;
}

.cmsNewsRecord .cmsNewsRecord_comments .ipsTabs {
    display: none;
}

.cmsNewsRecord .cmsNewsRecord_comments .ipsTabs_panels.ipsTabs_contained,
.cmsNewsRecord .cmsNewsRecord_comments .ipsTabs_panel {
    border: 0;
    padding: 0;
    background-color: transparent;
}

.cmsRecordWidget_listing {
    margin-bottom: var(--sp-5);
}

.cmsRecordWidget_listing h3 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(var(--theme-text_light));
    letter-spacing: 0.05rem;
}

.cmsRecordWidget_listing li {
    font-size: 16px;
    font-weight: 400;
}

.cmsRecordWidget_listing li h4 {
    margin-bottom: 4px;
}

.cmsRecordWidget_listing li a {
    color: inherit;
    line-height: 24px;
    letter-spacing: 0.01rem;
	font-size: 15px;
}
.cmsRecordWidget_listing li div {
    font-size: 14px;
    font-weight: 300;
    color: rgb(var(--theme-text_light));
    margin: 4px 0;
}

.cmsRecordWidget_listing li p {
    font-size: 13px;
    font-weight: 300;
    color: rgb(var(--theme-text_light));
}

.cmsNewsRecord_faded {
    margin-bottom: var(--sp-5);
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu {
    background-color: rgb( var(--theme-area_background_light) );
    border-top: 1px solid rgba( var(--theme-text_color), 0.1 );
    position: fixed;
    right: 0; bottom: 0; left: 0;
    z-index: 5000;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu > div:first-child > .ipsButton {
    border-radius: 0;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu > div:last-child {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu > div:last-child > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu__withIcon,
.cmsNewsRecord .cmsNewsRecord_bottomMenu__withIcon a {
    display: flex;
    align-items: center;
    color: rgb(var(--theme-text_light));
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu__withIcon svg {
    width: 24px;
    height: 24px;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu__withIcon span {
    display: inline-block;
    margin-left: 5px;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsItemControls_right {
    flex-grow: 0;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsReact_button {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 24px;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsReact_button img {
    max-width: 24px;
    max-height: 24px;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsFollow {
    background: transparent;
    color: rgb(var(--theme-text_light));
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu a[data-role="followButton"][data-following="true"] {
    color: rgb( var(--theme-link) );
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsReact_blurb {
    display: none !important;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsReact_blurb:not(.ipsHide) + .ipsReact_types {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
}

.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsReact_types ul,
.cmsNewsRecord .cmsNewsRecord_bottomMenu .ipsReact.ipsReact_mini .ipsReact_types ul {
    bottom: -8px !important;
    left: -8px !important;
    right: -8px !important;
}









/* Phones */
@media screen and (max-width: 767px) {
    .cmsNewsRecord .ipsType_pageTitle {
        font-size: 28px;
        line-height: 36px;
        margin-top: var(--sp-3);
    }

    .cmsNewsRecord .ipsRating,
    .cmsNewsRecord .ipsRating + span {
        display: none;
    }

    .cmsNewsRecord section.ipsType_richText {
        font-size: 18px;
        line-height: 28px;
    }
}














/* Mini sidebar list */
.cForumMiniList_button.ipsButton_split {
	margin-top: 2px;
}

.cForumMiniList_wrapper {
	padding: 10px;
}

ul.ipsButton_split.cForumMiniList_buttonShowFlow {
	margin-top: 8px;
}

ul.ipsButton_split.cForumMiniList_button {
	text-transform: none;
}

html[dir] .cForumMiniList_wrapper > .ipsSideMenu > .ipsSideMenu_list.cForumMiniList_multiRoot > li > .cForumMiniList {
	border: 0;
}

html[dir="ltr"] .ipsSideMenu > .cForumMiniList > li:not( .cForumMiniList_category ) > .cForumMiniList {
	margin-left: 0;
}
html[dir="rtl"] .ipsSideMenu > .cForumMiniList > li:not( .cForumMiniList_category ) > .cForumMiniList {
	margin-right: 0;
}

html[dir="ltr"] .ipsSideMenu > .cForumMiniList_singleRoot .cForumMiniList {
	border-left: 0;
}
html[dir="rtl"] .ipsSideMenu > .cForumMiniList_singleRoot .cForumMiniList {
	border-right: 0;
}

.cForumMiniList .ipsSideMenu_item + .ipsSideMenu_list .ipsSideMenu_item {
	font-size: 13.0px;
	padding: 8px 10px;
	line-height: 18.0px;
}

.cForumMiniList .ipsSideMenu_item {
	font-size: 14.0px;
	padding: 7px 10px;
	display: flex;
	align-items: center;
}

.cForumMiniList .ipsSideMenu_item .cForumMiniList_title {
	min-width: 0;
}

.cForumMiniList.cForumMiniList_multiRoot > li > a {
	font-size: 18.0px;
	font-weight: 500;
	padding: 8px 12px;
	margin: 0;
	color: rgb( var(--theme-text_dark) );
}

html[dir="ltr"] .cForumMiniList_count {
	margin-left: 12px;
}
html[dir="rtl"] .cForumMiniList_count {
	margin-right: 12px;
}

	.cForumMiniList_count .fa {
		font-size: 8px;
	}

.cForumMiniList .cForumMiniList_blob {
	flex: 0 0 auto;
	font-size: 18px;
	width: 1em;
	height: 1em;
	border-radius: 3px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: rgb( var(--theme-area_background_dark) );
	opacity: 0.3;
	position: relative;
}

html[dir="ltr"] .cForumMiniList .cForumMiniList_blob {
	margin-right: 10px;
}
html[dir="rtl"] .cForumMiniList .cForumMiniList_blob {
	margin-left: 10px;
}

	.cForumMiniList .cForumMiniList_blob > span {
		position: absolute;
		top: 2px;
		left: 2px;
		right: 2px;
		bottom: 2px;
		background: rgb( var(--theme-area_background_reset) );
		border-radius: 2px;
	}

	.cForumMiniList .cForumMiniList_blob .fa {
		display: none;
		font-size: .6em;
	}

	.cForumMiniList .cForumMiniList_selected > .cForumMiniList_blob {
		opacity: 1;
	}

	.cForumMiniList .cForumMiniList_selected > .cForumMiniList_blob .fa {
		display: block;
	}
	.cForumMiniList .cForumMiniList_selected > .cForumMiniList_blob > span {
		display: none;
	}

.cForumFluidTable .ipsDataItem_lastPoster.ipsDataItem_noPhoto {
	min-width: 170px;
}

.cForumFluidTable .ipsItemStatus {
	position: relative;
	top: -1px;
}

.cForumFluidTable .ipsBadge_pill {
	height: 18px;
	line-height: 18px;
	position: relative;
	top: -2px;
}

.cForumMiniList > li > a.cForumMiniList_selected {
	background: rgb( var(--theme-area_background) );
}