.sport-menu a.menu-item img {
    border-radius: 50px;
    width: 14px;
    height: 11px;
}

.sport-wrap {
    padding-top:2rem;   
}

.single-title {
margin-top: .75rem;
}
.sport-live-category {
padding: 2rem .5rem calc(1.5rem - 6px);
position: relative;
display: inline-flex;
margin: 0;
width: 100%;
}

.sport-live-category a {
display: grid;
grid-auto-flow: row;
gap: .5rem;
place-items: center;
position: relative;
width: 9ch;
max-width: 9ch;
}

.sport-live-category svg {
font-size: 28px;
color: #fff;
fill: #fff;
}

.sport-live-category .name {
font-size: .75rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 6ch;
}

.sport-wrapper {
margin-top: .75rem;
background: #0f212e;
border-radius: .5rem;
scrollbar-color: #2f4553 transparent;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
transform: translateZ(0);
-moz-transform: none !important;
scrollbar-width: thin;
}

.sport-live-category li {
display: inline-flex;
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
transition-timing-function: cubic-bezier(.4,0,.2,1);
transition-duration: .15s;
line-height: 1;
font-weight: 600;
font-size: .75rem;
border-radius: calc(.5rem - 4px);
white-space: nowrap;
gap: .5rem;
justify-content: center;
align-items: center;
}

.sport-live-category .active a,
.sport-live-category .active svg,
.sport-live-category a:hover,
.sport-live-category a:hover svg {
fill: #fff;
color: #fff;
}
.sport-live-category .active a:before {
    display: block;
    content: "";
    background: #1475e1;
    width: 12px;
    height: 6px;
    position: absolute;
    top: -2rem;
    left: 50%;
    z-index: 1;
    transform: translate(-50%);
    border-radius: 0 0 100% 100%;
}
.sport-live-category .indicator {
    position: absolute;
    top: -8px;
    right: 0;
    min-width: 1.5rem;
    padding:0 .25rem;
    border-radius: 2em;
    color: #b1bad3;
    background: #071824;
    display: inline-flex;
    font-size: .75rem;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    font-feature-settings: "tnum";
    white-space: nowrap;
    line-height: 1.5;
}
.sport-live-category .active .indicator {
    background: #4391e7;
    color: #04172d;
}

/* League */
.league-accordion {
display: flex;
flex-direction: column;
width: 100%;
position: relative;
z-index: 0;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 2px 0 rgba(0, 0, 0, .12), inset 0 1px rgba(255, 255, 255, .04);
border-radius: .25rem;
background: #213743;
margin-top: .75rem;
}

.league-header {
border-radius: .25rem .25rem 0 0;
width: 100%;
z-index: 4;
display: flex;
justify-content: space-between;
align-items: center;
background: 0 0;
padding: .75rem 1rem;
color: #d5dceb;
cursor: pointer;
font-size:.875rem;
line-height: 1.5;
display: inline-flex;
align-items: center;
font-weight: 600;
}

.league-header .slide {
display: flex;
align-items: center;
}

.league-games {
border-top: 2px solid #2f4553;
background: #213743;
display: flex;
flex-direction: column;
width: 100%;
border-radius: 0 0 .25rem .25rem;
}

/* GAME */
/*

--areas: 'misc misc line line line line marketName0 marketName0 marketName0 marketName0 line2 line2'
'teams teams teams fixtureScore fixtureScore outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 marketCount'
'teams teams teams fixtureScore fixtureScore outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 marketCount';
*/
.game {
    --areas:'misc misc marketCount marketCount marketCount marketCount'
        'teams teams teams teams fixtureScore fixtureScore'
        'marketName0 marketName0 marketName0 marketName0 marketName0 marketName0'
        'outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 outcomes0'
        'outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 outcomes0';
    --column-count: 6;
    
    display: grid;
    grid-template-areas: var(--areas);
    align-items: center;
    width: 100%;
    color: #b1bad3;

    grid-template-columns: repeat(var(--column-count), 1fr);
    grid-template-rows: 1fr auto;
    grid-row-gap: .25rem;
    padding: .75rem 1.25rem;
}


.game:not(:last-child) {
    border-bottom: 2px solid #2f4553;
}


.game:not(:first-child) .line {
    width: 100%;
    height: 2px;
    background: #2f4553;
}
.game .misc {
    grid-area: misc;
    display: flex;
    position: relative;
    z-index: 2;
    font-size: .75rem;
    gap: .5rem;
    align-items: center;
}
.game .live-badge {
    background: #e9113c;
    color: #fff;
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 3px;
    padding:0 .25rem;
    font-feature-settings: "tnum";
    white-space: nowrap;
    line-height: 1.5;
}

.game .teams {
    grid-area: teams;
    white-space: nowrap;
    overflow: hidden;
    display: grid;
    gap: .5rem;
}

.game .teams > * {
    color:#fff;
    font-weight: 600;
    line-height: 1;
    font-size: .875rem;
    border-radius: calc(.5rem - 4px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scores {
    grid-area: fixtureScore;
    display: flex;
    justify-content: flex-end;
}
.scores-wrap {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 2ch;
    padding-top: 1px;
    color: #ff9d00;
    display:flex;
    gap:.5rem;
}
.scores span {
    line-height: 1;
    font-size:.875rem;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}
.game .market-name {
    grid-area: marketName0;
    color: #b1bad3;
    line-height: 1.5;
    text-align: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit;
}

.game .outcomes {
    grid-area: outcomes0;
    place-items: center;
    width: 100%;
    display: grid;
    grid-gap: .5rem;
    align-self: stretch;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}

.game .outcome {
    background-color: #071824;
    display: flex;
    border-radius: .25rem;
    justify-content: center;
    width: 100%;
    position: relative;
    font-size: .875rem;
    color: #fff;
    align-items: flex-start;
    min-width: 0;
    padding: .5em .75em;
    flex-direction: column;
    gap: .5rem;
    box-shadow: 0;
    transition: all .1s;
}
.game .outcome:hover {
    background: #082f5a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -2px rgba(0, 0, 0, .1)
}

.game .outcome.active {
    background:#1475e1;
}

.game .odds {
    color: #1475e1;
    font-weight: bolder;
}

.game .outcome.active .odds {
    color:#fff;
}

.game .outcome.suspended {
    background: #071824;
    pointer-events: none;
    opacity: .5;
}


.game .outcome.suspended .odds {
    color:#fafafa;
}

.game .outcome .name {
    width: 100%;
    text-align: start;
    display: block;
}

.game .market-count {
    grid-area: marketCount;
    color:#b1bad3;
    line-height: 1;
    font-weight: 600;
    font-size: .875rem;
    text-align: center;
    justify-self: end;
}

.game .market-count a {
    transition: color .3s ease;
}
.game .market-count:hover a {
    color:#fff;
}

.game .league-games .game:not(:first-child) .line {
    background: #2f4553;
    width: 100%;
    height: 2px;
}

.badge {
    color: #d5dceb;
    background: #2f4553;
    padding: 0 .5rem;
    min-width: 1.8em;
    border-radius: 2em;
    font-size: .75rem;
}

.betslipCounter {
    position: absolute;
    font-size: 10px;
    background: #0f212e;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: -10px;
    right: -8px;
    box-shadow: 0px 0px 1px 0 #000;
}

.mobile-footer .betslipCounter {
    top: 8px;
    background: #1475e1;
    right: 0px;
}

/* Match */
.game.inner-game {
    display:block !important;
    padding: 0;
    margin-top: .75rem;
}
.inner-game .accordion:not(:first-child) {
    margin-top:.75rem;
}

.inner-game .accordion-content {
    padding: 10px;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.inner-game .accordion-content .d-flex {
    width:100%;
}

.inner-game .accordion-content .outcome {
    flex-direction:row;
    padding:.75em 1em;
    font-size:.875rem;
    flex: 1;
}

.inner-game .accordion-content .outcome.transparent {
    background: transparent;
    padding: 0;
    margin-top: .5em;
    color: #b1bad3;
}
.inner-game .accordion-content .multicols-market .outcome {
    flex:unset;
}
/* Breadcrumb */
.sport-breadcrumb {
    gap:.5rem;
    display: flex;
    align-items: center;
    margin-bottom:2rem;
}
.sport-breadcrumb li {
    background:#0f212e;
    color:#fff;
    font-size:.875rem;
    padding: 1rem 1.25rem;
    font-weight:900;
    text-transform: capitalize;
    height:44px;
    border-radius:.24rem;
}
.sport-breadcrumb li:not(:first-child) {
    padding: 1rem 1.5rem;
}
.sport-breadcrumb li a,
.sport-breadcrumb li svg {
    color:#fff;
    fill:#fff;
}


/* Bet Slip */
aside.betslip {
    position: fixed;
    right: 0;
    z-index: 9999;
    width: 320px;
    background: #0f212e;
    filter: drop-shadow(0 0 5px rgba(25,25,25,.25));
    word-wrap: break-word;
    height:100%;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    transition: all .2s;
}
aside.betslip.open {
    transform: translateX(0%);
}
.betslip-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-x: hidden;
    overscroll-behavior: contain;
    gap: .75rem;
}
.betslip-list .scrollY {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scroll: touch;
    scrollbar-width: thin;
    scrollbar-color: #2f4553 transparent;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0px;
    padding: .5rem 1rem 1rem;
    overscroll-behavior: contain;
}
.betslip-header .betslip-header-content{
    background: #0f212e;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:60px;
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -2px rgba(0, 0, 0, .1);
    flex-shrink: 0;
    touch-action: none;
    padding-right: 6px;
}
.betslip-header .hoverable {
    padding:0 10px;
}

.betslip-footer {
    display: grid;
    padding: 1rem;
    row-gap: .75rem;
    background: #213743;
    grid-template-rows: auto;
    grid-auto-flow: row;
}

.betslip-type {
    margin: .5rem 0 .5rem;
    padding: 0 .5rem .5rem;
    border-bottom: 2px solid #213743;
}
.betslip-type .slider-nav {
    background: #1a2c38;
}
/* Bet */
.bet {
    position: relative;
    color: #b1bad3;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #1a2c38;
    border-radius: .25rem;
    font-size: .875rem;
}

.bet .header {
    position: relative;
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2f4553;
    padding: .5rem .75rem;
    border-radius: .25rem .25rem 0 0;
}

.bet .fixture-name {
    width: 100%;
    max-width: calc(100% - 3rem);
    display: inline-flex;
    align-items: center;
}

.bet .fixture-name > .match-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    flex-shrink: 1;
    max-width: 100%;
    margin: 0 .5rem;
    font-weight: 600;
}

.bet .fixture-name .badge {
    display: inline-flex;
}

.bet .content {
    width: 100%;
    flex-shrink: 0;
    display: grid;
    align-items: flex-end;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    position: relative;
    padding: .5rem .75rem .75rem;
    box-shadow: 0 4px 6px -1px rgba(27, 23, 23, .2), 0 2px 4px -1px rgba(0, 0, 0, .12);
    background: #213743;
    grid-template-areas:
        "market market market market maxBet maxBet"
        "outcome outcome outcome outcome outcome odds"
        "footer footer footer footer footer footer"
        "footer footer footer footer footer footer";
}

.bet .market-name {
    grid-area: market;
}
.bet .max-bet {
    grid-area: maxBet;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.bet .outcome-name {
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    grid-area: outcome;
    text-transform: capitalize;
    align-items: baseline;
}
.bet .odds-payout {
    grid-area: odds;
    justify-self: flex-end;
}
.bet .odds {
    color:#1475e1;
    transition: color .3s;
    position: relative;
    font-feature-settings: "tnum";
    color: #4391e7;
    line-height: 1.5;
    justify-content: flex-start;
    text-align: start;
    font-size:.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.bet .odds .arrow-odds {
    content: '<svg fill="none" viewBox="0 0 96 80" class="svg-icon " style=""> <title></title> <path d="m48.507 15.158 30.316 50.526H18.191l30.316-50.526Z" fill="#00E700"></path></svg>';
    font-size: .75rem;
    position: absolute;
    
    top: 15%;
    right: calc(100% + .25rem);
    
    animation-duration: .8s;
    animation-iteration-count: 5;
}
.odds { position: relative; }

.odds:before {
    position: absolute;
    top: 15%;
    right: -12px;
    animation-duration: .8s;
    animation-iteration-count: 5;
    width: 10px;
    height: 10px;
    display: block;
    opacity: 0;
}

#betslip .odds.decreased:before,
.outcome.decreased .odds:before {
    content:"";
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 96 80' class='svg-icon ' style=''%3E%3Ctitle%3E%3C/title%3E%3Cpath d='m48.507 15.158 30.316 50.526H18.191l30.316-50.526Z' fill='%23e9113c'%3E%3C/path%3E%3C/svg%3E");
    animation-name: odds-decreased;
    transform: translateY(0%) rotate(180deg);
}

#betslip .odds.increased:before,
.outcome.increased .odds:before {
    content:"";
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 96 80' class='svg-icon ' style=''%3E%3Ctitle%3E%3C/title%3E%3Cpath d='m48.507 15.158 30.316 50.526H18.191l30.316-50.526Z' fill='%2300e701'%3E%3C/path%3E%3C/svg%3E");
    animation-name: odds-increased;
}

@keyframes odds-increased {
    0%,20% {
        transform: translateY(20%);
        opacity: 1
    }

    to {
        transform: translateY(-20%);
        opacity: 0
    }
}

@keyframes odds-decreased {
    0%,20% {
        transform: translateY(-20%) rotate(180deg);
        opacity: 1
    }

    to {
        transform: translateY(20%) rotate(180deg);
        opacity: 0
    }
}

.bet .content .footer:not(.negative) {
    grid-template-areas:
        "amount amount amount return return return"
        "amount amount amount estimatedAmount estimatedAmount estimatedAmount";
}

.bet .content .footer {
    display: grid;
    grid-area: footer;
    grid-template-columns: repeat(6, 1fr);
    margin-top: .25rem;
}

.bet .closed {
    justify-self: flex-end;
    grid-area: odds;
}

.bet:after {
    content: "";
    position: absolute;
    left: 0;
    height: 6px;
    width: 100%;
    bottom: -4px;
    background: radial-gradient(circle, transparent, transparent 50%, #213743 50%, #213743 100%) 0px 1px / .7rem .7rem repeat-x;
}

.bet .footer {
    display: grid;
    grid-area: footer;
    grid-template-columns: repeat(6, 1fr);
    margin-top: .25rem;
}

.bet .footer:not(.negative) {
    grid-template-areas:
        "amount amount amount return return return"
        "amount amount amount estimatedAmount estimatedAmount estimatedAmount";
}

.bet .info-footer {
    display: flex;
    grid-area: amount;
}

.bet .info-footer label {
    flex-direction: column-reverse;
    align-items: flex-start;
}

.betslip .input-wrap  {
    width: 100%;
    display: flex;
    flex-shrink: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 2px 0 rgba(0, 0, 0, .12);
    border-radius: .25rem;
}

.betslip .input-wrap .input-content {
    position: relative;
    flex-grow: 1;
    width: 100%;
    display: flex;
}

.betslip .input-wrap .input-content .after-icon {
    cursor: text;
    right: .75em;
    position: absolute;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #b1bad3;
    z-index: 2;
}

.betslip .input-wrap .input-content input {
    border: 2px solid #2f4553;
    border-radius: .25rem;
    letter-spacing: 0;
    font-weight: 600;
    transition: all .25s;
    outline: 0;
    margin: 0;
    cursor: text;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: .875rem;
    box-shadow: none;
    padding: .5em;
    padding-right: 2em;
}

.betslip .input-wrap .input-content input:disabled {
    opacity: .8;
    cursor:not-allowed;
}

.betslip .input-wrap .input-content input.error {
    border: 2px solid darkred;
}

.input-wrap.combo {
    margin: 0 0 10px;
}

.bet .footer .estimated-label {
    grid-area: return;
    justify-self: flex-end;
    align-self: flex-start;
}
.bet .footer .estimated-label span {
    font-size: .75rem;
    color: #b1bad3;
    line-height: 1.5;
    justify-content: flex-start;
    text-align: start;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.bet .footer .estimated-amount {
    grid-area: estimatedAmount;
    justify-self: flex-end;
    align-self: flex-end;
}

.bet .footer .estimated-amount .currency {
    line-height: 1.5;
}

#betslip .bet.suspend {
    opacity: 0.5;
}
#betslip .bet.error {
    border: 2px solid red;
    border-bottom-width: 6px;
}

.betslip-item {
    position: relative;
}
.betslip-item.loading {
    opacity: .5;
}

.submit-bet.loading, .betslip-item.loading {
    pointer-events: none;
    color: transparent;
}

.betslip-item.loading::before,
.betslip-item.loading::after,
.submit-bet.loading::before,
.submit-bet.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
}

.betslip-item.loading::after,
.submit-bet.loading::after {
  width: 28px;
  height: 28px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  animation-duration: 0.5s;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.badge.variant-live {
    background: #e9113c;
    color: #fff;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    padding: 0rem .4rem;
    font-feature-settings: "tnum";
    white-space: nowrap;
    line-height: 1.5;
    font-size:.75rem;
}
.badge.variant-disabled {
    background: gray;
    color: #fff;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    padding: 0rem .4rem;
    font-feature-settings: "tnum";
    white-space: nowrap;
    line-height: 1.5;
    font-size:.75rem;
}


.game .teams,
.game .scores {
    margin:.5rem 0 0;
}

.betslip-item:not(:last-child) {
    margin: 0 0 .875rem;
}

/* League page */
.country-accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 2px 0 rgba(0, 0, 0, .12), inset 0 1px rgba(255, 255, 255, .04);
    border-radius:.25rem;
    margin-top: .75rem;
}
.country-header {
    border-radius: .25rem .25rem 0 0;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: 0 0;
    padding: .75rem 1rem;
    color: #d5dceb;
    cursor: pointer;
    font-size: .875rem;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    background: #071d2a;
}
.country-header h2, .league-header h2 {
    align-items: center;
}
.country-header img, .league-header img {
    border-radius:50%;
    width:20px;
    height:14px;
}
.country-accordion .country-container {
    padding:10px;
    background: transparent;
}
.country-accordion .league-accordion {
    background: #071d2a;
    margin:0;
}
.country-accordion:not(:first-child) {
    margin-top:.75rem;
}

.country-accordion .league-accordion:not(:first-child) {
    margin-top:.5rem;
}

.league-all {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    background: #071d2a !important;
    border-top: 2px solid #213743;
}

.league-all .league-accordion {
    width: auto;
    margin: 0 !important;
    background: #213743;
    transition: background .3s ease;
}

.league-all .league-accordion:hover {
    background: #1475e1;
}

.league-all .league-header {
    padding: .5rem;
    color:#fff;
}

.league-all .badge {
    background: transparent;
    font-size: .875rem;
}

.league-all .badge:before {
    content: "(";
}
.league-all .badge:after {
    content: ")";
}

.my-bets_sport {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: .875rem;
    margin-top: .875rem;
}


@media(min-width:420px) {
    .my-bets_sport {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:768px) {
    aside.betslip {
        width:370px;
    }
    .game {
        --areas: 'misc misc line line line line marketName0 marketName0 marketName0 marketName0 line2 line2'
        'teams teams teams fixtureScore fixtureScore outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 marketCount'
        'teams teams teams fixtureScore fixtureScore outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 outcomes0 marketCount';
        --column-count: 12;
        grid-template-rows: repeat(3, auto);
        grid-template-columns: repeat(var(--column-count), minmax(0, 1fr));
        padding: .5rem 1rem;
        row-gap: .5rem;
        border-bottom:0;
    }
    
    .game:not(:last-child) {
        border-bottom: 0;
    }
    
    .game .teams,
    .game .scores {
        margin:0;
    }
    
    .game .scores {
        margin-right: .75rem;
    }
    .my-bets_sport {
        grid-template-columns: repeat(3, 1fr);
    }
}

    .bet-card {
      background-color: #213744;
      width: 100%;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .bet-card:after {
        content: "";
        position: absolute;
        left: 0;
        height: 6px;
        width: 100%;
        bottom: -3px;
        background: radial-gradient(circle, transparent, transparent 50%, #213743 50%, #213743 100%) 0px 1px / .7rem .7rem repeat-x;
    }

    .bet-card_header .header {
        font-size: 1rem;
        color: #fff;
        margin-bottom: 5px;
        font-weight: bold;
        text-align: center;
    }

    .bet-card_header .bet-id {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #fff;
        text-align: center;
    }

    .bet-card_header .placed-by {
        font-size: .875rem;
        margin-bottom: 10px;
        text-align: center;
        line-height: 20px;
    }

    .bet-card .match-time {
        margin-bottom: 10px;
    }

    .bet-card .teams {
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
    display: flex;
    gap: .25rem;
    line-height: 20px;
    align-items: center;
    }

    .bet-card .datetime {
      font-size: 12px;
      color: #cbd5e1;
    }

    .bet-card .selection {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      font-size: 14px;
    }

    .bet-card .stake-box {
      margin-top: 10px;
    }

    .bet-card .stake-box div {
      display: flex;
      justify-content: space-between;
      padding: 3px 0;
      font-size: 14px;
    }

    .bet-card .btn {
      margin-top: 15px;
      width: 100%;
      padding: 10px;
      background-color: #334155;
      border: none;
      border-radius: 6px;
      color: white;
      font-size: 14px;
      cursor: pointer;
    }

    .bet-card .btn:hover {
      background-color: #475569;
    }
    .popup-wrapper { padding:0; background:#1A2C38; }
    .popup-header { padding:1rem; }
    .popup-content { background:#0F212F; padding:1rem; margin:0; }
    .type { line-height: 0; }
    
    .logo-container {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 800px;
    }

    .logo-container .line {
      flex: 1;
      height: 2px;
      background-color: #64748b;
    }

    .logo-container .logo {
      margin: 0 20px;
      width: 50px; /* adjust as needed */
      height: auto;
      fill: white;
    }

    .logo-container svg {
      display: block;
      width: 50px;
      height: auto;
    }
    
    .logo-container svg path {
        fill: #fff;
    }