.section-info .info-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-info .info-table thead {
    background-color: #E6E6DC;
    padding: 0 2rem;
    display: flex;
    min-height: 60px;
    align-items: center;
    width: 100%;
}

.section-info .info-table thead tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.section-info .info-table thead tr th {
    width: 100%;
    font-family: var(--bold_font);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color1);
}

.section-info .info-table thead tr th:first-child {
    max-width: 35%;
}

.section-info .info-table tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.section-info .info-table tbody tr {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid #E1E8EB;
}

.section-info .info-table tbody tr:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.section-info .info-table tbody tr.last-visible-row {
    border-bottom: none !important;
}

.section-info .info-table tbody tr.info-row-hidden {
    border-bottom: none !important;
}

.section-info .info-table tbody tr.info-table-row:not(.info-row-hidden):not(.last-visible-row):not(:last-child) {
    border-bottom: 1px solid #E1E8EB;
}

.section-info .info-table tbody tr td {
    width: 100%;
    font-family: var(--main_font);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-info .info-table tbody tr td.value {
    font-size: 0.875rem;
    color: #575757;
}

.section-info .info-table tbody tr td.value.column-1 {
    max-width: 25%;
    min-width: 0;
}

.section-info .info-table tbody tr td.value.column-2 {
    max-width: 40%;
    min-width: 0;
}

.section-info .info-table tbody tr td.value.column-3 {
    max-width: 35%;
    min-width: 0;
}

.section-info .info-table tbody tr td.value p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;
}

.section-info .info-table tbody tr td.value.column-3 p {
    text-align: left;
}

.section-info .info-table tbody tr td.value.column-wrapper {
    max-width: 75%;
    display: flex;
    flex-direction: column;
}

.section-info .info-table tbody tr td.value .lines-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-info .info-table tbody tr td.value .line-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-info .info-table tbody tr td.value .line-column-2 {
    flex: 1;
    max-width: 53.33%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-info .info-table tbody tr td.value .line-column-3 {
    flex: 1;
    max-width: 46.67%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-info .info-table tbody tr td.value .line-column-3 p {
    text-align: left;
}

.section-info .info-table tbody tr.info-row-hidden {
    display: none;
}

.section-info .info-table tbody tr.info-table-row {
    transition: opacity 0.4s ease, max-height 0.4s ease, border-bottom 0.3s ease;
    opacity: 1;
}

.section-info .info-table tbody tr.info-table-row.info-row-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    border-bottom: none !important;
}

.section-info .info-table-toggle-wrapper {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    width: 100%;
    display: block;
}

.section-info .info-table-toggle-btn {
    color: var(--color1);
    border: none;
    padding: 0.5rem 1.25rem;
    font-family: var(--medium_font), Arial, sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    background-color: transparent;
}

/* .section-info .info-table-toggle-btn:hover {
    border-bottom: 1px solid var(--color1);
} */

.section-info .info-table-toggle-btn:active {
    transform: translateY(0);
}

.section-info .info-table-toggle-btn .toggle-text {
    font-weight: 500;
}

.section-info .info-table-toggle-btn .toggle-icon {
    font-size: 5px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-info .info-table-less-btn {
    color: var(--color1);
}

/* .section-info .info-table-less-btn:hover {
    border-bottom: 1px solid var(--color1);
} */


@media screen and (max-width: 991.99px) {
    .section-info .info-table thead {
        padding: 0 0.875rem;
    }

    .section-info .info-table tbody tr {
        padding: 26px 0.875rem;
        display: grid;
        grid-template-columns: 65% 35%;
        gap: 1rem;
    }

    .section-info .info-table tbody tr td.value.column-1 {
        width: 100%;
        max-width: 100%;
        text-align: center;
        grid-column: 1 / -1;
        grid-row: 1;
        columns: var(--color1);
    }

    .section-info .info-table tbody tr td.value.column-2 {
        width: 100%;
        max-width: 100%;
        grid-column: 1;
        grid-row: 2;
    }

    .section-info .info-table tbody tr td.value.column-3 {
        width: 100%;
        max-width: 100%;
        grid-column: 2;
        grid-row: 2;
    }

    .section-info .info-table thead tr th:last-child {
        text-align: center;
    }

    .section-info .info-table tbody tr td.value.column-wrapper {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .section-info .info-table tbody tr td.value .line-column-2,
    .section-info .info-table tbody tr td.value .line-column-3 {
        max-width: 100%;
    }
}