.scope-tables .align-center h2{
    text-align: center;
}

.scope-tables .align-center .section-description{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.scope-tables .tables-container{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scope-tables .scope-table{
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.scope-tables .scope-table.__core{
    border: 2px solid var(--table-border-color, #00bf63);
}

.scope-tables .scope-table.__addon{
    border: 1px solid var(--table-border-color, #cfcfcf);
}

.scope-tables .scope-table-sidebar{
    padding: 20px 16px;
}

.scope-tables .scope-table.__core .scope-table-sidebar{
    border-bottom: 1px solid var(--table-border-color, #00bf63);
}

.scope-tables .scope-table.__addon .scope-table-sidebar{
    border-bottom: 1px solid var(--table-border-color, #cfcfcf);
}

.scope-tables .scope-table-title{
    margin: 0;
    font-family: "Century Gothic", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #000;
    text-transform: capitalize;
}

.scope-tables .scope-table-features{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px 32px;
    background: #fff;
}

.scope-tables .scope-table-col{
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.scope-tables .scope-table-item{
    display: flex;
    align-items: center;
    gap: 12px;
}

.scope-tables .iconbox{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 1000px;
}

.scope-tables .iconbox img{
    display: block;
}

.scope-tables .scope-table .iconbox img{
    width: 32px;
    height: 32px;
}

.scope-tables .scope-table-item-text{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

@media (min-width: 768px){
    .scope-tables .scope-table-sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 32px;
        text-align: center;
    }

    .scope-tables .scope-table-features{
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
        padding: 20px 36px 32px;
    }

    .scope-tables .scope-table-col{
        flex: 1 0 0;
    }
}

@media (min-width: 1240px){
    .scope-tables .scope-table{
        flex-direction: row;
        align-items: stretch;
    }

    .scope-tables .scope-table-sidebar{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 300px;
        flex-shrink: 0;
        padding: 36px 32px;
        text-align: left;
        border-bottom: 0;
    }

    .scope-tables .scope-table.__core .scope-table-sidebar,
    .scope-tables .scope-table.__addon .scope-table-sidebar{
        border-bottom: 0;
    }

    .scope-tables .scope-table-features{
        flex: 1 0 0;
        min-width: 0;
        padding: 36px;
    }

    .scope-tables .scope-table.__core .scope-table-features{
        border-left: 1px solid var(--table-border-color, #00bf63);
    }

    .scope-tables .scope-table.__addon .scope-table-features{
        border-left: 1px solid var(--table-border-color, #cfcfcf);
    }
}
