/*.tournament-list {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style: none;*/
/*}*/

/*.tournament-item:not(:last-child) {*/
/*    margin-bottom: 10px;*/
/*}*/

/*.tournament-table {*/
/*    border-collapse: collapse;*/
/*    border-spacing: 0;*/
/*    border-radius: 8px;*/
/*    color: #000;*/
/*    contain: content;*/
/*    overflow: hidden;*/
/*    text-align: center;*/
/*    width: 100%;*/
/*    background-image: linear-gradient(103deg, #108de7 -30%, #0855c4 100%);*/
/*    table-layout: fixed;*/
/*    font-size: 14px;*/
/*}*/

/*.tournament-table-header {*/
/*    color: #fff;*/
/*}*/

/*.tournament-table-header .odd-cell {*/
/*    color: #b1d1ff;*/
/*    background: none;*/
/*}*/

/*.tournament-table-header .special:before {*/
/*    display: none;*/
/*}*/

/*.tournament-table-header-row {*/
/*    height: 40px;*/
/*    background: none;*/
/*}*/

/*.tournament-cell {*/
/*    font-size: 14px;*/
/*    line-height: 1.1;*/
/*    text-align: left;*/
/*    position: relative;*/
/*}*/

/*.tournament-cell__inner {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 10px 15px;*/
/*}*/

/*.match-row {*/
/*    background-color: #edf2ff;*/
/*    user-select: none;*/
/*}*/

/*.match-row:hover {*/
/*    background-color: #141b2e;*/
/*    color: #fff;*/
/*}*/

/*.match-row:hover .odd-cell {*/
/*    background-color: #141b2e;*/
/*}*/

/*.match-row:hover .odd-cell.special {*/
/*    background-color: #262d37;*/
/*}*/

/*.match-row:not(:first-child) {*/
/*    border-top: 1px solid #090f1e;*/
/*}*/

/*.odd-cell {*/
/*    background-color: #dce4f9;*/
/*    -webkit-user-select: none;*/
/*    -moz-user-select: none;*/
/*    user-select: none;*/
/*    position: relative;*/
/*}*/

/*.odd-cell {*/
/*    position: relative;*/
/*    font-size: 12px;*/
/*    min-width: 30px;*/
/*    text-align: center;*/
/*    text-transform: uppercase;*/
/*    width: 6%;*/
/*}*/

/*.odd-tip {*/
/*    padding: 6px;*/
/*}*/

/*.colspan-2 {*/
/*    width: 12%;*/
/*}*/

/*.colspan-3 {*/
/*    width: 18%;*/
/*}*/

/*.odd-cell .odd-coefficient {*/
/*    border-radius: 8px;*/
/*    font-weight: 700;*/
/*    letter-spacing: -.2px;*/
/*    padding: 6px 0;*/
/*    text-align: center;*/
/*}*/

/*.odd-cell.active .odd-coefficient {*/
/*    background-image: linear-gradient(103deg, #108de7 -30%, #0855c4 100%);*/
/*    color: #fff;*/
/*}*/

/*.odd-cell:before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background-color: #141b2e00;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/

/*.odd-cell:not(.special):hover .odd-coefficient {*/
/*    background-color: #9ea5b4;*/
/*}*/

/*.odd-cell.special {*/
/*    background-color: #b9c5e3;*/
/*}*/

/*.match-teams {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.match-row-date {*/
/*    position: relative;*/
/*    min-width: 74px;*/
/*    width: 6%;*/
/*}*/

/*.match-row-date time {*/

/*}*/

/*.match-separator {*/
/*    background-image: linear-gradient(103deg, #108de7 -30%, #0855c4);*/
/*    border-radius: 1.5px;*/
/*    flex: none;*/
/*    height: 2rem;*/
/*    margin: 2px 6px;*/
/*    opacity: .8;*/
/*    width: 3px;*/
/*}*/

/*.match-info {*/
/*    align-items: center;*/
/*    display: flex;*/
/*    padding: 5px;*/
/*}*/

/*.match-info time {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.match-teams-container {*/
/*    text-align: left;*/
/*    flex-grow: 1;*/
/*}*/

/* New styles */
.sr-block table {
    min-width: 1024px;
}

.sr-block td {
    text-align: center;
}

.sr-block .odd-cell {
    background-color: #2ecc71;
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.sr-block .odd-cell:hover {
    opacity: .7;
}

.sr-block .cell-live {
    color: #2ecc71;
    text-align: center;
}

/* Predict */
:root {
    --predict-bg: #3e3e3e;
    --predict-color: #FFF;
    --predict-green: #4caf50;
    --predict-red: #c4002d;
    --predict-border-radius: 12px;
}

.predict {
    color: var(--predict-color);
    background: var(--predict-bg);
    border-radius: var(--predict-border-radius);
    padding: 24px !important;
    margin-top: 12px;
}

.predict__title {
    color: var(--predict-color);
    text-align: center;
}

.predict__teems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.predict__team1,
.predict__team2 {
    font-weight: 600;
}

.predict__team1 span,
.predict__team2 span {
    color: var(--predict-red);
}

.predict__team1 span._win,
.predict__team2 span._win {
    color: var(--predict-green);
}

.predict__team2 {
    text-align: right;
}

.predict__bar {
    width: 100%;
    height: 5px;
    grid-row: 2/3;
    grid-column: 1/-1;
}

/* Markets list */

:root {
    --markets-bg: #242424;
    --markets-top-bg: #c4002d;
    --markets-top-color: #FFF;
    --markets-border: 1px solid #c4002d;
    --markets-cells-border: 1px solid #c4002d50;
    --markets-border-radius: 6px;
    --market-bet-bg: #FFFFFF30;
    --market-bet-bg-hover: #FFFFFF70;
    --market-bet-color: #FFF;
}

.markets__list tbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.market__item {
    display: flex;
    flex-wrap: wrap;
    border: var(--markets-border);
    border-radius: var(--markets-border-radius);
    background: var(--markets-bg);
    overflow: hidden;
}

.market__item th {
    color: var(--markets-top-color);
    background: var(--markets-top-bg);
    flex: 1 1 100%;
    width: 100%;
    padding: 6px;
}

.market__item td {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
    width: 50%;
    padding: 6px;
}

.market__item td:not(:last-child) {
    border-right: var(--markets-cells-border);
}

.market__bet {
    color: var(--market-bet-color);
    padding: 4px;
    border-radius: var(--markets-border-radius);
    background: var(--market-bet-bg);
    cursor: pointer;
}

.market__bet:hover {
    background: var(--market-bet-bg-hover);
}

/* live matches */
.live-matches tbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.live-matches__item {
    display: flex;
    flex-direction: column;
}

.matches-list {
    margin-top: 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-left: 0;
}

.matches-list .match-card__odds:not(:first-child) {
    display: none
}

.matches-list .match-card__table th:first-child {
    /* visibility:hidden; */
}

.matches-list .match-card__odds_s .match-card__book img {
    max-width: 44px
}

.matches-list .match-card__odds_s .match-card__book-name {
    font-size: 14px
}

.matches-list .match-card__odds_s .match-card__odds-btn {
    min-height: 44px
}

.matches-list .match-card__odds_b .match-card__book img {
    max-width: 52px
}

.matches-list .match-card__odds_b .match-card__book-name {
    font-size: 18px
}

.matches-list .match-card__odds_b .match-card__odds-btn {
    min-height: 52px
}

@media (max-width: 991.9px) {

    .matches-list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr)
    }

    .matches-list .match-card__odds_b .match-card__book img {
        max-width: 44px
    }

    .matches-list .match-card__odds_b .match-card__book-name {
        font-size: 14px
    }
}

@media (max-width: 575.9px) {
    .matches-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-top: 10px
    }
}

/* Match card */

.match-card {
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.match-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #1c1c1c;
    text-align: center
}

.match-card__category {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #7e7e7e;
    text-align: center;
    margin-top: 8px
}

.match-card__main {
    padding-block: 12px;
    margin-block: 12px;
    border-top: 1px solid rgba(0, 0, 0, .1019607843);
    border-bottom: 1px solid rgba(0, 0, 0, .1019607843);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px
}

.match-card__team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px
}

.match-card__team img {
    max-width: 76px;
    height: auto
}

.match-card__team-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #1c1c1c;
    text-align: center
}

.match-card__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #7e7e7e;
    text-align: center
}

.match-card__date b,
.match-card__date span,
.match-card__date strong {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #1c1c1c
}

.match-card__descr {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #1c1c1c;
    margin-bottom: 12px
}

.match-card>.btn {
    width: 100%;
    padding: 15px;
    margin-top: 12px;
    margin-top: 6px
}

.match-card>.btn:first-of-type {
    margin-top: 12px
}

.match-card__list {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px
}

.match-card__table {
    table-layout: auto;
    width: 100%;
    border-spacing: 0 2px;
    overflow: hidden;
    margin-top: auto
}

.match-card__table td {
    padding-block: 0;
    padding-inline: 0 0
}

.match-card__table td:first-child {
    padding-left: 0
}

.match-card__table td:last-child {
    padding-right: 0
}

.match-card__table td:not(:first-child) {
    padding-left: 3px
}

.match-card__table td:not(:last-child) {
    padding-right: 3px
}

.match-card__table th {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #848484;
    text-align: center
}

.match-card__table th:first-child {
    text-align: center;
}

.match-card__odds-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 6px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.match-card__odds-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 75px;
    width: 75px
}

.match-card__odds-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    background: #f5f5f5;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1c1c1c;
    text-align: center
}

.match-card__odds-btn_accent {
    background: var(--accent-2);
    color: #fff;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity
}

.match-card__odds-btn_accent:active {
    opacity: .6
}

.match-card__book {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 6px
}

.match-card__book img {
    max-width: 48px;
    height: auto
}

.match-card__book-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1c1c1c;
    text-align: left
}

.matches-list .match-card__odds_s .match-card__book img {
    max-width: 44px
}

.matches-list .match-card__odds_s .match-card__book-name {
    font-size: 14px
}

.matches-list .match-card__odds_s .match-card__odds-btn {
    min-height: 44px
}

.matches-list .match-card__odds_b .match-card__book img {
    max-width: 52px
}

.matches-list .match-card__odds_b .match-card__book-name {
    font-size: 18px
}

.matches-list .match-card__odds_b .match-card__odds-btn {
    min-height: 52px
}

@media (max-width: 991.9px) {
    .match-card__team img {
        max-width: 46px
    }

    .matches-list .match-card__odds_b .match-card__book img {
        max-width: 44px
    }

    .matches-list .match-card__odds_b .match-card__book-name {
        font-size: 14px
    }
}

@media (hover: hover) {
    .match-card__odds-btn_accent:hover {
        opacity: .6
    }

    .match-card__odds-btn_accent:focus {
        opacity: .6
    }
}


.match-card__score-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.match-card__score-row:last-child {
    margin-bottom: 0;
}

.match-card__score-label {
    font-weight: bold;
    color: #666;
}

.match-card__score-value {
    font-weight: bold;
}

.match-status {
    margin-left: 10px;
    padding: 2px 6px;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 0.8em;
    text-transform: capitalize;
}

.matches-list.live .match-card__main {
    border-bottom: 0;
    margin-bottom: 0;
}

/* Section prediction */

.section-prediction {
    position: relative;
    padding-block: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 534px
}

.section-prediction::before,
.section-prediction__bg {
    position: absolute;
    top: 0;
    left: calc((100vw - 100%)/ 2 * -1);
    width: 100vw;
    height: 100%;
    max-width: 100vw
}

.section-prediction::before {
    content: "";
    z-index: -1;
    background: rgba(25, 46, 60, .8)
}

.section-prediction__bg {
    z-index: -2;
    -o-object-fit: cover;
    object-fit: cover
}

.section-prediction .match-card {
    padding: 0;
    background: 0 0
}

.section-prediction .match-card__title {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-align: center
}

.section-prediction .match-card__category {
    margin: 0;
    margin-top: 12px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #e7e7e7;
    text-align: center
}

.section-prediction .match-card__main {
    padding: 0;
    border-bottom: 0;
    margin: 0;
    margin-top: 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px
}

.section-prediction .match-card__team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px
}

.section-prediction .match-card__team img {
    max-width: 106px;
    height: auto
}

.section-prediction .match-card__team-name {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center
}

.section-prediction .match-card__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #e7e7e7;
    text-align: center
}

.section-prediction .match-card__date b,
.section-prediction .match-card__date span,
.section-prediction .match-card__date strong {
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    color: #fff
}

.section-prediction .match-card__descr {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    margin-top: 24px
}

.section-prediction .match-card__percentage {
    color: #fff;
}

.section-prediction .match-card__table {
    display: none
}

.section-prediction .match-card>.btn {
    width: 100%;
    min-height: 53px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    margin-top: 8px
}

.section-prediction .match-card>.btn:first-of-type {
    margin-top: 16px
}

@media (max-width: 575.9px) {
    .section-prediction {
        padding-block: 30px
    }

    .section-prediction .match-card__title {
        font-size: 22px;
        line-height: 24px
    }

    .section-prediction .match-card__category {
        font-size: 16px
    }

    .section-prediction .match-card__main {
        margin-top: 20px;
        padding-inline: 0
    }

    .section-prediction .match-card__team img {
        max-width: 50px
    }

    .section-prediction .match-card__team-name {
        font-size: 18px
    }

    .section-prediction .match-card__date {
        font-size: 14px
    }

    .section-prediction .match-card__date b,
    .section-prediction .match-card__date span,
    .section-prediction .match-card__date strong {
        font-size: 22px;
        line-height: 24px
    }

    .section-prediction .match-card__descr {
        margin-top: 20px
    }

    .section-prediction .match-card>.btn:first-of-type {
        margin-top: 12px
    }
}

.bg-block {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
}

.article-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.article-block .post-info {
    margin-bottom: 0;
}

.article-block table:not([class]) {
    width: 100%;
    table-layout: auto;
    border-spacing: 0 4px;
    overflow: hidden;
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--black-text)
}

.article-block tr {
    border-color: white;
    border-style: solid;
    border-width: 4px 0;
}

.article-block table:not([class]) tr {
    background: #f7f8fd
}

.article-block table:not([class]) tr td:first-child,
.article-block table:not([class]) tr th:first-child {
    border-radius: 12px 0 0 12px
}

.article-block table:not([class]) tr td:last-child,
.article-block :not([class]) tr th:last-child {
    border-radius: 0 12px 12px 0
}

.article-block table:not([class]) td {
    padding-block: 16px;
    padding-inline: 24px 16px
}

.article-block table:not([class]) td:first-child {
    padding-left: 24px
}

.article-block table:not([class]) td:last-child {
    padding-right: 16px
}

.article-block table:not([class]) td:not(:first-child) {
    padding-left: 8px
}

.article-block table:not([class]) td:not(:last-child) {
    padding-right: 8px
}

.article-block .table .table__odd {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--black-text);
    padding: 10px 30px;
    background: #e1f0ff
}

.article-block .table .table__btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400
}

@media (max-width: 991.9px) {
    .article-block table:not([class]) td {
        padding-block: 16px;
        padding-inline: 16px 16px
    }

    .article-block table:not([class]) td:first-child {
        padding-left: 16px
    }

    .article-block table:not([class]) td:last-child {
        padding-right: 16px
    }

    .article-block table:not([class]) td:not(:first-child) {
        padding-left: 8px
    }

    .article-block table:not([class]) td:not(:last-child) {
        padding-right: 8px
    }
}

@media (max-width: 767.9px) {

    .table_odds tr {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
        border-radius: 12px
    }

    .table_odds tr:not(:first-child) {
        margin-top: 4px
    }

    .table_odds td {
        padding: 0 !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .table_odds .table__cell_full {
        width: 100%;
        grid-column: 1/-1
    }

    .table_odds .table__cell_full>* {
        width: 100%
    }

    .table_odds .table__cell_text {
        grid-column-end: 3;
        -ms-grid-column: 1;
        grid-column-start: 1;
    }
}

table:not([class]) {
    font-size: 16px;
    line-height: 24px
}

@media (max-width: 575.9px) {
    .table .table__odd {
        font-size: 16px
    }

    .table .table__btn {
        font-size: 16px
    }
}