.row {
    padding: 20px 0;
}
.error-message {
    color: red;
    font-size: 14px;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.font-small {
    font-size: 1.3rem;
}
.font-large {
    font-size: 2rem;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 10px;
}
.mt20 {
    margin-top: 20px;
}
.pt30 {
    padding-top: 20px;
}
.form-control-static {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.tournament .game {
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}
.tournament .game:last-child {
    border-bottom: none;
}
hr {
    margin: 1rem 0;
}
@media screen and (max-width: 640px) {
    .tournament {
        margin-bottom: 20px;
    }
    .tournament:last-child {
        margin-bottom: 0;
    }
    table.bet-history {
        border-spacing: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }
    table.bet-history tbody {
        display: flex;
        overflow-x: auto;
        flex-direction: column;
    }
    table.bet-history tbody tr, table.bet-history tbody tr th, table.bet-history tbody tr td {
        border: none;
    }
    table.bet-history tbody tr th, table.bet-history tbody tr td {
        padding: 5px 1.5rem;
    }
    table.bet-history tbody tr th{
        padding-top: 10px;
    }
    table.bet-history tbody tr td {
        padding-bottom: 10px;
        border-bottom: 1px solid #e1e1e1;
    }
}
.login-btn {
    text-align: center;
}
.login-btn img {
    width: 191px;
    border-radius: 5px;
}
.bet.tournament .radiobox {
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
    margin-bottom: 2rem;
}
.bet.tournament .radiobox .radiobutton {
    display: none;
}
.bet.tournament .radiobox label {
    background-color: rgb(219, 219, 219);
    padding: 10px 20px;
    margin-right: 2rem;
    margin-bottom: 10px;
}
.bet.tournament .radiobutton:checked + label {
    background-color: pink;
}
.bet.tournament .bet-point label {
    font-size: inherit;
    font-weight: normal;
    margin-bottom: 5px;
}
code.result {
    background: #ff5757;
    color: white;
}
.return-point {
    color: #42bd41;
}