/**css file for pick 4 games page*/
.demo-wildball input, .demo-wildball__num {
    font-style: normal;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: 1px solid #707070;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgb(112, 112, 112);
    border-right-color: rgb(112, 112, 112);
    border-bottom-color: rgb(112, 112, 112);
    border-left-color: rgb(112, 112, 112);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    vertical-align: middle;
    width: 36px;
    min-width: 36px;
    height: 36px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-left: 3px;
    margin-right: 3px;
    color: #043965;
    box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding-right: 5px;
    padding-left: 5px;
    min-width: 36px;
}
.demo-wildball__inputs {
    display: flex;
    align-items: center;
}
.demo-wildball input_checked, .demo-wildball__num_checked {
    background-color: rgba(9, 127, 224, 0.5);
}
.demo-wildball input.js-active, .demo-wildball__num.js-active {
    background-color: #FFCC00 !important;
}
.demo-wildball__numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}
/*table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}*/
.demo-wildball__numbers_table {
    border-bottom: 1px solid #ccc;
}
.table_game tbody tr:nth-child(even):not(.table-game__row) {
    background: #FFFFFF;
}
.demo-wildball__win {
    display: flex;
    align-items: center;
    color: red;
}
.table_game tbody tr td {
    padding: 5px 15px;
    height: 50px;
}
.demo-wildball input.js-error, .demo-wildball__num.js-error {
    border: 2px solid red;
    text-decoration: underline;
}
