/*---------------------------------------------------------
    SPORTS CROSS & SPECIAL & REALTIME
---------------------------------------------------------*/
#sports_live_wrap {
    display: block;
    position: fixed;
    left:0px;
    top:50px;
    bottom:40px;
    right:0px;
    text-align: center;
    min-width: 1400px;
    overflow: hidden;
}

#sports_live_wrap .flexbox {
    display: flex;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    min-width: 1400px;
    max-width: 2200px;
    text-align: left;
    margin:0 auto;
}

#sports_live_wrap .flexbox .lnbbox {
    display: block;
    width:348px;
    flex-shrink:0;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    padding:10px;
}

#sports_live_wrap .flexbox .lnbbox::-webkit-scrollbar {
    width:8px;
}

#sports_live_wrap .flexbox .lnbbox::-webkit-scrollbar-track {
    background: #141921;
}

#sports_live_wrap .flexbox .lnbbox::-webkit-scrollbar-thumb {
    background: #262b32;
}

#sports_live_wrap .flexbox .leftbox {
    display: block;
    width:50%;
    flex-grow: 1;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    padding:10px;
}

#sports_live_wrap .flexbox .leftbox::-webkit-scrollbar {
    width:8px;
}

#sports_live_wrap .flexbox .leftbox::-webkit-scrollbar-track {
    background: #141921;
}

#sports_live_wrap .flexbox .leftbox::-webkit-scrollbar-thumb {
    background: #262b32;
}

#sports_live_wrap .flexbox .centerbox {
    display: block;
    flex-grow: 1;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    width:50%;
    padding:10px;
}

#sports_live_wrap .flexbox .centerbox::-webkit-scrollbar {
    width:8px;
}

#sports_live_wrap .flexbox .centerbox::-webkit-scrollbar-track {
    background: #141921;
}

#sports_live_wrap .flexbox .centerbox::-webkit-scrollbar-thumb {
    background: #262b32;
}

#sports_live_wrap .flexbox .rightbox {
    display: block;
    width:348px;
    flex-shrink: 0;
    position: relative;
    padding:10px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#sports_live_wrap .flexbox .rightbox::-webkit-scrollbar {
    width:8px;
}

#sports_live_wrap .flexbox .rightbox::-webkit-scrollbar-track {
    background: #141921;
}

#sports_live_wrap .flexbox .rightbox::-webkit-scrollbar-thumb {
    background: #262b32;
}


/*---------------------------------------------------------
    SPORTS LEAGUE LIST
---------------------------------------------------------*/

#sports_league_list {
    display: flex;
    border:1px solid #313742;
    background:#11141d;
    height:62px;
    z-index:100;
    position: relative;
}

#sports_league_list .btn_left,
#sports_league_list .btn_right {
    display: block;
    flex-shrink: 0;
    width:30px;
    border-left:1px solid #313742;
    position:relative;
    cursor:pointer;
}

#sports_league_list .btn_left span,
#sports_league_list .btn_right span {
    display: block;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%) scaleX(0.6);
    font-size:24px;
    font-weight: 600;
    color:#a8a8a8;
}

#sports_league_list .btn_left:hover,
#sports_league_list .btn_right:hover {
    background: #29324b;
    transition: all 300ms;
    animation: beat .25s infinite alternate;
}

#sports_league_list .btn_left:hover span,
#sports_league_list .btn_right:hover span {
    color:#ffffff;
    text-shadow: 
        0 0 5px #cfff5e,
        0 0 10px #ffb25e,
        0 0 20px #ef7c00;
}

#sports_league_list .btn_search {
    display: block;
    flex-shrink: 0;
    width:130px;
    border-left:1px solid #313742;
    position:relative;
    cursor:pointer;
}

#sports_league_list .btn_search span {
    display: block;
    position: absolute;
    right:15px;
    top:50%;
    transform: translate(0, -50%);
    font-size:16px;
    font-weight: 600;
    color:#a8a8a8;
}

#sports_league_list .btn_search img {
    display: block;
    position: absolute;
    margin-top:2px;
    left:15px;
    top:50%;
    transform: translate(0, -50%);
    filter: grayscale(1);
}

#sports_league_list .btn_search:hover {
    background: #29324b;
    color:#ef7c00;
    border:1px solid #29324b;
    /*box-shadow: 
        0 0 10px #fff0c8,
        0 0 20px #ffc383;
    transition: all 300ms;
    animation: beat .25s infinite alternate;*/
}

#sports_league_list .btn_search:hover span {
    color:#ef7c00;
}

#sports_league_list .btn_search:hover img {
    filter: grayscale(0);
}

#sports_league_list .sort {
    display: block;
    list-style: none;
    flex-shrink: 0;
    width:100px;
    position:relative;
    cursor:pointer;
}

#sports_league_list .sort li {
    list-style: none;
    position:absolute;
    display: block;
    left:0px;
    top:0px;
    right:0px;
    bottom:0px;
    border-left:1px solid #313742;
    transition: all 300ms;
}

#sports_league_list .sort li span.value {
    display: block;
    position: absolute;
    padding-left:15px;
    line-height:59px;
    left:0;
    right:0;
    bottom:0;
    top:0;
    font-size:16px;
    font-weight: 600;
    color:#a8a8a8;
    z-index:3;
    transition: all 300ms;
}

#sports_league_list .sort li span.arrow {
    display: block;
    position: absolute;
    right:15px;
    top:50%;
    transform: translate(0, -50%) scaleX(0.6);
    font-size:24px;
    font-weight: 600;
    color:#a8a8a8;
    z-index:2;
    transition: all 300ms;
}

#sports_league_list .sort li:hover,
#sports_league_list .sort li.active {
    background: #29324b;
    color:#ef7c00;
    transition: all 300ms;
    animation: beat .25s infinite alternate;
}

#sports_league_list .sort li:hover span.value,
#sports_league_list .sort li.active span.value {
    color:#ffffff;
    text-shadow: 
        0 0 5px #cfff5e,
        0 0 10px #ffb25e,
        0 0 20px #ef7c00;
    transition: all 300ms;
}

#sports_league_list .sort li:hover span.arrow,
#sports_league_list .sort li.active span.arrow {
    color:#ffffff;
    text-shadow: 
        0 0 5px #cfff5e,
        0 0 10px #ffb25e,
        0 0 20px #ef7c00;
    transform: translate(0, -50%) scaleY(0.7) rotate(90deg);
    transition: all 300ms;
}


#sports_league_list .sort li ul {
    display: block;
    list-style: none;
    overflow: hidden;
    max-height: 0px;
    position: absolute;
    left:-1px;
    right:-1px;
    top:59px;
    transition: all 300ms;
    z-index:10;
	height:315px !important;
}

#sports_league_list .sort li ul li {
    display: block;
    background:#11141d;
    height:63px;
    line-height:63px;
    border-top:1px solid #313742;
    text-align: center;
    z-index:10;
}

#sports_league_list .sort.active li ul {
    display: block;
    max-height: 315px;
    border:1px solid #313742;
    transition: all 300ms;
}

#sports_league_list .sort.active li ul li:hover,
#sports_league_list .sort.active li ul li.active {
    background:#344474;
}

#sports_league_list .swipebox {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-grow: 1;
}

#sports_league_list .swipebox::-webkit-scrollbar {
    display: none;
}

#sports_league_list .swipebox .ca_item {
    width:62px;
    flex-shrink: 0;
    overflow: hidden;
    border-right:1px solid #313742;
    display: block;
    position: relative;
    background: transparent;
    transition: background 300ms;
    cursor:pointer;
}

#sports_league_list .swipebox .ca_item img {
    filter:brightness(0.6);
    position: absolute;
    display: block;
    bottom:38px;
    left:50%;
    transform: translate(-50%, 50%);
    width:20px;
    height:20px;
    object-fit: scale-down;
    object-position: center;
    transition: all 300ms;
}

#sports_league_list .swipebox .ca_item span {
    position:absolute;
    bottom:8px;
    left:50%;
    transform: translate(-50%);
    color:#a8a8a8;
    font-weight:600;
    font-size:9px;
    letter-spacing: -1px;
    transition: all 300ms;
}

#sports_league_list .swipebox .ca_item:hover,
#sports_league_list .swipebox .ca_item.active {
    border-top:2px solid #ef7c00;
    background:#29324b;
    transition: background 300ms;
}

#sports_league_list .swipebox .ca_item:hover img,
#sports_league_list .swipebox .ca_item.active img {
    filter:brightness(1);
    transition: all 300ms;
}

#sports_league_list .swipebox .ca_item:hover span,
#sports_league_list .swipebox .ca_item.active span {
    color:#ffffff;
    transition: all 300ms;
}

/*---------------------------------------------------------
    SPORTS LIVE SELECT MATCH
---------------------------------------------------------*/
#sports_live_select_match {
    display: block;
}

/*---------------------------------------------------------
    SPORTS LIVE VIDEO
---------------------------------------------------------*/
#sports_live_video {
    display: block;
    aspect-ratio: 4/3;
    background:#000000;
    margin-top:1px;
    position: relative;
}

#sports_live_video  span.video_txt {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*---------------------------------------------------------
    SPORTS LIVE GAME LIST
---------------------------------------------------------*/
#sports_live_game_list {
    display: block;
    grid-column: span 7;
    grid-row: span 7;
    position: relative;
    z-index:1;
}

#sports_live_game_list .item {
    background-color: #003e6a;
    stroke: #177099;
    background-image: url('/images/1bet1/main_livesports/list_item_bg.svg');
    margin-top:10px;
    height:150px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: inset 0px 0px 20px rgba(255,255,255,0.3);
    /*filter:grayscale(1) brightness(0.5);*/
    cursor:pointer;
    position: relative;
    transition: all 100ms;
	opacity:0.3;
}

#sports_live_game_list .item:hover {
    /*filter:grayscale(0) brightness(1);*/
	opacity:1;
    transition: all 100ms;
}

#sports_live_game_list .item.active{
    /*filter:grayscale(0) brightness(1);*/
	opacity:1;
    transition: all 100ms;
}

#sports_live_game_list .item .league_name {
    background: url('/images/1bet1/main_livesports/list_item_league_name_bg.png'), linear-gradient(#436592 0%, #1f344f 15%) ;
    background-repeat: no-repeat;
    background-position:left;
    height:50px;
    line-height:50px;
    text-align: center;
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

#sports_live_game_list .item .game_home_icon {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    left:50%;
    top:100px;
    margin-left:-100px;
    background:radial-gradient(#0344a1 60%, #5f91d8 70%, #0344a1 80%);
    border:1px solid #313742;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    object-fit: scale-down;
    padding:10px;
    transform: translate(-50%,-50%);
} 

#sports_live_game_list .item .game_away_icon {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    left:50%;
    top:100px;
    margin-left:100px;
    background:radial-gradient(#d70029 60%, #ff8da1 70%, #d70029 80%);
    border:1px solid #313742;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    object-fit: scale-down;
    padding:10px;
    transform: translate(-50%,-50%);
}

#sports_live_game_list .item .game_home_name {
    position: absolute;
    display: block;
    right:50%;
    top:100px;
    transform: translate(0,-50%);
    margin-right:150px;
    text-align: right;
    color:#ffffff;
    font-weight:600;
    font-size:16px;
    left:20px;
}

#sports_live_game_list .item .game_away_name {
    position: absolute;
    display: block;
    left:50%;
    top:100px;
    transform: translate(0,-50%);
    margin-left:150px;
    text-align: left;
    color:#ffffff;
    font-weight:600;
    font-size:16px;
    right:20px;
}

#sports_live_game_list .item .game_home_score {
    position: absolute;
    display: block;
    right:50%;
    top:100px;
    transform: translate(0,-50%);
    width:55px;
    margin-right:5px;
    text-align: center;
    color:#ffffff;
    font-weight:900;
    font-size:30px;
    font-family: 'Rajdhani';
}

#sports_live_game_list .item .game_away_score {
    position: absolute;
    display: block;
    left:50%;
    top:100px;
    transform: translate(0,-50%);
    width:55px;
    margin-left:5px;
    text-align: center;
    color:#ffffff;
    font-weight:900;
    font-size:30px;
    font-family: 'Rajdhani';
}

#sports_live_game_list .item .game_vs_score {
    position: absolute;
    display: block;
    left:50%;
    top:98px;
    color:#ffffff;
    transform: translate(-50%,-50%);
    font-weight:900;
    font-size:30px;
    font-family: 'Rajdhani';
}

#sports_live_game_list .item .game_datetime {
    position: absolute;
    right:10px;
    top:5px;
    height:40px;
    line-height:15px;
    padding:5px;
    padding-left:10px;
    padding-right:10px;
    background: #192a3f;
    font-weight:600;
    font-size:13px;
    border-radius:10px;
    border-bottom:2px solid #6e7c8d;
    border-left:2px solid #18283c;
    border-top:2px solid #18283c;
    border-right:2px solid #18283c;
}

#sports_live_game_list .empty {
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#sports_live_game_list .empty img {
    margin-bottom:15px;
}

#sports_live_game_list .empty span {
    font-size:24px;
    color:yellow;
}

@media screen and (max-width: 1900px) {
    #sports_live_game_list .item {
        height:200px;
    }

    #sports_live_game_list .item .league_name {
        font-size:15px;
    }

    #sports_live_game_list .item .game_datetime { 
        left:50%;
        right:auto;
        top:auto;
        bottom:40px;
        padding-left:5px;
        padding-right:5px;
        font-size:12px;
        transform: translate(-50%, 50%);
    }

        
    #sports_live_game_list .item .game_home_name {
        right:50%;
        left:20px;
        top:auto;
        bottom:40px;
        margin-right:40px;
        font-size:13px;
        transform: translate(0, 50%);
        text-align: center;
        width:auto;
    }

    #sports_live_game_list .item .game_away_name {
        position: absolute;
        display: block;
        left:50%;
        top:auto;
        bottom:40px;
        margin-left:40px;
        font-size:13px;
        transform: translate(0, 50%);
        text-align: center;
        width:auto;
    }
}


/*---------------------------------------------------------
    SPORTS LEAGUE LNB
---------------------------------------------------------*/
#sports_league_lnb {
    display: block;
}

#sports_league_lnb .title {
    display: flex;
    background:#29324b;
    height:62px;
}

#sports_league_lnb .title .datetime {
    display: block;
    margin-top:10px;
    margin-bottom:10px;
    margin-left:15px;
    width:50px;
    flex-shrink: 0;
    background: #efefef;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

#sports_league_lnb .title .datetime .month {
    display: block;
    position: absolute;
    left:3px;
    right:3px;
    top:0px;
    height:15px;
    text-align: center;
    line-height: 15px;
    font-weight: 600;
    color:#29324b;
    font-size:13px;
}

#sports_league_lnb .title .datetime .day {
    position: absolute;
    left:3px;
    right:3px;
    bottom:3px;
    height:24px;
    color:#ef7c00;
    font-weight: 600;
    text-align: center;
    font-size:15px;
    line-height:24px;
    background:#29324b;
}

#sports_league_lnb .title .label {
    display: block;
    margin-left:15px;
    line-height:62px;
    height:62px;
    font-size:16px;
    font-weight:600;
    color:#cccccc;
    flex-grow: 1;
    margin-right:15px;
}

#sports_league_lnb .title .label span {
    color:#ef7c00;
}

#sports_league_lnb .title .arrow {
    display: block;
    line-height:62px;
    height:62px;
    font-size:30px;
    font-weight:600;
    color:#cccccc;
    flex-shrink: 0;
    margin-right:10px;
    transform: scaleX(0.4);
    font-family: 'Rajdhani';
}

#sports_league_lnb ul {
    display: block;
    list-style:none;
}

#sports_league_lnb li {
    display: block;
    list-style: none;
    margin-top:1px;
}

#sports_league_lnb ul li a {
    display: flex;
    height:50px;
    background:#07172d;
    border-left:2px solid #ef7c00;
}


#sports_league_lnb ul li.active > a ,
#sports_league_lnb ul li a:hover {
    display: flex;
    height:50px;
    background:#29324b;
}

#sports_league_lnb ul li a .label {
    height:50px;
    line-height:50px;
    flex-grow: 1;
    margin-right:15px;
    font-size:15px;
}

#sports_league_lnb ul li a .count {
    height:50px;
    line-height:50px;
    flex-shrink: 0;
    margin-right:15px;
    font-size:15px;
}

#sports_league_lnb ul li ul li a {
    display: flex;
    height:40px;
    background:#0d1d32;
}

#sports_league_lnb ul li ul li a:hover {
    display: flex;
    height:40px;
    background:#29324b;
}

#sports_league_lnb ul li ul li a .label {
    height:40px;
    line-height:40px;
    flex-grow: 1;
    margin-right:15px;
    font-size:14px;
}

#sports_league_lnb ul li ul li a .count {
    height:40px;
    line-height:40px;
    flex-shrink: 0;
    margin-right:15px;
    font-size:14px;
}

#sports_league_lnb img.league_type_flag {
    display: block;
    margin-top:15px;
    margin-bottom:15px;  
    margin-left:15px;
    margin-right:15px;
    flex-shrink: 0;
}

#sports_league_lnb img.nation_flag {
    display: block;
    margin-top:10px;
    margin-bottom:10px;
    margin-left:25px;
    margin-right:15px;
    flex-shrink: 0;
}

#sports_league_lnb ul.sports_league_ul ul {
	display:none;
}

#sports_league_lnb ul.sports_league_ul > li.active ul  {
	display:block;
}

/*---------------------------------------------------------
    SPORTS LIVE SELECT MATCH
---------------------------------------------------------*/
#sports_live_select_match {
    display: block;
}

#sports_live_select_match .title {
    display: flex;
    height:62px;
    background: url('/images/1bet1/sports/title_effect_overlay.png'), #07172d;
    background-position: left;
    background-size: cover;
}

#sports_live_select_match .title .nation_flag {
    display: block;
    flex-shrink: 0;
    height:20px;
    margin-top:21px;
    margin-bottom:21px;
    margin-left:20px;
    margin-right:15px;
}

#sports_live_select_match .title .nation_flag2 {
    display: block;
    flex-shrink: 0;
    height:20px;
    margin-top:21px;
    margin-bottom:21px;
    margin-right:15px;
}

#sports_live_select_match .title .label {
    display: block;
    flex-grow: 1;
    line-height:62px;
    font-size:16px;
    font-weight:600;
    color:#cccccc;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#sports_live_select_match .title .datetime {
    display: block;
    flex-shrink: 0;
    line-height:62px;
    font-size:14px;
    font-weight:600;
    color:#cccccc;
    margin-right:15px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}


#sports_live_select_match .match {
    margin-top:1px;
    display: block;
    position: relative;
    height:150px;
    overflow: hidden;
    background:#0d1d32;
}

#sports_live_select_match .match .game_home_icon {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    left:50%;
    top:80px;
    margin-left:-100px;
    background: #0344a1;
    border:1px solid #313742;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    object-fit: scale-down;
    padding:10px;
    transform: translate(-50%,-50%);
} 

#sports_live_select_match .match .game_away_icon {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    left:50%;
    top:80px;
    margin-left:100px;
    background: #d70029;
    border:1px solid #313742;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    object-fit: scale-down;
    padding:10px;
    transform: translate(-50%,-50%);
}

#sports_live_select_match .match .game_home_score {
    position: absolute;
    display: block;
    right:50%;
    top:80px;
    transform: translate(0,-50%);
    width:55px;
    margin-right:5px;
    text-align: center;
    color:#ffffff;
    font-weight:900;
    font-size:30px;
    font-family: 'Rajdhani';
}

#sports_live_select_match .match .game_away_score {
    position: absolute;
    display: block;
    left:50%;
    top:80px;
    transform: translate(0,-50%);
    width:55px;
    margin-left:5px;
    text-align: center;
    color:#ffffff;
    font-weight:900;
    font-size:30px;
    font-family: 'Rajdhani';
}

#sports_live_select_match .match .vs {
    position: absolute;
    display: block;
    left:50%;
    top:78px;
    color:#ffffff;
    transform: translate(-50%,-50%);
    font-weight:900;
    font-size:30px;
    font-family: 'Rajdhani';
}

#sports_live_select_match .match .game_home_name {
    position: absolute;
    display: block;
    right:50%;
    top:80px;
    transform: translate(0,-50%);
    margin-right:150px;
    text-align: right;
    color:#ffffff;
    font-weight:600;
    font-size:16px;
    left:20px;
}

#sports_live_select_match .match .game_away_name {
    position: absolute;
    display: block;
    left:50%;
    top:80px;
    transform: translate(0,-50%);
    margin-left:150px;
    text-align: left;
    color:#ffffff;
    font-weight:600;
    font-size:16px;
    right:20px;
}


@media screen and (max-width: 1900px) {
    #sports_live_select_match .match {
        height:200px;
    }

    #sports_live_select_match .match .league_name {
        font-size:15px;
    }

    #sports_live_select_match .match .game_datetime { 
        left:50%;
        right:auto;
        top:auto;
        bottom:40px;
        padding-left:5px;
        padding-right:5px;
        font-size:12px;
        transform: translate(-50%, 50%);
    }

        
    #sports_live_select_match .match .game_home_name {
        right:50%;
        left:20px;
        top:auto;
        bottom:40px;
        margin-right:40px;
        font-size:13px;
        transform: translate(0, 50%);
        text-align: center;
        width:auto;
    }

    #sports_live_select_match .match .game_away_name {
        position: absolute;
        display: block;
        left:50%;
        top:auto;
        bottom:40px;
        margin-left:40px;
        font-size:13px;
        transform: translate(0, 50%);
        text-align: center;
        width:auto;
    }
}


/*---------------------------------------------------------
    SPORTS LIVE BETTING LIST
---------------------------------------------------------*/
#sports_live_betting_list {
    display: block;
}

#sports_live_betting_list .betting_item {
    display: block;
}

#sports_live_betting_list .betting_item .title {
    display: block;
    height:50px;
    line-height: 50px;
    padding-left:15px;
    padding-right:15px;
    background:#07172d;
    margin-top:1px;
    border-left:2px solid #ef7c00;
}

#sports_live_betting_list .betting_item .list {
    display: block;
}

#sports_live_betting_list .betting_item .list .row {
    display: flex;
    margin-top:1px;
    margin-left:-1px;
}

#sports_live_betting_list .betting_item .list .row .betitem {
    display: flex;
    justify-content: space-between;
    width:100%;
    background:#0d1d32;
    margin-left:1px;
    height:40px;
    line-height:40px;
    padding-left:15px;
    padding-right:15px;
    font-size:12px;
    color:#efefef;
    cursor:pointer;
}

#sports_live_betting_list .betting_item .list .row .betitem.menuOff_up,
#sports_live_betting_list .betting_item .list .row .betitem:hover {
    background: #29324b;
}

#sports_live_betting_list .betting_item .list .row .betitem.menuOff_magam {
	opacity:.5;
}

#sports_live_betting_list .betting_item .list .row .betitem .label {
    color: #efefef;
}
@media screen and (max-width: 2200px) {
#sports_live_betting_list .betting_item .list .row .betitem.home .label ,
#sports_live_betting_list .betting_item .list .row .betitem.away .label {
    color: #efefef;
	width:90px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	}
}

@media screen and (max-width: 1600px) {
#sports_live_betting_list .betting_item .list .row .betitem.over .label ,
#sports_live_betting_list .betting_item .list .row .betitem.under .label {
    color: #efefef;
	width:90px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	}
}

#sports_live_betting_list .betting_item .list .row .betitem .odds {
    color:#ef7c00;
}

#sports_live_betting_list .betting_item .list .row .betitem.disabled {
    background: #08111d;
}

#sports_live_betting_list .betting_item .list .row .betitem.disabled * {
    color:#666666;
    text-decoration: line-through;
}

.video_tab {
    grid-column: span 6;
    grid-row: span 1;
    height:62px;
    display: grid;
    grid-gap: 5px;
    grid-template: repeat(1, 1fr) / repeat(2, 1fr);
}

.video_tab .tabitem {
    display: flex;
    justify-content: center;
    width: 100%;
    border: 3px solid #242424;
    cursor: pointer;
    border-radius: 10px;
}

.video_tab .tabitem:hover,
.video_tab .tabitem.active  {
    background: #29324b;
}

.video_tab .tabitem .icon {
    object-fit: none;
    object-position: center;
    width:65px;
}

.video_tab .tabitem .label {
    height:54px;
    line-height:54px;
    font-size:16px;
    margin-left:5px;
    font-family: 'Gmarket Sans';
    padding-top:4px;
}
