.rules {
    margin: 40px 20px;
}

.rules h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}

.rules ol li{
    font-size: 18px;
    font-weight: bold;
}

.rules p {
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
    text-align: justify;
}

.rules table p {
    text-align: center;
}

.rules ul{
    list-style: initial;
    margin: 20px 0;
    margin-left: 20px;
}

.rules ul li{
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
}

.rules table tr td {
    font-weight: normal;
    text-align: center;
    border: 1px solid #000;
    padding: 2px;
}

.rules table tr th {
    font-weight: bold;
    text-align: center;
    border: 1px solid #000;
    padding: 2px;
}

.tableBlock {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #e7e7e8; */
    /* border-top: 2px solid #fccc2a; */
    padding: 0;
    /* box-shadow: 0 0 18px 0 rgba(212, 216, 222, 0.4); */
    /* max-width: 800px; */
    width: 100%;
    margin: 20px auto;
}

.tableBlock__scroll {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}


@supports (-webkit-overflow-scrolling: touch) {
    .tableBlock__scroll {
        max-width: 320px;
        margin: 0 auto;
    }
}

.tableBlock__scroll::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.tableBlock__scroll::-webkit-scrollbar {
    height: 6px;
    background-color: #f5f5f5;
}

.tableBlock__scroll::-webkit-scrollbar-thumb {
    background-color: #e8d20c;
    border-radius: 3px;
}

.tableBlock__content {
    display: grid;
    min-width: 552px;
}

@media(min-width: 768px) {
    .tableBlock {
        padding: 50px;
    }
}

@media(min-width: 1024px) {
    .bodySimple .bodyContent {
        min-height: calc(100vh - 292px);
    }
}

@media(min-width: 1600px) {
    .tableBlock__content {
        min-width: initial;
    }

    .tableBlock__scroll {
        overflow-x: initial;
        overflow-y: initial;
    }
}