.ui-game-card__footer[data-v-cbf5c6cc] {
	grid-area: unset;
	min-width: 0;
}
.bet_modal {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    transform: translate3d(0, 100%, 0);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.bet_modal.open {
    transform: translate3d(0, 0, 0);
}
.bet_item {
    display: flex;
    gap: 5px;
    overflow: auto;
    scrollbar-width: thin;
    padding-bottom: 5px;
}
.bet_item .item {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 5px;
    background: #00000021;
    padding: 0 5px;
    border-radius: 5px;
    min-width: 20rem;
    justify-content: space-between;
}
.bet_item .item .top {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    align-items: center;
}
.bet_item .item .top strong {
    font-weight: bold;
    font-size: 13px;
}
.bet_item .item .top i {
    padding: 2px 5px;
    cursor: pointer;
}
.bet_item .item .bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.bet_item .item .bottom span {
    font-size: 12px;
}
.bet_item .item .bottom strong {
    font-size: 13px;
    font-weight: bold;
}
.empty-slip {
    width: 100%;
    text-align: center;
    padding: 30px 10px;
    font-size: 14px;
}
.bet_selected{
    position: relative;
}
.bet_selected::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: bold;
    border: 2px solid #fff;
    z-index: 10;
}
.place_menu .form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: unset;
}
.amount_minus{
    cursor: pointer;
}
.amount_plus{
    cursor: pointer;
}
.bet-disabled{
    position: relative;
}
.bet-disabled::before {
    content: "Event blocked";
    position: absolute;
    inset: 0;
    background: hsla(210.4, 55.4%, 27.3%, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    z-index: 100;
    pointer-events: none;
    border-radius: 5px;
}
.sports_name_part[data-v-8edfccee] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: 5px 0;
    cursor: pointer;
}
[dir] .tournament_name_part[data-v-f1692410] {
    padding: 3px 3px 0px 3px;
    background: #ffffff73;
    margin-bottom: 3px;
    border-radius: 5px;
}
.tournament-title {
    font-size: 12px;
    line-height: 1;
    padding: 5px 0;
    cursor: pointer;
    border-bottom: 1px solid #0000003d;
}