

/* Start:/local/templates/nle/components/bitrix/news/usefulinfo/usefulinfo_styles.css?17646734676757*/
.component_usefulinfo {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.component_usefulinfo h1 {
    font-size: 30px;
    margin: 3px 0 15px;
    padding-bottom: 12px;
    line-height: 1.2;
    border-bottom: 1px solid #dedede;
}

.component_usefulinfo .content {
    flex: 1 0 75%;
    width: 75%;
}

.component_usefulinfo .content a {
    color: var(--color-red-dark);
    text-decoration: underline;
}
.component_usefulinfo .content a:hover {
    color: var(--color-red);
}

.component_usefulinfo .content ol,
.component_usefulinfo .content ul {
    margin-left: 10px;
    padding-left: 0;
}
.component_usefulinfo .content ol li,
.component_usefulinfo .content ul li {
    margin: 10px;
}
.component_usefulinfo .content ol {
    list-style-type: decimal;
}
.component_usefulinfo .content ul {
    list-style-type: disc;
}

/* Menu */
.component_usefulinfo .menu {
    width: 210px;
    margin-right: 2vw;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.component_usefulinfo .menu ul,
.component_usefulinfo .menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.component_usefulinfo .menu > ul > li > a,
.component_usefulinfo .menu ul li > div {
    position: relative;
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
    line-height: 1.1;
    cursor: pointer;
    font-size: 14px;
}

.component_usefulinfo .menu > ul > li > ul {
    border-bottom: 1px solid #E7E7E7;
}
.component_usefulinfo .menu > ul > li > ul > li > a {
    padding: 4px 10px;
}

.component_usefulinfo .menu ul li > div + ul {
    margin-top: -5px;
}

.component_usefulinfo .menu ul li ul {
    display: none;
}

.component_usefulinfo .menu a:hover,
.component_usefulinfo .menu li.active > a {
    background: #f20f2a;
    color: #fff;
    transition: 0.2s;
}

.component_usefulinfo .menu li.active {
    background: #eeeeee;
}

/* Button */
.component_usefulinfo .button {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: 1px solid #949393;
    border-radius: 20px;
    margin: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Roboto', sans-serif;
    transition: all 200ms ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.23);
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    padding: 8px 14px;
    position: relative;
    background: #006363;
    border-color: #006363;
}

.component_usefulinfo .button:hover {
    background: #1D7373;
    border-color: #1D7373;
    box-shadow: none;
}

/* Toggle menu (mobile only) */
.component_usefulinfo .menu-toggle {
    display: none;
}


/**/
.scrollable-table {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 1em 0;
    cursor: grab; /* ← показываем, что можно тянуть */
    position: relative;
}

.scrollable-table.grabbing {
    cursor: grabbing;
    user-select: none;
}

.scrollable-table table {
    width: 100%;
    max-width: 1150px;
    border-collapse: collapse;
    border: 1px solid var(--color-gray-dark);
}

.scrollable-table td,
.scrollable-table th {
    white-space: normal;
    word-wrap: break-word;
    padding: 8px;
    vertical-align: top;
    background: #ffffffee;
    border: 1px solid var(--color-gray-dark);
}
.scrollable-table th {
    font-weight: 600;
}
@media (max-width: 1200px) {

    .scrollable-table table {
        max-width: 80vw;
    }
}
/**/

/* Mobile styles */
@media (max-width: 1000px) {
    .scrollable-table td,
    .scrollable-table th {
        min-width: 150px;
    }
    .component_usefulinfo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin: 0 -15px 0;
        width: calc(100% + 30px);
        padding: 0 15px;
        box-sizing: border-box;
    }

    .component_usefulinfo h1 {
        font-size: calc(17px + 1vw);
        margin-top: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        line-height: 1.1;
    }

    .menu-wrapper {
        position: relative;
        width: 100%;
        border-radius: 10px;
        padding: 0;
        background: #fff;
        box-shadow: 0 0 3px #00000033;
        color: var(--color-gray-darker);
        box-sizing: border-box;
    }

    .menu-toggle-button {
        display: block;
        padding: 8px 12px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        margin-bottom: 0;
        border-radius: 4px;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
    }

    .menu-toggle-button::after {
        content: '';
        display: block;
        position: absolute;
        z-index: 11;
        top: 50%;
        margin-top: -15px;
        right: 10px;
        width: 30px;
        height: 30px;
        background: center/12px no-repeat url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 3L6 8L1 3' stroke='%238E8E8E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    .menu-toggle:checked + .menu-toggle-button::after {
        transform: rotate(180deg);
    }

    .menu-toggle:checked + .menu-toggle-button {
        height: 55px;
    }

    .menu-toggle:checked ~ .menu {
        margin-top: 60px;
        box-shadow: 0 4px 3px #00000025;
        padding: 10px;
    }

    .component_usefulinfo .menu {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .component_usefulinfo .content {
        flex: 0 0 100%;
        width: 100%;
    }

    .component_usefulinfo .menu ul li:not(.active) {
        display: none;
    }

    .component_usefulinfo .menu li.active {
        background: transparent;
        display: block;
        position: relative;
        border-radius: 10px;
        padding: 10px 30px 10px 10px;
    }

    .menu-toggle:checked ~ .menu ul li {
        display: block;
    }

    .menu-toggle:checked ~ .menu ul li.active {
        position: absolute;
        top: 0;
        left: 0;
    }

    .component_usefulinfo .menu li.active > a {
        color: var(--color-red);
        background: transparent;
        font-weight: normal;
    }

    .component_usefulinfo .menu a:hover {
        background: #f6f6f6;
        color: var(--color-red);
        border-radius: 10px;
        transition: 0.2s;
    }

    .component_usefulinfo .leftmenu li {
        border-bottom: none;
        box-shadow: none;
    }
}


@media (max-width: 415px) {
    .component_usefulinfo h1 {
        font-size: calc(15px + 1vw);
    }
}
/* End */


/* Start:/local/templates/nle/components/bitrix/news/usefulinfo/bitrix/news.detail/flat/style.css?16819794714088*/
@media (min-width: 992px) {
	.bx-newsdetail .bx-newsdetail-container:nth-child(3n+1) {
		clear: both;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.bx-newsdetail .bx-newsdetail-container:nth-child(2n+1) {
		clear: both;
	}
}
/* POST FORMATS */
.bx-newsdetail-img,
.bx-newsdetail-audio,
.bx-newsdetail-youtube,
.bx-newsdetail-slider {
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}
.bx-newsdetail-slider img,
.bx-newsdetail-img img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
}
.bx-newsdetail-video {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0.7;
	z-index: 1;
	-webkit-transition: opacity .3s ease;
	   -moz-transition: opacity .3s ease;
	    -ms-transition: opacity .3s ease;
	     -o-transition: opacity .3s ease;
	        transition: opacity .3s ease;
	background: url("/local/templates/nle/components/bitrix/news/usefulinfo/bitrix/news.detail/flat/images/bx-video.png") no-repeat center;
}
.bx-newsdetail-video:hover {
	opacity: 1;
}
/* POST FORMATS /// SLIDER */
.bx-newsdetail-slider {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.bx-newsdetail-slider-container {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
.bx-newsdetail-slider-slide {
	float: left;
	z-index: 100;
}
.bx-newsdetail-slider-arrow-container-left,
.bx-newsdetail-slider-arrow-container-right {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 15%;
	cursor: pointer;
}
.bx-newsdetail-slider-arrow-container-left {
	left: 0;
}
.bx-newsdetail-slider-arrow-container-right {
	right: 0;
}
.bx-newsdetail-slider-arrow {
	position: absolute;
	line-height: 34px;
	vertical-align: middle;
	color: #fff;
	cursor: pointer;
	font-size: 48px;
	height: 48px;
	width: 20px;
	top: 50%;
	margin-top: -24px;
	z-index: 110;
	opacity: .5;
	text-shadow:0 0 2px rgba(0,0,0,.5);
}
.bx-newsdetail-slider-arrow-container-left:hover .bx-newsdetail-slider-arrow,
.bx-newsdetail-slider-arrow-container-right:hover .bx-newsdetail-slider-arrow {
	color: #FFF;
	display: block;
	opacity: 1;
}
.bx-newsdetail-slider-arrow-container-left .bx-newsdetail-slider-arrow {
	left: 20px;
}
.bx-newsdetail-slider-arrow-container-right .bx-newsdetail-slider-arrow {
	right: 20px;
}
.bx-newsdetail-slider-control {
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%;
	bottom: 10px;
	z-index: 110;
	text-align: center;
	word-spacing: -4px;
}
.bx-newsdetail-slider-control li {
	display: inline-block;
	border-radius: 50%;
	background: #fff;
	width: 10px;
	height: 10px;
	word-spacing: -4px;
	margin: 0 3px;
	opacity: .5;
}
.bx-newsdetail-slider-control li:hover,
.bx-newsdetail-slider-control li.current {
	background: #FFF;
	opacity: 1;
}
.bx-newsdetail-slider-arrow,
.bx-newsdetail-slider-control li {
	-webkit-transition: opacity .3s ease;
	   -moz-transition: opacity .3s ease;
	    -ms-transition: opacity .3s ease;
	     -o-transition: opacity .3s ease;
	        transition: opacity .3s ease;
}
/* /// */
.bx-newsdetail-title,
.bx-newsdetail-title a {
	color: #000;
	margin: 0;
	font-weight: 600;
	padding: 2px 0 15px;
	font-size: 18px;
	border-bottom: none;
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.bx-newsdetail-title a:hover {
	text-decoration: none;
	border-bottom-color: transparent;
}
.bx-lg .bx-newsdetail-title {
	font-size: 24pt;
}
.bx-md .bx-newsdetail-title {
	font-size: 20pt;
}
.bx-xs .bx-newsdetail-title {
	font-size: 18pt;
}
.bx-newsdetail-separator,
.bx-newsdetail-view,
.bx-newsdetail-date,
.bx-newsdetail-comments,
.bx-newsdetail-author,
.bx-newsdetail-other {
	color: #a4a4a4;
	font-size: 13px;
	padding-bottom: 5px;
	white-space: nowrap;
}
.bx-newsdetail-rating,
.bx-newsdetail-separator,
.bx-newsdetail-date{
	display: inline-block;
}
.bx-newsdetail-separator {
	margin: 0 10px;
}
.bx-newsdetail-view i.fa,
.bx-newsdetail-date i.fa,
.bx-newsdetail-comments i.fa,
.bx-newsdetail-author i.fa,
.bx-newsdetail-tags i.fa,
.bx-newsdetail-other i.fa {
	width: 13px;
	color: #b4b4b4;
}
.bx-newsdetail-tags {
	color: #a4a4a4;
	font-size: 13px;
	padding-bottom: 5px;
}
.bx-newsdetail-content {
	font-size: 14px;
	margin-bottom: 5px;
}

/* End */
/* /local/templates/nle/components/bitrix/news/usefulinfo/usefulinfo_styles.css?17646734676757 */
/* /local/templates/nle/components/bitrix/news/usefulinfo/bitrix/news.detail/flat/style.css?16819794714088 */
