.table-wrapper {
    width: 100%;
    padding: 0px 1px;    /* hot fix for better time */
    overflow-x: auto;
}

.article-content-wrapper table, .table-info-styled {
    --czo-lightblue: #E7EEF3;
    --bs-body-color: #000;


    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.article-content-wrapper table tr,
.article-content-wrapper table th,
.table-info-styled.sm-padding tr,
.table-info-styled.sm-padding th {
    padding: 15px !important;
}

.table-info-styled.a-block a {
    display: block;
}

@media only screen and (max-width: 768px) {
    .article-content-wrapper table tr,
    .table-info-styled tr {
        border: none !important;
    }
}

.article-content-wrapper table td,
.table-info-styled td {
    border: 2px solid var(--czo-lightblue);
    padding: 20px;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
}

@media only screen and (max-width: 768px) {
    .article-content-wrapper table td,
    .table-info-styled td {
        border: 1px solid var(--czo-lightblue) !important;
        height: 38px;
    }

    .article-content-wrapper table td:last-child,
    .table-info-styled td:last-child {
        border: 1px solid var(--czo-lightblue) !important;
    }
}

.article-content-wrapper table th,
.table-info-styled th {
    background-color: var(--czo-lightblue);
    border: 2px solid var(--czo-lightblue);
    padding: 20px;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    color: var(--bs-body-color);
}