.checkbox-table {
    @media (max-width: 768px) {
        display: none;
    }
    .container {
        .table_heading {
            margin-bottom: 130px;
            h2 {
                margin-block: 0 24px;
                max-width: 970px;
            }
            .text {
                max-width: 550px;
            }
        }
        .table_topnote {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            text-align: right;

            @media (max-width: 1024px) {
                display: none;
            }

            p {
                max-width: 710px;
                margin-left: auto;
            }
            &.small {
                p {
                    max-width: 550px;
                }
            }
        }

        table {
            border-collapse: separate;
            border-spacing: 0;
            margin: 0px auto;
            width: 100%;
            max-width: 1000px;
            font-family: Arial, sans-serif;
            margin-bottom: 18px;
            @media (max-width: 1024px) {
                padding-right: 20px;
            }
        }

        th,
        td {
            border: 0.5px solid #181818;
            width: 20%;
            height: 80px;
            text-align: center;
            vertical-align: middle;
            padding: 8px 12px;
            margin: 0;
        }

        thead th {
            background-color: transparent;
        }

        thead th:first-child {
            border: none !important;
            @media (max-width: 1024px) {
                border-top: 1px solid #181818 !important;
                border-left: 1px solid #181818 !important;
                border-top-left-radius: 26px;
            }
        }

        thead th:nth-child(2) {
            border-left: 1px solid #181818;
        }

        tbody tr:first-child td:first-child {
            border-top: 1px solid #181818;
        }

        thead tr:first-child th {
            border-top: 1px solid #181818;
        }
        tbody tr:last-child td {
            border-bottom: 1px solid #181818;
        }
        tr th:first-child,
        tr td:first-child {
            border-left: 1px solid #181818;
        }
        tr th:last-child,
        tr td:last-child {
            border-right: 1px solid #181818;
        }

        thead th:not(:first-child) {
            border-top-left-radius: 26px;
            border-top-right-radius: 26px;
            @media (max-width: 1024px) {
                border-top-left-radius: 0px;
                border-top-right-radius: 0px;
            }
        }
        tr th:last-child {
            border-top-right-radius: 26px;
        }

        tbody tr:last-child td:first-child {
            border-bottom-left-radius: 26px;
        }
        tbody tr:last-child td:last-child {
            border-bottom-right-radius: 26px;
        }
        h3 {
            margin-block: 0;
            max-width: 200px;
            width: 200px;
            &.smaller {
                font-size: 40px;
                margin-left: -12px;
                letter-spacing: -2px;
                margin-bottom: -30px;
                @media (max-width: 1024px) {
                    font-size: 34px;
                    margin: 0 auto;
                }
            }
            &.medium {
                font-size: 75px;
                line-height: 60%;
                margin-left: -18px;
                letter-spacing: -4px;
                @media (max-width: 1024px) {
                    font-size: 55px;
                    margin: 0 auto;
                }
            }
            &.large {
                font-size: 120px;
                line-height: 30%;
                margin-top: -30px;
                margin-left: -20px;
                letter-spacing: -6px;
                @media (max-width: 1024px) {
                    font-size: 80px;
                    margin: 0 auto;
                }
            }
        }
        h4 {
            margin-block: 0;
            font-size: 20px;
            padding-inline: 10px;
        }
        .table_list {
            max-width: 1000px;
            margin: 0px auto;
            @media (max-width: 1024px) {
                display: none;
            }

            .list_header {
                border-radius: 20px;
                border: 1px solid var(--c-black);
                width: 100%;
                padding: 16px 20px;
                margin-bottom: 12px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 80px;

                h4 {
                    margin-block: 0;
                    font-size: 30px;
                }
            }
            .lists {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                ul {
                    list-style-type: none;
                    display: flex;
                    flex-direction: column;
                    gap: 3px;
                    margin: 0;
                    padding: 0;
                    margin-left: 40px;

                    li {
                        position: relative;
                        color: #181818;
                        font-family: Inter;
                        font-size: 13px;
                        font-style: italic;
                        font-weight: 400;
                        line-height: 130%;
                        letter-spacing: -0.36px;

                        @media (max-width: 1024px) {
                            max-width: unset;
                        }

                        &:before {
                            content: '';
                            position: absolute;
                            left: -22px;
                            top: 8px;
                            transform: translateY(-50%);
                            width: 15px;
                            height: 15px;
                            border: 1px solid #181818;
                            border-radius: 100%;
                        }
                    }
                }
            }
        }
    }
}
.checkbox-table-mobile {
    display: none;
    @media (max-width: 768px) {
        display: block;
    }
    .container {
        border: 1px solid var(--c-gray-900);
        border-radius: 36px;
        table {
            width: 100%;
            font-family: var(--ff-secondary);
            thead {
                th {
                    padding: 20px;
                    font-size: var(--fs-2xl);
                    text-align: center;
                    border-bottom: 1px solid var(--c-gray-900);
                }
            }
            tbody {
                tr {
                    td {
                        padding: 12px 20px;
                        font-weight: 700;
                        border-bottom: 1px solid var(--c-gray-900);
                        &:first-child {
                            border-right: 1px solid var(--c-gray-900);
                        }
                    }
                    &:last-child {
                        td {
                            padding-bottom: 20px;
                            border-bottom: none;
                        }
                    }
                }
            }
        }
    }
}
