.block-table .table-wrapper {
    position: relative;
    display: flex;
    gap: 1.563rem;
    flex-direction: column;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-top: 4.25rem;
    margin-bottom: 1.813rem;
}
.block-table .table-wrapper .table-item {
    background: var(--bs-white);
    border-radius: 0.625rem;
    padding: 0 1.25rem;
}
.block-table .table-wrapper .table-item .table-row {
    padding: 0.688rem 0 0.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid transparent;
}
.block-table .table-wrapper .table-item .table-row:not(:last-child) {
    border-bottom-color: var(--color-light-gray);
}
.block-table .table-wrapper .table-item .table-row .title {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.005em;
}
.block-table .table-wrapper .table-item .table-row .feature_name {
    padding-right: 1.875rem;
    font-size: 1rem;
}
.block-table .table-wrapper .table-item-wrapper {
    position: absolute;
    top: -1.75rem;
    bottom: -1.813rem;
    display: flex;
    right: 2.25rem;
    gap: 0.75rem;
}
.block-table .table-wrapper .table-item.option-table {
    width: 8.188rem;
    border: 4px solid var(--color-secondary);
    border-radius: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    padding-bottom: 1.563rem;
}
.block-table .table-wrapper .table-item.option-table .table-row {
    display: flex;
    padding: 0;
    height: 3.125rem;
    align-items: center;
    justify-content: center;
}
.block-table .table-wrapper .table-item.option-table .table-row.title {
    background: var(--color-secondary);
    color: var(--bs-white);
    padding: 1.5rem 0;
    border: none;
    height: auto;
}
.block-table .table-wrapper .table-item.option-table .table-row .title {
    line-height: 1.625rem;
}

.block-table .table-wrapper .table-item.option-table .table-row.yes {
    background: #CCFFDC;
}

.block-table .table-wrapper .table-item-wrapper:not(.item0) .table-row-container {
    margin-top: 4.688rem;
}

/* with 2 col */
.block-table .table-wrapper .table-item-wrapper.count2 {
    right: 4.563rem;
    gap: 1.625rem;
}
.block-table .table-wrapper .table-item-wrapper.count2 .table-item.option-table {
    width: 9.25rem;
}

/* Responsive */
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
    .tab-content .teasers-tabs-wrapper .icon {
        width: 8.313rem;
        background-size: 5rem;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .block-table .table-wrapper .table-item-wrapper {
        right: 1.25rem;
    }
    .block-table .table-wrapper .table-item.option-table {
        width: 6rem;
    }
    .block-table .table-wrapper .table-item.option-table .table-row .title {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .block-table .table-wrapper .table-item-wrapper {
        right: 1.25rem;
    }
    .block-table .table-wrapper .table-item.option-table {
        width: 6rem;
    }
    .block-table .table-wrapper .table-item.option-table .table-row .title {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .block-table .ce-table-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: calc(100% + 1rem);
    }
    .block-table .ce-table-wrapper .table-wrapper {
        width: 46.375rem;
    }
}