

/* 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 */
/* /local/templates/nle/components/bitrix/news/usefulinfo/usefulinfo_styles.css?17646734676757 */
