﻿#pageFAQ {
    & #divBody {
        background-color: #ffffff;
        border-radius: 0.75rem;

        & .collapsible {
            margin: 0;
            border: none;
            box-shadow: none;

            & .collapsible-header {
                font-size: 1rem;
                line-height: 1.75;
                padding: 0.75rem 1rem;
                background-color: transparent;
                display: flex;
                justify-content: space-between;

                & i {
                    line-height: 1.25;
                    margin-right: 0;
                    margin-left: 1rem;
                    display: none;
                    float: right;
                }

                &:not(.active) i.mdi-chevron-down {
                    display: block;
                }

                &.active {
                    & span {
                        font-weight: 600;
                    }

                    & i.mdi-chevron-up {
                        display: block;
                    }
                }
            }

            & li {
                &.active .collapsible-header {
                    border-bottom-color: #458cff;
                    border-bottom-width: 3px;
                }

                &:last-child:not(.active) .collapsible-header,
                &:last-child .collapsible-body {
                    border-bottom: none;
                }
            }


            & .collapsible-body {
                & .table-caption {
                    font-size: 1rem;
                    line-height: 1.75;
                    text-align: center;
                    text-decoration: underline;
                    margin-bottom: 1rem;
                }

                & table {
                    & th,
                    & td {
                        font-size: 0.875rem;
                        line-height: 1.75;
                        text-align: center;
                        border: 1px solid #e2e8f0;
                        border-radius: 0;
                        padding: 0.75rem;
                        vertical-align: top;
                    }

                    & th {
                        font-weight: 600;
                    }
                }

                & #divFAQ1,
                & #divFAQ2,
                & #divFAQ3,
                & #divFAQ4,
                & #divFAQ5 {
                    overflow-x: auto;
                }

                & #divFAQ1 table .col1,
                & #divFAQ2 table .col1 {
                    background-color: darkseagreen
                }

                & #divFAQ1 table .col2,
                & #divFAQ2 table .col3 {
                    background-color: pink;
                }

                & #divFAQ1 table .col3,
                & #divFAQ2 table .col2 {
                    background-color: violet;
                }

                & #divFAQ1 table .col4 {
                    background-color: pink;
                }

                & #divFAQ1 table .col5,
                & #divFAQ2 table .col4 {
                    background-color: skyblue;
                }

                & #divFAQ1 table .col6 {
                    background-color: lightgray;
                }

                & #divFAQ1 table .col2 {
                    width: 91px;
                }

                & #divFAQ1 table .col31,
                & #divFAQ1 table .col51 {
                    width: 64px;
                }

                & #divFAQ1 table .col41 {
                    width: 91px;
                }

                & #divFAQ2 table .col21,
                & #divFAQ2 table .col31,
                & #divFAQ2 table .col41 {
                    width: 91px;
                }

                & #divFAQ1 table td.col1,
                & #divFAQ1 table td.col2,
                & #divFAQ2 table td.col1 {
                    text-align: left;
                }

                & #divFAQ1,
                & #divFAQ2 {
                    & table td.col1 .table .table-cell:first-child {
                        width: 15px;
                    }
                }

                & #divFAQ1 {
                    & table td.col2 .table .table-cell:first-child {
                        width: 25px;
                    }
                }
            }
        }
    }
}