wanderersandwarriors.com Ads.txt file
<!doctype html>
<html lang="vi">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="/wp-content/themes/bongda/public/images/favicon.ico" type="image/x-icon">
<!-- This site is optimized with the Yoast SEO Premium plugin v15.0 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Mitom TV - Xem Trực Tiếp Bóng Đá hôm nay Mì Tôm full HD</title>
<meta name="description" content="Tường thuật trực tiếp bóng đá Mitom TV miễn phí mọi giải đấu tại Mitomf.tv✅ Link xem bóng đá trực tuyến hôm nay chất lượng cao Mì Tôm TV." />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<link rel="canonical" href="https://mitomzi.cc/" />
<meta property="og:locale" content="vi_VN" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Mitom TV - Xem Trực Tiếp Bóng Đá hôm nay Mì Tôm full HD" />
<meta property="og:description" content="Tường thuật trực tiếp bóng đá Mitom TV miễn phí mọi giải đấu tại Mitomf.tv✅ Link xem bóng đá trực tuyến hôm nay chất lượng cao Mì Tôm TV." />
<meta property="og:url" content="https://mitomzi.cc/"
<meta property="og:site_name" content="Mitom TV" />
<meta property="article:publisher" content="https://www.facebook.com/mitomcomtv/" />
<meta property="article:modified_time" content="2025-03-16T15:40:37+00:00" />
<meta property="og:image" content="https://cdn.mitomzi.cc/2022/08/logo-mitom-tv-truc-tiep-bong-da.jpg" />
<meta property="og:image:width" content="600" />
<meta property="og:image:height" content="600" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@mitomcomtv" />
<meta name="twitter:site" content="@mitomcomtv" />
<meta name="google-site-verification" content="Wn6Xxl5Dzw22XY8Cqsi7zwj9faX8OINHqOBG0-ARRCc" />
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//mitomzi.cc' />
<link rel='dns-prefetch' href='//static.mitomzi.cc' />
<link rel='dns-prefetch' href='//s.w.org' />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/mitomzi.cc\/wp-includes\/js\/wp-emoji.js?ver=5.9.3","twemoji":"https:\/\/mitomzi.cc\/wp-includes\/js\/twemoji.js?ver=5.9.3"}};
/**
* @output wp-includes/js/wp-emoji-loader.js
*/
( function( window, document, settings ) {
var src, ready, ii, tests;
// Create a canvas element for testing native browser support of emoji.
var canvas = document.createElement( 'canvas' );
var context = canvas.getContext && canvas.getContext( '2d' );
/**
* Checks if two sets of Emoji characters render the same visually.
*
* @since 4.9.0
*
* @private
*
* @param {number[]} set1 Set of Emoji character codes.
* @param {number[]} set2 Set of Emoji character codes.
*
* @return {boolean} True if the two sets render the same.
*/
function emojiSetsRenderIdentically( set1, set2 ) {
var stringFromCharCode = String.fromCharCode;
// Cleanup from previous test.
context.clearRect( 0, 0, canvas.width, canvas.height );
context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 );
var rendered1 = canvas.toDataURL();
// Cleanup from previous test.
context.clearRect( 0, 0, canvas.width, canvas.height );
context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 );
var rendered2 = canvas.toDataURL();
return rendered1 === rendered2;
}
/**
* Detects if the browser supports rendering emoji or flag emoji.
*
* Flag emoji are a single glyph made of two characters, so some browsers
* (notably, Firefox OS X) don't support them.
*
* @since 4.2.0
*
* @private
*
* @param {string} type Whether to test for support of "flag" or "emoji".
*
* @return {boolean} True if the browser can render emoji, false if it cannot.
*/
function browserSupportsEmoji( type ) {
var isIdentical;
if ( ! context || ! context.fillText ) {
return false;
}
/*
* Chrome on OS X added native emoji rendering in M41. Unfortunately,
* it doesn't work when the font is bolder than 500 weight. So, we
* check for bold rendering support to avoid invisible emoji in Chrome.
*/
context.textBaseline = 'top';
context.font = '600 32px Arial';
switch ( type ) {
case 'flag':
/*
* Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
* but has landed in Twemoji early, so we can add support for it, too.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (white flag emoji + transgender symbol).
*/
isIdentical = emojiSetsRenderIdentically(
[ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ],
[ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ]
);
if ( isIdentical ) {
return false;
}
/*
* Test for UN flag compatibility. This is the least supported of the letter locale flags,
* so gives us an easy test for full support.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly ([U] + [N]).
*/
isIdentical = emojiSetsRenderIdentically(
[ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ],
[ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ]
);
if ( isIdentical ) {
return false;
}
/*
* Test for English flag compatibility. England is a country in the United Kingdom, it
* does not have a two letter locale code but rather an five letter sub-division code.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
*/
isIdentical = emojiSetsRenderIdentically(
[ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ],
[ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ]
);
return ! isIdentical;
case 'emoji':
/*
* Burning Love: Just a hunk, a hunk of burnin' love.
*
* To test for Emoji 13.1 support, try to render a new emoji: Heart on Fire!
*
* The Heart on Fire emoji is a ZWJ sequence combining ❤️ Red Heart, a Zero Width Joiner and 🔥 Fire.
*
* 0x2764, 0xfe0f == Red Heart emoji.
* 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or
* 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
* 0xD83D, 0xDD25 == Fire.
*
* When updating this test for future Emoji releases, ensure that individual emoji that make up the
* sequence come from older emoji standards.
*/
isIdentical = emojiSetsRenderIdentically(
[0x2764, 0xfe0f, 0x200D, 0xD83D, 0xDD25],
[0x2764, 0xfe0f, 0x200B, 0xD83D, 0xDD25]
);
return ! isIdentical;
}
return false;
}
/**
* Adds a script to the head of the document.
*
* @ignore
*
* @since 4.2.0
*
* @param {Object} src The url where the script is located.
* @return {void}
*/
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = script.type = 'text/javascript';
document.getElementsByTagName( 'head' )[0].appendChild( script );
}
tests = Array( 'flag', 'emoji' );
settings.supports = {
everything: true,
everythingExceptFlag: true
};
/*
* Tests the browser support for flag emojis and other emojis, and adjusts the
* support settings accordingly.
*/
for( ii = 0; ii < tests.length; ii++ ) {
settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );
settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];
if ( 'flag' !== tests[ ii ] ) {
settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
}
}
settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;
// Sets DOMReady to false and assigns a ready function to settings.
settings.DOMReady = false;
settings.readyCallback = function() {
settings.DOMReady = true;
};
// When the browser can not render everything we need to load a polyfill.
if ( ! settings.supports.everything ) {
ready = function() {
settings.readyCallback();
};
/*
* Cross-browser version of adding a dom ready event.
*/
if ( document.addEventListener ) {
document.addEventListener( 'DOMContentLoaded', ready, false );
window.addEventListener( 'load', ready, false );
} else {
window.attachEvent( 'onload', ready );
document.attachEvent( 'onreadystatechange', function() {
if ( 'complete' === document.readyState ) {
settings.readyCallback();
}
} );
}
src = settings.source || {};
if ( src.concatemoji ) {
addScript( src.concatemoji );
} else if ( src.wpemoji && src.twemoji ) {
addScript( src.twemoji );
addScript( src.wpemoji );
}
}
} )( window, document, window._wpemojiSettings );
</script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://mitomzi.cc/wp-includes/css/dist/block-library/style.css?ver=5.9.3' media='all' />
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
</style>
<link rel='stylesheet' id='wp-pagenavi-css' href='https://mitomzi.cc/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70' media='all' />
<link rel='stylesheet' id='sage/home.css-css' href='https://static.mitomzi.cc/styles/home.css?ver=1754061482' media='all' />
<link rel='stylesheet' id='sage/home-popup.css-css' href='https://static.mitomzi.cc/styles/home-popup.css?ver=1753175563' media='all' />
<link rel='stylesheet' id='sage/skeleton.css-css' href='https://static.mitomzi.cc/styles/skeleton.css?ver=1744712679' media='all' />
<link rel='stylesheet' id='sage/detail-styles.css-css' href='https://static.mitomzi.cc/styles/detail-styles.css?ver=1753066533' media='all' />
<link rel='stylesheet' id='sage/app.css-css' href='https://static.mitomzi.cc/styles/app.css?ver=1750474730' media='all' />
<link rel='stylesheet' id='sage/custom.css-css' href='https://static.mitomzi.cc/styles/custom.css?ver=1751601650' media='all' />
<script src='https://mitomzi.cc/wp-includes/js/jquery/jquery.js?ver=3.6.0' id='jquery-core-js'></script>
<script src='https://mitomzi.cc/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script>
<link rel="https://api.w.org/" href="https://mitomzi.cc/wp-json/" /><link rel="alternate" type="application/json" href="https://mitomzi.cc/wp-json/wp/v2/pages/138" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://mitomzi.cc/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://mitomzi.cc/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.9.3" />
<link rel='shortlink' href='https://mitomzi.cc/' />
<link rel="alternate" type="application/json+oembed" href="https://mitomzi.cc/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fmitomzi.cc%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://mitomzi.cc/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fmitomzi.cc%2F&format=xml" />
<link rel="icon" href="https://cdn.mitomzi.cc/2022/08/favicon-mitom-tv.png" sizes="32x32" />
<link rel="icon" href="https://cdn.mitomzi.cc/2022/08/favicon-mitom-tv.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://cdn.mitomzi.cc/2022/08/favicon-mitom-tv.png" />
<meta name="msapplication-TileImage" content="https://cdn.mitomzi.cc/2022/08/favicon-mitom-tv.png" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FJJYJLV3Z6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FJJYJLV3Z6');
</script>
<meta name='dmca-site-verification' content='RXMvb1RUeHh2VlVqS3RncSt6ZXJ0Zz090' />
<meta name="google-site-verification" content="S1cT252HSLeHsXRAQpUL365a_MvUtBrON8SDlswSKW8" />
<style>
.entry-content table tr:nth-child(even) {background: none;}
.teambox__odds .soccer .item .green {
color: #63fe16 !important
}
.teambox__odds .soccer .item .orange {
color: #ff775f !important
}
#menu-item-37373 a{ background: #e19a00;
color: #000;}
#header p.mb-0,.block-k p.mb-0{margin-bottom: 5px !important;}
.loadmore {
color: #AEB4C7;
font-size: 13px;
display: inline-block !important;
width: 100%;
padding: 10px;
}
.tt-world-cup a{
background: url(https://i.imgur.com/3Q6ljMG.png) no-repeat center center !important;
background-size: contain !important;
color: transparent !important;
background-repeat: no-repeat !important;
width: 148px;
white-space: nowrap;
}
@media screen and (min-width: 1280px) {
.container {
max-width: 1360px;
}
}
@media (min-width: 1675px) {
.container {
max-width: 1360px;
}
}
@media screen and (max-width: 1300px) {
.footer-banner {width: auto !important;}
.footer-banner .closebtn{margin-right: auto !important;}
}
@media screen and (max-width: 991px) {
p.mb-0 img {height: 50px;width: 100%;}
.block-c p.mb-0 img {height: auto;}
#mophong {height: 315px !important;}
.block-ad img{height: 50px;width: 100%;}
#logo img, #logo-mb img{max-height: 40px !important;}
.matches-item .match-footer .text-commentator {text-align: center;}
}
</style>
<script type="text/javascript">
jQuery(document).ready(function($) {
var a = {
Android: function () {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function () {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function () {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function () {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function () {
return navigator.userAgent.match(/IEMobile/i);
},
any: function () {
return a.Android() || a.BlackBerry() || a.iOS() || a.Opera() || a.Windows();
},
};
var i, o;
(i = "desktop"),
$(window).on("resize", function () {
calc_menu();
});
calc_menu();
function calc_menu(){
var a = "desktop";
if ((matchMedia("only screen and (max-width: 991px)").matches && (a = "mobile"), a !== i))
if (((i = a), "mobile" === a)) {
// console.log('cccc');
var e = $("#mainnav").attr("id", "mainnav-mobi").hide(), o = $("#mainnav-mobi").find("li:has(ul)");
$(".menu-mobile").after(e), o.children("ul").hide(), o.children("a").after('<span class="icon icon-solid btn-submenu"></span>');
} else {
var s = $("#mainnav-mobi").attr("id", "mainnav").hide();
}
}
});
</script>
</head>
<body data-rsssl=1 class="home page-template-default page page-id-138 wp-embed-responsive">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-dark-grayscale">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0 0.49803921568627" />
<feFuncG type="table" tableValues="0 0.49803921568627" />
<feFuncB type="table" tableValues="0 0.49803921568627" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-grayscale">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0 1" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0 1" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-purple-yellow">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-blue-red">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0 1" />
<feFuncG type="table" tableValues="0 0.27843137254902" />
<feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-midnight">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0 0" />
<feFuncG type="table" tableValues="0 0.64705882352941" />
<feFuncB type="table" tableValues="0 1" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-magenta-yellow">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0.78039215686275 1" />
<feFuncG type="table" tableValues="0 0.94901960784314" />
<feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-purple-green">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0.44705882352941 0.4" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 0 0"
width="0"
height="0"
focusable="false"
role="none"
style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
>
<defs>
<filter id="wp-duotone-blue-orange">
<feColorMatrix
color-interpolation-filters="sRGB"
type="matrix"
values="
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
.299 .587 .114 0 0
"
/>
<feComponentTransfer color-interpolation-filters="sRGB" >
<feFuncR type="table" tableValues="0.098039215686275 1" />
<feFuncG type="table" tableValues="0 0.66274509803922" />
<feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<div id="app">
<script type="text/javascript">
// jQuery(document).ready(function($) {
// $('.slider').slick({
// infinite : true,
// prevArrow :" <button type='button' class='slick-prev'><i class='fas fa-angle-left'></i></button>",
// nextArrow :" <button type='button' class='slick-next'><i class='fas fa-angle-right'></i></button>"
// });
// });
</script>
<script>
var sport_data = {"football":{"api":"https:\/\/v1.api-football.xyz\/football","name":"B\u00f3ng \u0111\u00e1","mqtt_topic":"fb-live","odd_company_id":21,"status_deny":[8,10,11,12],"status_playing":[2,3,4,5,6,7],"status":["B\u1ea5t th\u01b0\u1eddng","Ch\u01b0a b\u1eaft \u0111\u1ea7u","Hi\u1ec7p 1","HT","Hi\u1ec7p 2","Hi\u1ec7p ph\u1ee5","Hi\u1ec7p ph\u1ee5","Pen","K\u1ebft th\u00fac","Tr\u00ec ho\u00e3n","Gi\u00e1n \u0111o\u1ea1n","C\u1eaft m\u1ed9t n\u1eeda","H\u1ee7y b\u1ecf","Ch\u01b0a x\u00e1c \u0111\u1ecbnh"]},"basketball":{"api":"https:\/\/bkb.api-football.xyz\/basketball","name":"B\u00f3ng r\u1ed5","mqtt_topic":"basket-live","odd_company_id":21,"status_deny":[10,11,12,13,14],"status_playing":[2,3,4,5,6,7,8,9],"status":["B\u1ea5t th\u01b0\u1eddng","Ch\u01b0a b\u1eaft \u0111\u1ea7u","Hi\u1ec7p 1","H\u1ebft hi\u1ec7p 1","Hi\u1ec7p 2","H\u1ebft hi\u1ec7p 2","Hi\u1ec7p 3","H\u1ebft hi\u1ec7p 3","Hi\u1ec7p 4","Hi\u1ec7p ph\u1ee5","K\u1ebft th\u00fac","Gi\u00e1n \u0111o\u1ea1n","H\u1ee7y b\u1ecf","Ph\u1ea7n m\u1edf r\u1ed9ng","C\u1eaft m\u1ed9t n\u1eeda","Ch\u01b0a x\u00e1c \u0111\u1ecbnh"]},"tennis":{"api":"https:\/\/tn.api-football.xyz\/tennis","name":"Tennis","mqtt_topic":"tennis-live","odd_company_id":2,"status_deny":[16,100],"status_playing":[3,51,52,53,54,55],"status":{"0":"B\u1ea5t th\u01b0\u1eddng","1":"Ch\u01b0a b\u1eaft \u0111\u1ea7u","3":"\u0110ang di\u1ec5n ra","51":"SET 1","52":"SET 2","53":"SET 3","54":"SET 4","55":"SET 5","100":"K\u1ebft th\u00fac","20":"Th\u1eafng v\u00e1n","21":"R\u00fat lui","22":"Th\u1eafng v\u00e1n 1","23":"Th\u1eafng v\u00e1n 2","24":"R\u00fat lui 1","25":"R\u00fat lui 2","26":"M\u1ea5t quy\u1ec1n 1","27":"M\u1ea5t quy\u1ec1n 2","14":"Ho\u00e3n l\u1ea1i","15":"B\u1ecb tr\u1ec5","16":"\u0110\u00e3 h\u1ee7y","17":"Gi\u00e1n \u0111o\u1ea1n","18":"T\u1ea1m d\u1eebng","19":"C\u1eaft \u0111\u00f4i","99":"Ch\u01b0a x\u00e1c \u0111\u1ecbnh"}},"badminton":{"api":"https:\/\/badminton.api-football.xyz\/badminton","name":"C\u1ea7u l\u00f4ng","mqtt_topic":"badminton-live","odd_company_id":2,"status_deny":[16,100],"status_playing":[3,51,331,52,332,53,333,54,334,55],"status":{"0":"B\u1ea5t th\u01b0\u1eddng","1":"Ch\u01b0a b\u1eaft \u0111\u1ea7u","3":"\u0110ang di\u1ec5n ra","51":"SET 1","331":"T\u1ea1m d\u1eebng 1","52":"SET 2","332":"T\u1ea1m d\u1eebng 2","53":"SET 3","333":"T\u1ea1m d\u1eebng 3","54":"SET 4","334":"T\u1ea1m d\u1eebng 4","55":"SET 5","100":"K\u1ebft th\u00fac","20":"Th\u1eafng v\u00e1n","21":"R\u00fat lui","22":"Th\u1eafng v\u00e1n 1","23":"Th\u1eafng v\u00e1n 2","24":"R\u00fat lui 1","25":"R\u00fat lui 2","26":"M\u1ea5t quy\u1ec1n 1","27":"M\u1ea5t quy\u1ec1n 2","14":"Ho\u00e3n l\u1ea1i","15":"B\u1ecb tr\u1ec5","16":"\u0110\u00e3 h\u1ee7y","17":"Gi\u00e1n \u0111o\u1ea1n","18":"T\u1ea1m d\u1eebng","19":"C\u1eaft \u0111\u00f4i","99":"Ch\u01b0a x\u00e1c \u0111\u1ecbnh"}},"volleyball":{"api":"https:\/\/volleyball.api-football.xyz\/volleyball","name":"B\u00f3ng chuy\u1ec1n","mqtt_topic":"volleyball-live","odd_company_id":2,"status_deny":[16,100],"status_playing":[3,432,434,436,438,440],"status":{"0":"B\u1ea5t th\u01b0\u1eddng","1":"Ch\u01b0a b\u1eaft \u0111\u1ea7u","3":"\u0110ang di\u1ec5n ra","432":"SET 1","434":"SET 2","436":"SET 3","438":"SET 4","440":"SET 5","100":"K\u1ebft th\u00fac","14":"Ho\u00e3n l\u1ea1i","15":"B\u1ecb tr\u1ec5","16":"\u0110\u00e3 h\u1ee7y","17":"Gi\u00e1n \u0111o\u1ea1n","19":"C\u1eaft 1 n\u1eefa","99":"Ch\u01b0a x\u00e1c \u0111\u1ecbnh"}}};
var sport_list = ["football","basketball","tennis","badminton","volleyball"];
</script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap" rel="stylesheet">
<style>
@keyframes slide1{0%{transform:translateX(-10px) rotate(-15deg)}50%,100%{transform:translate(139px) rotate(-15deg);background-color:transparent}}.winner-chip__winnerBox{position:relative;overflow:hidden}.winner-chip__animation_box_line1{width:.75rem;height:35px;transform:translateX(0px) rotate(-15deg);flex-shrink:0;background:linear-gradient(86.96deg,rgba(255,255,255,0) 3.28%,rgba(255,255,255,0.6) 48.34%,rgba(255,255,255,0) 93.41%);position:absolute;animation:slide1 2600ms ease-in-out infinite;top:-2px}
@media (max-width: 767px) { body { padding-top: 56px !important; } }
#header {
z-index: 999 !important;
padding: 0px !important;
position: fixed !important;
top: 0;
width: 100%;
}
#app {
padding-top: 70px;
}
@media (max-width: 991px) {
#app {
padding-top: 0;
}
}
.menu-primary {
animation: unset !important;
}
/* TV ẩn quảng cáo */
.hide-ads-on-tv .ads-item {
display: none !important;
}
</style>
<script>
function isSmartTV() {
const userAgent = navigator.userAgent.toLowerCase();
// Danh sách từ khóa của TV
const tvKeywords = /smart-tv|smarttv|googletv|appletv|hbbtv|netcast|viera|webos|firetv|tizen|roku|sony|bravia|android tv|hisense|philips|sharp|lg|samsungtv/;
// Danh sách từ khóa của thiết bị di động cần loại bỏ
const mobileKeywords = /mobile|iphone|ipad|ipod|android(?! tv)|tablet/;
// Nếu có từ khóa của TV nhưng không có từ khóa của điện thoại, thì là TV
return tvKeywords.test(userAgent) && !mobileKeywords.test(userAgent);
}
// TV thì ẩn quảng cáo
if (isSmartTV()) {
document.body.classList.add("hide-ads-on-tv");
}
</script>
<script>
var sport_data = {"football":{"api":"https:\/\/v1.api-football.xyz\/football","name":"B\u00f3ng \u0111\u00e1","mqtt_topic":"fb-live","odd_company_id":21,"status_deny":[8,10,11,12],"status_playing":[2,3,4,5,6,7],"status":["B\u1ea5t th\u01b0\u1eddng","Ch\u01b0a b\u1eaft \u0111\u1ea7u","Hi\u1ec7p 1","HT","Hi\u1ec7p 2","Hi\u1ec7p ph\u1ee5","Hi\u1ec7p ph\u1ee5","Pen","K\u1ebft th\u00fac","Tr\u00ec ho\u00e3n","Gi\u00e1n \u0111o\u1ea1n","C\u1eaft m\u1ed9t n\u1eeda","H\u1ee7y b\u1ecf","Ch\u01b0a x\u00e1c \u0111\u1ecbnh"]},"basketball":{"api":"https:\/\/bkb.api-football.xyz\/basketball","name":"B\u00f3ng r\u1ed5","mqtt_topic":"basket-live","odd_company_id":21,"status_deny":[10,11,12,13,14],"status_playing":[2,3,4,5,6,7,8,9],"status":["B\u1ea5t th\u01b0\u1eddng","Ch\u01b0a b\u1eaft \u0111\u1ea7u","Hi\u1ec7p 1","H\u1ebft hi\u1ec7p 1","Hi\u1ec7p 2","H\u1ebft hi\u1ec7p 2","Hi\u1ec7p 3","H\u1ebft hi\u1ec7p 3","Hi\u1ec7p 4","Hi\u1ec7p ph\u1ee5","K\u1ebft th\u00fac","Gi\u00e1n \u0111o\u1ea1n","H\u1ee7y b\u1ecf","Ph\u1ea7n m\u1edf r\u1ed9ng","C\u1eaft m\u1ed9t n\u1eeda","Ch\u01b0a x\u00e1c \u0111\u1ecbnh"]},"tennis":{"api":"https:\/\/tn.api-football.xyz\/tennis","name":"Tennis","mqtt_topic":"tennis-live","odd_company_id":2,"status_deny":[16,100],"status_playing":[3,51,52,53,54,55],"status":{"0":"B\u1ea5t th\u01b0\u1eddng","1":"Ch\u01b0a b\u1eaft \u0111\u1ea7u","3":"\u0110ang di\u1ec5n ra","51":"SET 1","52":"SET 2","53":"SET 3","54":"SET 4","55":"SET 5","100":"K\u1ebft th\u00fac","20":"Th\u1eafng v\u00e1n","21":"R\u00fat lui","22":"Th\u1eafng v\u00e1n 1","23":"Th\u1eafng v\u00e1n 2","24":"R\u00fat lui 1","25":"R\u00fat lui 2","26":"M\u1ea5t quy\u1ec1n 1","27":"M\u1ea5t quy\u1ec1n 2","14":"Ho\u00e3n l\u1ea1i","15":"B\u1ecb tr\u1ec5","16":"\u0110\u00e3 h\u1ee7y","17":"Gi\u00e1n \u0111o\u1ea1n","18":"T\u1ea1m d\u1eebng","19":"C\u1eaft \u0111\u00f4i","99":"Ch\u01b0a x\u00e1c \u0111\u1ecbnh"}},"badminton":{"api":"https:\/\/badminton.api-football.xyz\/badminton","name":"C\u1ea7u l\u00f4ng","mqtt_topic":"badminton-live","odd_company_id":2,"status_deny":[16,100],"status_playing":[3,51,331,52,332,53,333,54,334,55],"status":{"0":"B\u1ea5t th\u01b0\u1eddng","1":"Ch\u01b0a b\u1eaft \u0111\u1ea7u","3":"\u0110ang di\u1ec5n ra","51":"SET 1","331":"T\u1ea1m d\u1eebng 1","52":"SET 2","332":"T\u1ea1m d\u1eebng 2","53":"SET 3","333":"T\u1ea1m d\u1eebng 3","54":"SET 4","334":"T\u1ea1m d\u1eebng 4","55":"SET 5","100":"K\u1ebft th\u00fac","20":"Th\u1eafng v\u00e1n","21":"R\u00fat lui","22":"Th\u1eafng v\u00e1n 1","23":"Th\u1eafng v\u00e1n 2","24":"R\u00fat lui 1","25":"R\u00fat lui 2","26":"M\u1ea5t quy\u1ec1n 1","27":"M\u1ea5t quy\u1ec1n 2","14":"Ho\u00e3n l\u1ea1i","15":"B\u1ecb tr\u1ec5","16":"\u0110\u00e3 h\u1ee7y","17":"Gi\u00e1n \u0111o\u1ea1n","18":"T\u1ea1m d\u1eebng","19":"C\u1eaft \u0111\u00f4i","99":"Ch\u01b0a x\u00e1c \u0111\u1ecbnh"}},"volleyball":{"api":"https:\/\/volleyball.api-football.xyz\/volleyball","name":"B\u00f3ng chuy\u1ec1n","mqtt_topic":"volleyball-live","odd_company_id":2,"status_deny":[16,100],"status_playing":[3,432,434,436,438,440],"status":{"0":"B\u1ea5t th\u01b0\u1eddng","1":"Ch\u01b0a b\u1eaft \u0111\u1ea7u","3":"\u0110ang di\u1ec5n ra","432":"SET 1","434":"SET 2","436":"SET 3","438":"SET 4","440":"SET 5","100":"K\u1ebft th\u00fac","14":"Ho\u00e3n l\u1ea1i","15":"B\u1ecb tr\u1ec5","16":"\u0110\u00e3 h\u1ee7y","17":"Gi\u00e1n \u0111o\u1ea1n","19":"C\u1eaft 1 n\u1eefa","99":"Ch\u01b0a x\u00e1c \u0111\u1ecbnh"}}};
var sport_list = ["football","basketball","tennis","badminton","volleyball"];
</script>
<header id="header" class="mb-1 as-hide-popup-chat">
<div class="d-none d-lg-block menu-primary">
<div class="container">
<div class="row">
<div class="col-12 d-flex justify-content-between align-items-center">
<div id="logo">
<a title="" href="https://mitomzi.cc/">
<img class="lazyload" src="https://static.mitomzi.cc/images/header/logo.png" alt="">
</a>
</div>
<nav class="container-main-menu" role="navigation">
<ul id="menu-menu-header" class="header-nav-main"><li id="menu-item-229022" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-138 current_page_item menu-item-229022"><a href="https://mitomzi.cc/" aria-current="page">Trang chủ</a></li>
<li id="menu-item-70" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-70"><a href="https://mitomzi.cc/highlights/">Highlight</a></li>
<li id="menu-item-67" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-67"><a href="https://mitomzi.cc/lich-thi-dau/">Lịch Thi Đấu</a></li>
<li id="menu-item-65" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-65"><a href="https://mitomzi.cc/bxh/">BXH</a></li>
<li id="menu-item-1811" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1811"><a href="https://mitomzi.cc/ty-le-keo/">Tỷ lệ kèo</a></li>
<li id="menu-item-66" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66"><a href="https://mitomzi.cc/ket-qua/">Kết Quả</a></li>
<li id="menu-item-68" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68"><a href="https://mitomzi.cc/livescore/">Livescore</a></li>
<li id="menu-item-925" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-925"><a href="https://mitomzi.cc/tin-tuc/">Tin tức</a></li>
<li id="menu-item-202783" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-202783"><a href="https://mitomzi.cc/tuyen-dung/">Tuyển Dụng</a></li>
</ul>
<div class="menu-top-wrapper menu-top-nha-cai ml-3">
<a target="_blank" class="menu-top" rel="nofollow" href="https://xoilacz.co/top-nha-cai/">
Nhà cái uy tín
</a>
</div>
<div class="menu-top-wrapper ml-3" style="margin-top: 16px;">
<a target="_blank" class="btn-8xbet" rel="nofollow" href="https://15.235.211.192/xoilacz">
Cược 8xbet
</a>
</div>
</nav>
</div>
</div>
</div>
</div>
<div class="d-block d-lg-none py-2 menu-mobile">
<div class="container">
<div class="row">
<div class="col-12 d-flex justify-content-between align-items-center">
<div id="logo-mb">
<a title="" href="https://mitomzi.cc">
<img class="lazyload" style="max-height:60px;" src="https://mitomzi.cc/wp-content/themes/bongda/public/images/mitom2.com.png" alt="">
</a>
</div>
<a rel="nofollow" target="_blank" class="d-block d-lg-none btn-8xbet" href="https://15.235.211.177/xoilac" >
Cược 8xbet
</a>
<div class="button-navbar">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<nav id="mainnav" class="mainnav">
<ul id="menu-menu-header-1" class="header-nav-main"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-138 current_page_item menu-item-229022"><a href="https://mitomzi.cc/" aria-current="page">Trang chủ</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-70"><a href="https://mitomzi.cc/highlights/">Highlight</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-67"><a href="https://mitomzi.cc/lich-thi-dau/">Lịch Thi Đấu</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-65"><a href="https://mitomzi.cc/bxh/">BXH</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1811"><a href="https://mitomzi.cc/ty-le-keo/">Tỷ lệ kèo</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66"><a href="https://mitomzi.cc/ket-qua/">Kết Quả</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68"><a href="https://mitomzi.cc/livescore/">Livescore</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-925"><a href="https://mitomzi.cc/tin-tuc/">Tin tức</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-202783"><a href="https://mitomzi.cc/tuyen-dung/">Tuyển Dụng</a></li>
</ul>
<div class="menu-top-wrapper menu-top-nha-cai ml-2" style="width:114px">
<a class="menu-top" rel="nofollow" target="_blank" href="https://xoilacz.co/top-nha-cai/">
Nhà cái uy tín
</a>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>
<div class="text-center p-1 d-block d-lg-none as-hide-popup-chat">
<!--a rel="nofollow" target="_blank" class="d-block" href="https://fora.tv/" style="color: #fff;padding: 0px 8px;border-radius: 5px;"><img src="https://r2.plvb.xyz/uploads/634439399b267c7396147615/1692884274005.gif" style="width: 150px;"></a-->
</div>
<div class="sub-menu d-none d-lg-flex as-hide-popup-chat">
<div class="container">
<ul class="d-flex">
</ul>
</div>
</div>
<style>
.textwidget p{margin-bottom: 5px;}
@media screen and (max-width:991px) {
#header {
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}
}
</style>
<div class="d-block d-lg-none as-hide-popup-chat ads-item">
<p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
<p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div>
<div class="container mt-1 d-none d-lg-block as-hide-popup-chat ads-item">
<div class="row">
<div class="col-12"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/134dayyrzl-1.gif" alt="8XBET">
</a>
</p>
<p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/134dayyrzl-1.gif" alt="8XBET">
</a>
</p>
</div>
</div>
<div class="row">
<div class="col-6 pr-1">
</div>
<div class="col-6 pl-1">
</div>
</div>
</div>
<style>
.link-video {overflow-x: auto;
white-space: nowrap;}
.tt-bdif a{
color: transparent !important;
display: inline-block;
width: 150px;
/* height: 40px; */
background: url(https://r2.plvb.xyz/uploads/634439399b267c7396147615/1692884274005.gif) no-repeat center center !important;
white-space: nowrap;
background-size: contain !important;
}
@media screen and (max-width: 991px) {
ul.blv {max-width: 200px;overflow-x: scroll;}
}
</style>
<svg aria-hidden="true" style="position: absolute; width: 0px; height: 0px; overflow: hidden;">
<symbol id="tennis-serve" width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1338_1255)">
<path d="M7.76001 4.64717C7.782 4.65248 7.782 4.65248 7.76001 4.64717C7.3891 6.86204 5.21124 8.26898 3.03044 7.70845L3.03575 7.68645C3.34596 5.43368 5.57842 3.99335 7.76001 4.64717Z" fill="#FFE400"/>
<path d="M0.349107 2.80279C0.945402 0.95647 2.84576 -0.168227 4.76179 0.235393C4.22924 2.15527 2.29323 3.28301 0.349107 2.80279Z" fill="#FFE400"/>
<path d="M7.83429 4.33921C5.45473 3.63766 3.06152 5.21382 2.73619 7.62587C0.892121 6.97193 -0.186325 5.02454 0.274939 3.11076C2.39505 3.63339 4.49484 2.40547 5.08347 0.301268C6.83041 0.827059 7.99447 2.51579 7.83429 4.33921Z" fill="#5EB24A"/>
</g>
<defs>
<clipPath id="clip0_1338_1255">
<rect width="8" height="8" fill="white"/>
</clipPath>
</defs>
</symbol>
<symbol id="badminton-serve" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.91286 7.48768C9.96081 7.43972 10.0259 7.41277 10.0937 7.41278C10.1615 7.41278 10.2265 7.43973 10.2745 7.48769L10.6786 7.89192C10.6786 7.89193 10.6786 7.89194 10.6786 7.89195C11.448 8.66143 11.4481 9.90907 10.6786 10.6784C9.90915 11.4479 8.66202 11.4483 7.89214 10.6784L7.89205 10.6783L7.48818 10.2741C7.38842 10.1742 7.38845 10.0124 7.48826 9.91259L9.91286 7.48768Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.80657 2.92013C4.84222 2.83697 4.91917 2.77884 5.00891 2.76729C5.09866 2.75573 5.18782 2.79247 5.24338 2.86389L9.48734 8.31984C9.56654 8.42167 9.55748 8.56656 9.46621 8.65773L9.06171 9.06173C8.96184 9.16148 8.80004 9.16143 8.70023 9.06162L4.26288 4.62417C4.2474 4.61005 4.23354 4.59392 4.22173 4.57601C4.17442 4.50425 4.16633 4.41352 4.2002 4.33452L4.80657 2.92013Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.35537 2.17931C6.47479 2.12811 6.61363 2.17463 6.6781 2.28745L9.91144 7.9454C9.96862 8.04546 9.9518 8.1714 9.87036 8.25294L9.46649 8.65732C9.41465 8.70923 9.343 8.73637 9.26978 8.73183C9.19656 8.7273 9.12881 8.69153 9.08377 8.63362L4.83981 3.17767C4.79116 3.11513 4.77426 3.03357 4.79404 2.95685C4.81382 2.88013 4.86806 2.81691 4.94088 2.78569L6.35537 2.17931Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.82741 0.899255C6.86731 0.806183 6.95838 0.745431 7.05964 0.744336C7.1609 0.74324 7.25326 0.802009 7.29517 0.894196L10.3264 7.56266C10.3705 7.65973 10.3498 7.77398 10.2743 7.84934L9.87009 8.25322C9.81373 8.30953 9.73435 8.33635 9.65539 8.32576C9.57643 8.31517 9.50692 8.26838 9.46739 8.19921L6.23405 2.54125C6.19426 2.47162 6.18944 2.38736 6.22104 2.31365L6.82741 0.899255Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.33453 4.20018C4.43064 4.15899 4.54214 4.18046 4.61608 4.2544L9.06166 8.70033C9.16146 8.80014 9.1615 8.96193 9.06177 9.0618L8.65789 9.46618C8.56673 9.55746 8.42184 9.56652 8.32001 9.48732L2.86381 5.24338C2.79239 5.18783 2.75565 5.09866 2.7672 5.00892C2.77876 4.91917 2.83688 4.84222 2.92005 4.80657L4.33453 4.20018Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2.7856 4.94091C2.81681 4.86808 2.88003 4.81384 2.95675 4.79405C3.03348 4.77426 3.11504 4.79116 3.17758 4.83981L8.63378 9.08374C8.6917 9.12879 8.72747 9.19654 8.732 9.26977C8.73653 9.343 8.70938 9.41465 8.65746 9.46649L8.25334 9.87C8.1718 9.95141 8.04589 9.96823 7.94584 9.91107L2.28752 6.67814C2.1747 6.61368 2.12817 6.47486 2.17936 6.35543L2.7856 4.94091Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2.31369 6.22106C2.38739 6.18946 2.47165 6.19428 2.54127 6.23406L8.19959 9.46698C8.26879 9.50651 8.31559 9.57605 8.32617 9.65503C8.33675 9.73401 8.3099 9.81342 8.25355 9.86977L7.84918 10.2741C7.77382 10.3495 7.65961 10.3702 7.56259 10.3261L0.89415 7.2952C0.801959 7.2533 0.743186 7.16094 0.74428 7.05968C0.745375 6.95842 0.806129 6.86734 0.899203 6.82744L2.31369 6.22106Z" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.77848 8.32525L8.32544 3.77856" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.33594 6.00146L6.00184 9.33589" stroke="#5EB24A" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="volleyball-serve" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 11C3.23668 11 1 8.76373 1 6C1 3.23668 3.23627 1 6 1C8.76334 1 11 3.23624 11 6C11 8.76334 8.76376 11 6 11Z" stroke="#00eb1f" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M10.7333 7.54949C10.0162 6.41333 8.74949 5.65709 7.30956 5.65709C6.96518 5.65709 6.6307 5.70034 6.31128 5.78171" stroke="#00eb1f" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M4.19792 7.12012C3.37572 6.02717 2.88794 4.669 2.88794 3.19916C2.88794 2.80064 2.92381 2.41034 2.99246 2.0313" stroke="#00eb1f" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M6.01557 1.02077C5.61194 1.64998 5.37766 2.39774 5.37766 3.19917C5.37766 4.18006 5.7286 5.08056 6.3115 5.78172C5.56878 6.67523 4.44918 7.24481 3.19924 7.24481C2.41461 7.24481 1.68142 7.02027 1.06055 6.63205" stroke="#00eb1f" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M5.3855 3.45645C5.994 3.26862 6.64019 3.16746 7.3095 3.16746C8.50081 3.16746 9.61869 3.4879 10.5815 4.04709" stroke="#00eb1f" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M9.0734 6.06212C8.01021 8.23469 5.77651 9.73444 3.19923 9.73444C3.02581 9.73444 2.85392 9.72766 2.68384 9.71432" stroke="#00eb1f" stroke-width="1.3" stroke-miterlimit="10"/>
</symbol>
<symbol id="football-icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.39846 0.633368C4.32475 1.06869 3.3613 1.70876 2.53515 2.53467C1.70876 3.36082 1.06941 4.32451 0.633847 5.39798C0.213355 6.4351 0 7.53106 0 8.65524C0 9.77918 0.213355 10.8751 0.633847 11.9118C1.06941 12.9855 1.70899 13.9492 2.53515 14.7751C3.3613 15.6015 4.32451 16.2411 5.39846 16.6764C6.43558 17.0974 7.5313 17.31 8.65548 17.31C9.77966 17.31 10.8751 17.0966 11.9123 16.6764C12.9857 16.2411 13.9497 15.6015 14.7756 14.7751C15.602 13.9492 16.2415 12.986 16.6769 11.9118C17.0974 10.8751 17.3102 9.77918 17.3102 8.65524C17.3102 7.53106 17.0971 6.4351 16.6769 5.39798C16.2415 4.32451 15.6015 3.36058 14.7756 2.53467C13.9497 1.70876 12.9867 1.06869 11.9123 0.633368C10.8751 0.213116 9.77966 0 8.65548 0C7.5313 0 6.43558 0.213116 5.39846 0.633368ZM2.16321 12.2988C1.74631 12.0371 1.36217 11.7357 1.02205 11.3808C0.502533 9.91887 0.414512 8.33616 0.758703 6.83383C0.920633 6.51451 1.10481 6.20787 1.31314 5.91415C1.37748 5.8235 1.43704 5.72902 1.50592 5.641L3.45913 6.79675C3.45913 6.81206 3.45913 6.8288 3.45913 6.84579C3.45411 7.8963 3.56078 8.93915 3.77318 9.96694C3.7739 9.97173 3.77462 9.97436 3.77557 9.97866L2.2608 12.3538C2.22779 12.3371 2.19502 12.3189 2.16321 12.2988ZM7.97068 16.314C8.3077 16.486 8.65428 16.6312 9.01043 16.7493C7.49757 16.8151 5.96964 16.4606 4.61895 15.6857L7.89319 16.2691C7.9183 16.2851 7.9439 16.3004 7.97068 16.314ZM7.95872 15.723L4.09489 15.0344C3.64283 14.4854 3.23621 13.9047 2.88675 13.284C2.79778 13.1261 2.69851 12.9728 2.62317 12.808L4.13651 10.4353C4.16999 10.4436 4.20731 10.4525 4.24964 10.4637C5.19635 10.717 6.1598 10.8971 7.12994 11.0383C7.18663 11.0462 7.23399 11.0531 7.27441 11.0574L9.08841 14.1939C8.77364 14.6364 8.45528 15.0765 8.12998 15.5118C8.07593 15.5843 8.01852 15.6539 7.95872 15.723ZM14.3871 14.3869C14.0795 14.6947 13.753 14.9722 13.4112 15.2195C13.3546 14.7665 13.2567 14.3225 13.1187 13.8889L15.0542 10.2781C15.5874 10.0354 16.1016 9.76005 16.579 9.41873C16.6415 9.37448 16.6934 9.32496 16.7336 9.27091C16.5934 11.1368 15.8112 12.963 14.3871 14.3869ZM14.3013 9.70408C14.3733 9.84137 14.4443 9.9801 14.5156 10.1207L12.6461 13.6081C12.6353 13.6105 12.625 13.6129 12.6143 13.6143C11.6037 13.803 10.585 13.9035 9.55769 13.9083L7.69203 10.6824C7.9824 10.1432 8.27015 9.60194 8.5555 9.06042C8.74924 8.69303 8.93963 8.32325 9.12979 7.9537L12.991 7.55713C13.4639 8.25077 13.9119 8.95925 14.3013 9.70408ZM13.5179 5.56757C13.3347 6.05144 13.1386 6.5303 12.9436 7.01011L9.18217 7.39639C9.1372 7.33708 9.09056 7.27871 9.04153 7.22298C8.59735 6.71997 8.15031 6.22007 7.70399 5.71873C7.70806 5.71371 7.71212 5.70988 7.71619 5.70534C7.53608 5.52547 7.35549 5.3456 7.17539 5.16525L8.22255 2.01252C8.29478 1.99339 8.3675 1.97736 8.44093 1.96947C9.01019 1.91159 9.58018 1.84605 10.1509 1.81304C10.5003 1.79343 10.8517 1.78219 11.2071 1.8073L13.798 4.72754C13.7088 5.0093 13.6217 5.29178 13.5179 5.56757ZM14.3871 2.92311C15.1018 3.63828 15.6553 4.45439 16.0466 5.32623C15.5625 4.99304 15.0449 4.71893 14.5007 4.49553C14.4161 4.46061 14.3292 4.42975 14.241 4.39938L11.6908 1.52506C11.7085 1.40092 11.7178 1.27654 11.7216 1.15121C12.6918 1.54611 13.6012 2.13738 14.3871 2.92311ZM6.05958 1.00028C6.06962 1.0077 6.07441 1.01392 6.08015 1.01559C6.66305 1.21699 7.19332 1.51358 7.69323 1.86542L6.71495 4.8115C6.70993 4.81293 6.70514 4.81437 6.70036 4.81652C6.50016 4.89928 6.29613 4.97343 6.09904 5.06312C5.287 5.43219 4.49529 5.84096 3.7495 6.33105L1.81902 5.18893C1.82189 5.12866 1.83218 5.06743 1.85275 5.01289C1.98239 4.66751 2.10987 4.3202 2.25649 3.98175C2.36939 3.72104 2.49807 3.46918 2.63848 3.22305C2.73033 3.12164 2.82552 3.02118 2.92359 2.92311C3.84039 2.00654 4.92391 1.35571 6.07751 0.970862C6.07153 0.98019 6.06532 0.989997 6.05958 1.00028Z" fill="#9C9C9C"/>
</symbol>
<symbol id="basketball-icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.2168 1.13294C13.8297 1.13301 17.583 4.88723 17.583 9.50013C17.5829 14.113 13.8296 17.8663 9.2168 17.8663C4.60389 17.8663 0.84968 14.113 0.849609 9.50013C0.849609 4.88718 4.60385 1.13294 9.2168 1.13294ZM3.68652 14.212C4.89312 15.6255 6.6529 16.5776 8.61523 16.7462C9.64498 15.3934 10.5872 13.5314 11.2285 11.3937L11.2305 11.3888L11.3066 11.1798C11.6922 10.1881 12.3574 9.33405 13.209 8.73353C13.0299 8.38426 12.8311 8.03452 12.6113 7.6847L3.68652 14.212ZM13.71 9.77259C13.0655 10.2789 12.5787 10.9812 12.3271 11.7638V11.7648C11.7077 13.6526 10.8929 15.3778 9.98535 16.7316C11.7704 16.5669 13.3787 15.7209 14.5352 14.4679C14.5357 14.3734 14.5394 14.2654 14.5645 14.171C14.5624 12.6411 14.2493 11.1399 13.71 9.77259ZM11.1982 5.88587C10.29 6.5429 9.20675 6.93177 8.06055 6.93177C5.82783 6.93179 3.75136 7.26411 2.15625 7.83411C2.0192 8.35832 1.96191 8.91299 1.96191 9.50013C1.96194 10.9121 2.35865 12.2097 3.04102 13.3136L12.001 6.81361C11.7478 6.49006 11.4914 6.18704 11.1982 5.88587ZM16.4521 8.89271C15.8177 8.85807 15.1901 8.96267 14.6279 9.20423C15.1318 10.4098 15.4472 11.6847 15.5527 13.0099C16.1364 11.9673 16.4707 10.7697 16.4707 9.50013C16.4707 9.292 16.4692 9.0913 16.4521 8.89271ZM13.5078 7.04115C13.7417 7.43143 13.9748 7.8277 14.1895 8.24427C14.8397 7.95739 15.5555 7.81557 16.2764 7.81751C16.0977 7.05021 15.8022 6.3334 15.3916 5.6847L13.5078 7.04115ZM6.31738 2.84974C4.66506 3.54945 3.3344 4.88922 2.57812 6.51966C4.16002 6.07199 6.05418 5.81948 8.0293 5.81947C8.84235 5.81947 9.65234 5.58203 10.3428 5.11439C9.18448 4.13592 7.83515 3.35364 6.31738 2.84974ZM13.0205 3.32044C12.7997 4.00479 12.4389 4.61429 11.9805 5.15052C12.2909 5.46972 12.5808 5.80935 12.8672 6.16908L14.7461 4.78724C14.2544 4.21196 13.6724 3.71029 13.0205 3.32044ZM9.2168 2.24525C8.80593 2.24525 8.41118 2.2773 8.03223 2.33802C9.19811 2.86543 10.2659 3.55331 11.1982 4.38099C11.5741 3.9231 11.8586 3.37964 12.0322 2.80775C11.149 2.44298 10.2113 2.24526 9.2168 2.24525Z" fill="#9C9C9C" stroke="#9C9C9C" stroke-width="0.3"/>
</symbol>
<symbol id="tennis-icon" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.30664 0.41288C9.47925 0.309063 10.6602 0.461384 11.7676 0.861122C12.8793 1.26246 13.8897 1.90245 14.7275 2.73612C15.5722 3.57387 16.2217 4.58744 16.6299 5.70487C17.0381 6.82248 17.1957 8.01684 17.0898 9.20194H17.0889C17.0774 9.32839 17.0643 9.45734 17.0479 9.58671L16.9883 9.97538C16.7381 11.3194 16.1548 12.5791 15.292 13.6394C14.4829 14.6337 13.4525 15.4235 12.2842 15.9451L12.0488 16.0457C11.5318 16.2542 10.9947 16.4102 10.4463 16.5105H10.4453C10.197 16.5544 9.9313 16.6092 9.66602 16.6101L9.66699 16.6111C9.43676 16.6227 9.20582 16.6227 8.97559 16.6111V16.6101C7.85505 16.6085 6.74702 16.3764 5.7207 15.9266C4.69216 15.4756 3.76732 14.8165 3.00586 13.991C2.24467 13.1657 1.66246 12.1919 1.2959 11.1307C0.929287 10.0691 0.786219 8.94248 0.875977 7.82304V7.82206C0.898997 7.56883 0.929881 7.30539 0.976562 7.04862V7.04765C1.27712 5.4242 2.06427 3.93023 3.23242 2.76347C4.40063 1.59674 5.8957 0.812026 7.51953 0.513466H7.52051C7.7709 0.469275 8.03914 0.411903 8.30664 0.411903V0.41288ZM1.90332 8.01835C1.84534 8.9975 1.98791 9.97866 2.32715 10.9002C2.68446 11.8706 3.24934 12.7519 3.98145 13.4822C4.70928 14.2114 5.58737 14.7744 6.55371 15.1316C7.47102 15.4707 8.44754 15.6142 9.42285 15.5594C9.20699 13.6414 8.34638 11.8522 6.97656 10.4881V10.4871C5.61237 9.11293 3.82329 8.24458 1.90332 8.01835ZM7.46973 1.57108C6.14932 1.86013 4.93799 2.52204 3.98145 3.48026C3.02718 4.4397 2.36651 5.64977 2.07324 6.96854C4.21801 7.22097 6.21721 8.18871 7.74414 9.7205H7.74316C9.27926 11.2438 10.2475 13.2437 10.4951 15.3894C11.8141 15.0962 13.0248 14.4367 13.9844 13.4822C14.9387 12.5226 15.5985 11.312 15.8916 9.99296C13.7475 9.73926 11.7491 8.77252 10.2217 7.24198C8.68532 5.71815 7.71683 3.71752 7.46973 1.57108ZM8.54297 1.41093C8.76021 3.32611 9.62024 5.11297 10.9883 6.47538H10.9893C12.3552 7.84904 14.1433 8.71895 16.0635 8.95097C16.1263 8.02416 16.0077 7.09368 15.71 6.21268C15.3956 5.28248 14.8907 4.428 14.2275 3.7039C13.5644 2.97984 12.7574 2.40232 11.8584 2.00761C10.9593 1.61289 9.98776 1.40905 9.00586 1.41093H8.54297Z" fill="#9C9C9C" stroke="#9C9C9C" stroke-width="0.3"/>
</symbol>
<symbol id="badminton-icon" width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.3682 12.7471C17.3005 12.7472 17.2353 12.7745 17.1875 12.8223L12.8232 17.1866C12.7234 17.2864 12.7235 17.449 12.8232 17.5489L13.5508 18.2764C14.8566 19.5819 16.9713 19.5811 18.2764 18.2764C19.5816 16.9715 19.5815 14.855 18.2764 13.5499L17.5498 12.8223C17.5019 12.7744 17.436 12.7471 17.3682 12.7471Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.24213 4.3834C8.15241 4.39497 8.07562 4.45358 8.03998 4.53672L6.94818 7.08262C6.91447 7.16149 6.92251 7.25218 6.96967 7.32383C6.9793 7.33844 6.99269 7.3498 7.00482 7.36192L7.00287 7.36387L15.0048 15.3658C15.1046 15.4656 15.2663 15.4654 15.3661 15.3658L16.0947 14.6383C16.1858 14.5471 16.1953 14.4021 16.1161 14.3004L8.4765 4.48008L8.42963 4.4332C8.37689 4.39322 8.30948 4.37473 8.24213 4.3834Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.015 3.37978C10.9435 3.29619 10.8244 3.2657 10.72 3.31045L8.17413 4.40224C8.10142 4.43341 8.04751 4.49658 8.02765 4.57314C8.00792 4.64967 8.0242 4.73137 8.07257 4.79385L15.7122 14.6151C15.7572 14.6728 15.8248 14.7082 15.8978 14.7128C15.971 14.7173 16.0432 14.6905 16.095 14.6386L16.8216 13.911C16.903 13.8295 16.9197 13.7034 16.8626 13.6034L11.0433 3.41885L11.015 3.37978Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.9096 0.744156C11.8084 0.745258 11.7171 0.806365 11.6772 0.899429L10.5864 3.44533C10.5548 3.51903 10.5593 3.60324 10.5991 3.67287L16.4194 13.8565C16.4589 13.9256 16.5279 13.9728 16.6069 13.9834C16.6858 13.994 16.7654 13.9674 16.8217 13.9111L17.5493 13.1836C17.6246 13.1083 17.645 12.9945 17.601 12.8975L12.145 0.894547L12.1049 0.832047C12.0565 0.776574 11.9856 0.743334 11.9096 0.744156Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.08289 6.94788L4.53699 8.03967C4.45389 8.0753 4.39529 8.15217 4.38367 8.24182C4.37212 8.33151 4.40901 8.42064 4.48035 8.4762L14.3016 16.1158C14.4035 16.1948 14.5485 16.1855 14.6395 16.0944L15.3661 15.3668C15.4658 15.267 15.4659 15.1043 15.3661 15.0045L7.36414 7.00256L7.30261 6.95667C7.23567 6.92144 7.15486 6.91714 7.08289 6.94788Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.57367 8.02663C4.49695 8.04641 4.43301 8.10126 4.40179 8.17409L3.31097 10.72C3.25979 10.8394 3.30655 10.9788 3.41937 11.0432L13.6039 16.8616C13.704 16.9187 13.83 16.902 13.9116 16.8206L14.6391 16.095C14.691 16.0431 14.7178 15.971 14.7133 15.8977C14.7088 15.8247 14.6733 15.7572 14.6157 15.7122L4.79437 8.07253L4.74457 8.04225C4.69168 8.01784 4.63121 8.01187 4.57367 8.02663Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.61871 10.5756C3.56208 10.5588 3.50029 10.5616 3.44489 10.5854L0.898987 11.6772C0.806019 11.7171 0.745783 11.8084 0.74469 11.9096C0.74366 12.0108 0.801994 12.1031 0.894104 12.145L12.897 17.6C12.9941 17.6441 13.1088 17.6236 13.1841 17.5483L13.9117 16.8207C13.968 16.7644 13.9945 16.6849 13.9839 16.6059C13.9733 16.5269 13.9271 16.4569 13.858 16.4174L3.67242 10.5991L3.61871 10.5756Z" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.00145 14.1851L14.186 6.00122" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.0045 10.0024L10.0031 16.0042" stroke="#9C9C9C" stroke-width="0.511359" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="volleyball-icon" width="131" height="39" viewBox="0 0 131 39" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.14787 17.6479C4.64484 17.6479 1 14.0037 1 9.5C1 4.99696 4.64416 1.35213 9.14787 1.35213C13.6509 1.35213 17.2957 4.99625 17.2957 9.5C17.2957 14.0031 13.6516 17.6479 9.14787 17.6479Z" stroke="#9C9C9C" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M16.8614 12.025C15.6928 10.1735 13.6286 8.94119 11.2821 8.94119C10.7209 8.94119 10.1759 9.01168 9.65536 9.14428" stroke="#9C9C9C" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M6.21128 11.3253C4.87144 9.54427 4.07657 7.33103 4.07657 4.93582C4.07657 4.28639 4.13502 3.65039 4.2469 3.0327" stroke="#9C9C9C" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M9.17312 1.38597C8.51537 2.41131 8.1336 3.62984 8.1336 4.93584C8.1336 6.53427 8.70547 8.0017 9.65536 9.1443C8.44505 10.6003 6.62057 11.5285 4.5837 11.5285C3.30509 11.5285 2.1103 11.1626 1.09854 10.53" stroke="#9C9C9C" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M8.14679 5.35508C9.1384 5.04901 10.1914 4.88416 11.2821 4.88416C13.2234 4.88416 15.0451 5.40633 16.614 6.31757" stroke="#9C9C9C" stroke-width="1.3" stroke-miterlimit="10"/>
<path d="M14.1561 9.60122C12.4235 13.1416 8.78358 15.5855 4.58371 15.5855C4.3011 15.5855 4.021 15.5745 3.74384 15.5528" stroke="#9C9C9C" stroke-width="1.3" stroke-miterlimit="10"/>
</symbol>
</svg>
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Mitom TV",
"alternateName": "Mitom TV - Xem Trực Tiếp Bóng Đá hôm nay Mì Tôm full HD",
"description": "Tường thuật trực tiếp bóng đá Mitom TV miễn phí mọi giải đấu tại Mitomf.tv✅ Link xem bóng đá trực tuyến hôm nay chất lượng cao Mì Tôm TV.",
"url": "https://mitomzi.cc/",
"logo": "https://mitomzi.cc/wp-content/themes/bongda/public/images/logo.png",
"foundingDate": "2018",
"email": "mitomcomtv@gmail.com",
"telephone": "0931528129",
"sameAs": [
"https://www.flickr.com/people/mitomcomtv/",
"https://medium.com/@mitomcomtv",
"https://twitter.com/mitomcomtv/",
"https://issuu.com/mitomcomtv/",
"https://soundcloud.com/mitomcomtv/",
"https://www.scoop.it/u/mitomcomtv/",
"https://ello.co/mitomcomtv/",
"https://ok.ru/mitomcomtv/",
"https://about.me/mitomcomtv/",
"https://www.pinterest.com/mitomcomtv/",
"https://www.facebook.com/mitomcomtv/",
"https://www.instagram.com/mitomcomtv/",
"https://vk.com/mitomcomtv",
"https://folkd.com/user/mitomcomtv/",
"https://mitomcomtv.tumblr.com/",
"https://www.behance.net/mitomcomtv/",
"https://www.youtube.com/channel/UCefws98OsuJ2q_k4ddVJWOg/about",
"https://trello.com/mitomcomtv/"
],
"founders": [
{
"@type": "Person",
"name": "Phùng Duy Khuê",
"jobTitle": "CEO"
}
],
"address": {
"@type": "PostalAddress",
"streetAddress": "359 Trường Chinh, Phường 13, Tân Bình",
"addressLocality": "Tp Hồ Chí Minh",
"addressRegion": "HCM",
"postalCode": "700000",
"addressCountry": "VN"
}
}</script>
<script type="application/ld+json">{
"@context": "http://schema.org/",
"@type": "WebSite",
"name": "Mitom TV",
"alternateName": "Mitom TV - Xem Trực Tiếp Bóng Đá hôm nay Mì Tôm full HD",
"description": "Tường thuật trực tiếp bóng đá Mitom TV miễn phí mọi giải đấu tại Mitomf.tv✅ Link xem bóng đá trực tuyến hôm nay chất lượng cao Mì Tôm TV.",
"keywords":["Mitom TV","Mitom Live","xem bóng đá", "tructiepbongda", "trực tiếp bóng đá","truc tiep bong da","bóng đá trực tuyến","Mì Tôm TV"],
"url": "https://mitomzi.cc/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://mitomzi.cc/?s={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{"@context": "http://schema.org/",
"@type": "Person",
"name": "Phùng Duy Khuê",
"additionalName": "CEO",
"url": "https://mitomzi.cc/but-danh/phungduykhue//",
"image": "https://secure.gravatar.com/avatar/5e2b705f360fafd82fcf06464038d4ef",
"birthPlace":{ "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "100 Đường số 2, An Lạc, Bình Tân", "addressRegion": "Tp Hồ Chí Minh", "addressCountry": "VietNam" }},
"description":"Phùng Duy Khuê đang là CEO của kênh Mi Tom TV - Kênh xem trực tiếp bóng đá tốc độ cao chất lượng nhất tại Việt Nam hiện nay. Đến với kênh Mitom TV, anh em sẽ được thưởng thức những trận cầu đỉnh cao với hình ảnh sắc nét, bình luận tiếng Việt, không bị lag giật.",
"sameAs": [
"https://twitter.com/phungduykhue/",
"https://issuu.com/phungduykhue/",
"https://soundcloud.com/phungduykhue/",
"https://www.scoop.it/u/phungduykhue/",
"https://ello.co/phungduykhue/",
"https://www.plurk.com/phungduykhue/",
"https://www.linkedin.com/in/phungduykhue/",
"https://myspace.com/phungduykhue/",
"https://www.pinterest.com/phungduykhue/",
"https://www.instagram.com/phungduykhue/",
"https://phungduykhue.tumblr.com/",
"https://flipboard.com/@phungduykhue",
"https://www.behance.net/phungduykhue/"
],
"jobTitle": "CEO", "memberOf": { "@type": "Organization", "name": "Mitom TV" },
"worksFor": { "@type": "Organization", "name": "Mitom TV",
"url": "https://mitomzi.cc/" }}</script>
<script type="application/ld+json">{ "@context": "http://www.schema.org",
"@type": "Person", "@id": "https://mitomzi.cc/#person_2",
"name": "Triệu Duy Bắc",
"alternateName": [ "Phóng Viên đưa tin tại Mitomf.tv"],
"nationality": "vietnam",
"birthPlace":{ "@type": "Place", "address": { "@type": "PostalAddress", "addressLocality": "71-65 Võ Oanh, Phường 25, Bình Thạnh", "addressRegion": "Tp Hồ Chí Minh", "addressCountry": "VietNam" }},
"affiliation": [ { "@type": "Organization", "name": "Mitom TV",
"sameAs": [ "https://www.flickr.com/people/mitomcomtv/",
"https://dribbble.com/mitomcomtv/about",
"https://www.producthunt.com/@mitomcomtv",
"https://500px.com/p/mitomcomtv/",
"https://www.pearltrees.com/mitomcomtv/" ] } ],
"alumniOf": [ { "@type": "CollegeOrUniversity", "name": "Học Viện Báo Chí & Tuyên Truyền" } ],
"gender": "Male",
"Description": "Triệu Duy Bắc đang là phóng viên công tác tại Mitom TV - Kênh xem đá bóng trực tiếp của tất cả giải đấu hàng đầu trên thế giới: Ngoại hạng Anh, Laliga, Bundesliga,...",
"jobTitle": "Phóng Viên tin tức tại Mitomf.tv",
"url": "https://mitomzi.cc/author/trieuduybac/",
"image": "https://vi.gravatar.com/trieuduybac#photo-2",
"sameAs": [ "https://medium.com/@trieuduybac",
"https://twitter.com/trieuduybac",
"https://soundcloud.com/trieuduybac",
"https://www.scoop.it/u/trieuduybac",
"https://ello.co/trieuduybac",
"https://myspace.com/trieuduybac",
"https://www.pinterest.com/trieuduybac/",
"https://www.flickr.com/people/trieuduybac",
"https://www.instagram.com/trieuduybac/",
"https://www.behance.net/trieuduybac",
"https://www.diigo.com/profile/trieuduybac" ]
}</script>
<script type="application/ld+json">
{"@context":"http://schema.org/",
"@graph":[{"@context":"http://schema.org/","@type":"SiteNavigationElement",
"id":"site-navigation","name":"Video Highlight",
"url":"https://mitomzi.cc/highlight/"},
{"@context":"http://schema.org/",
"id":"site-navigation",
"name":"Lịch Thi Đấu",
"url":"https://mitomzi.cc/lich-thi-dau/"},
{"@context":"https://schema.org","@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"BXH",
"url":"https://mitomzi.cc/bxh/"},
{"@context":"https://schema.org","@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"Tỷ Lệ Kèo",
"url":"https://mitomzi.cc/ty-le-keo/"},
{"@context":"https://schema.org","@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"Kết Quả",
"url":"https://mitomzi.cc/ket-qua/"},
{"@context":"https://schema.org","@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"Livescore",
"url":"https://mitomzi.cc/livescore/"},
{"@context":"https://schema.org","@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"Tin Tức",
"url":"https://mitomzi.cc/tin-tuc/"},
{"@context":"https://schema.org","@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"Kiến Thức",
"url":"https://mitomzi.cc/kien-thuc/"},
{"@context":"http://schema.org/",
"@type":"SiteNavigationElement",
"id":"site-navigation",
"name":"Mitom TV",
"url":"https://mitomzi.cc/"}]}
</script>
<script type="application/ld+json">{"@context": "http://schema.org",
"@type": "LocalBusiness",
"image": "https://mitomzi.cc/wp-content/themes/bongda/public/images/logo.png",
"@id": "https://mitomzi.cc/",
"additionalType":
[
"https://vi.wikipedia.org/wiki/Bóng_đá",
"https://vi.wikipedia.org/wiki/Phát_trực_tiếp",
"https://vi.wikipedia.org/wiki/Truyền_hình_trực_tiếp",
"https://en.wikipedia.org/wiki/Livestreaming",
"https://en.wikipedia.org/wiki/Football"],
"url": "https://mitomzi.cc/",
"name": "Mitom TV",
"alternateName": "Mitom TV - Xem Trực Tiếp Bóng Đá hôm nay Mì Tôm full HD",
"areaServed": { "@type": "City", "name": "Tp Hồ Chí Minh",
"url": ["https://www.wikidata.org/wiki/Q1854"] },
"description": "Tường thuật trực tiếp bóng đá Mitom TV miễn phí mọi giải đấu tại Mitomf.tv✅ Link xem bóng đá trực tuyến hôm nay chất lượng cao Mì Tôm TV.",
"paymentAccepted": "Free",
"sameAs":
[
"https://www.diigo.com/profile/mitomcomtv/",
"https://flipboard.com/@mitomcomtv",
"https://www.behance.net/mitomcomtv",
"http://ttlink.com/mitomcomtv",
"https://about.me/mitomcomtv/",
"https://mitomcomtv.tumblr.com/"],
"hasMap": "https://goo.gl/maps/2K2saM8eKitFk1m56",
"email": "mitomcomtv@gmail.com",
"telephone": "0931528129",
"priceRange": "Free",
"foundingDate": "2018",
"founders": [{
"@type": "Person",
"name": "Phùng Duy Khuê",
"image": "https://mitomzi.cc/wp-content/themes/bongda/public/images/logo.png",
"jobTitle": "CEO","worksFor": {"@type": "Organization",
"name": "Mitom TV"},
"sameAs": [
"https://twitter.com/phungduykhue/",
"https://www.deviantart.com/phungduykhue/",
"https://www.pinterest.com/phungduykhue/",
"https://angel.co/u/phungduykhue/",
"https://phungduykhue.tumblr.com/"] }],
"address": {"@type": "PostalAddress",
"streetAddress": "359 Trường Chinh, Phường 13, Tân Bình",
"addressLocality": "Tp Hồ Chí Minh","postalCode": "700000","addressCountry": "Vietnam"},
"contactPoint": [{
"@type": "ContactPoint","contactType": "Customer Support","telephone": "0931528129",
"email": "mitomcomtv@gmail.com"}],
"geo": {"@type": "GeoCircle",
"geoMidpoint": {"@type": "GeoCoordinates",
"latitude": "10.7979045","longitude": "106.6438736"},"geoRadius": "5000"},
"openingHoursSpecification": [{"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],
"opens": "00:00","closes": "23:59"}] }}</script>
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "Mitom TV là gì?",
"url": "https://mitomzi.cc/#Mitom_TV_la_gi",
"acceptedAnswer": { "@type":
"Answer",
"text": "Mitom TV là trang web trực tiếp bóng đá hàng đầu Việt Nam hiện nay. Mỗi khi muốn xem bóng đá trực tuyến với chất lượng cao và trải nghiệm tuyệt vời nhất thì Mì Tôm TV luôn là lựa chọn số 1 dành cho fan hâm mộ. Chắc chắn rằng khi xem tructiepbongda tại đây, anh em sẽ không bao giờ cảm thấy thất vọng."
}}, {
"@type": "Question",
"name": "Vì sao anh em nên xem truc tiep bong da tại Mitomf.tv?",
"url": "https://mitomzi.cc/#Vi_sao_anh_em_nen_xem_truc_tiep_bong_da_tai_Mitom2com",
"acceptedAnswer": {
"@type": "Answer",
"text": "Mì Tôm TV trở thành website xem bong da truc tiep hàng đầu Việt Nam. Mà bởi chúng tôi cung cấp cho mọi người những trải nghiệm mà không thể tìm thấy được bất kỳ trang web trực tiếp bóng đá nào khác hiện nay."
}}, {
"@type": "Question",
"name": "Có nên xem bóng đá trực tuyến tại Mitomf.tv hay không?",
"url": "https://mitomzi.cc/#Co_nen_xem_bong_da_truc_tuyen_tai_Mitom2com_hay_khong",
"acceptedAnswer": {
"@type": "Answer",
"text": "Khi xem đến đây, chắc anh em đã biết được lý do tại sao mà nhiều người lại chọn Mì Tôm TV để xem bóng đá trực tuyến. Chính vì thế, nếu hôm nay anh em đang có nhu cầu tìm và xem một trận đấu bóng đá mà mình yêu thích, thì tuyệt đối không được bỏ qua Mitom Live."
}}, {
"@type": "Question",
"name": "Kết luận",
"url": "https://mitomzi.cc/#Ket_luan",
"acceptedAnswer": {
"@type": "Answer",
"text": "Ngay từ những ngày đầu phát triển, chúng tôi đã muốn không ngừng nỗ lực phát triển đội ngũ, hệ thống để trở thành website hàng đầu trong lĩnh vực phát sóng bóng đá trực tiếp. Cho nên Mì Tôm TV đã đầu tư rất nhiều để sở hữu được các bản quyền giải đấu lớn cũng như công nghệ hiện đại nhất và chú tâm đến trải nghiệm của fan hâm mộ."
}}
, {
"@type": "Question",
"name": "Thông tin liên hệ với Mitom TV",
"url": "https://mitomzi.cc/#Thong_tin_lien_he_voi_Mitom_TV",
"acceptedAnswer": {
"@type": "Answer",
"text": "Email: mitomcomtv@gmail.com - Đia chỉ: 359 Trường Chinh, Phường 13, Tân Bình, Thành phố Hồ Chí Minh 700000. - Website: https://mitomzi.cc - Phone: 0931528129"
}}]
}</script>
<main id="page" class="py-8 prose main flw">
<style>
@media screen and (max-width: 991px) {
ul.blv {
max-width: 250px;
overflow-x: scroll;
gap: 10px;
}
.match-team img {
width: 40px !important;
}
}
</style>
<div class="container block-c mb-4 as-hide-popup-chat ads-item">
<div class="row">
<div class="col-12 col-lg-6 px-lg-3 p-0 mb-1">
</div>
<div class="col-12 col-lg-6 px-lg-3 p-0">
</div>
</div>
</div>
<section class="mb-4 home-section section-3">
<div class="container">
<div class="row">
<div class="col-12">
<div class="d-flex justify-content-between align-items-center text-uppercase mb-4 osw-bold section-title as-hide-popup-chat mt-2">
<h1 class="d-flex justify-content-between align-items-center">Mitom TV tường thuật Trực Tiếp Bóng Đá - Link Xem Trực Tuyến Mì Tôm TV</h1>
</div>
<script>
var ids = {"football":["ednm9whw6007ryo","l5ergph4288xr8k","pxwrxlhy28poryk","6ypq3nhv4y6dmd7","3glrw7hnl2k2qdy","dn1m1ghlk7lgmoe","zp5rzghg023jq82","n54qllhn9knvqvy","23xmvkh6wgyvqg8","1l4rjnh923n1m7v","k82rekhgn6g2rep","y39mp1h6pwenmoj","jw2r09hkjvygrz8","23xmvkh6w96gqg8","1l4rjnh9236jm7v","y39mp1h69o06moj","965mkyhkzw2yr1g","1l4rjnh92ljlm7v","l5ergph42pvkr8k","318q66hxngk6qo9","965mkyhydpz3r1g","965mkyhkgd2vr1g","l7oqdehg15pdr51","dn1m1ghl1wj3moe","dj2ryohl5449q1z","318q66hxn2x1qo9","4wyrn4h60261q86","x7lm7phjpod4m2w","dj2ryohl2y09q1z","l5ergph4052zr8k","dn1m1ghlvokjmoe","23xmvkh64358qg8","2y8m4zh5nxxdql0","y39mp1h69870moj","vjxm8ghe2dv1r6o","dn1m1gh2wl2dmoe","4jwq2ghe3nezm0v","23xmvkh6kj79qg8","4jwq2ghn01odm0v","l7oqdehg0kwzr51","y0or5jh8077kqwz","4wyrn4h67opkq86","965mkyhkgpxvr1g","n54qllhnjyl3qvy","ednm9whwg9z9ryo","965mkyhk1zl1r1g","318q66hx7g1nqo9","l7oqdehg0295r51","ednm9whwd24oryo","318q66hxz7nyqo9","8yomo4h10n1eq0j","jw2r09h28nd4rz8","l7oqdeho76znr51","y39mp1h6997pmoj","zp5rzghg2l19q82","vjxm8ghe92vvr6o","23xmvkh6gnxzqg8","4wyrn4hxg4vpq86","x7lm7phj58w9m2w","pxwrxlhyzy18ryk","x7lm7phjn5gkm2w","y0or5jh8j0x4qwz","2y8m4zh54208ql0","8yomo4h15we0q0j","zp5rzghg1xw6q82","y0or5jh80zv6qwz","vjxm8ghepegzr6o","pxwrxlhyj177ryk","jw2r09hk71x3rz8","dj2ryohlvv05q1z","dj2ryohl223eq1z","23xmvkh6kowyqg8","318q66hx7lplqo9","jw2r09hk11d9rz8","3glrw7hnl5j5qdy","6ypq3nhv4xe2md7","965mkyhkgv26r1g","n54qllhnkvvgqvy","l7oqdehgev74r51","vjxm8ghe9264r6o","y0or5jhn7j04qwz","y39mp1hzxeo2moj","x7lm7phj53ljm2w","y39mp1h6k028moj","4wyrn4h6e02vq86","pxwrxlhy2dedryk","3glrw7hnldpkqdy","4wyrn4h67onkq86","4jwq2ghn083dm0v","965mkyhkz882r1g","x7lm7phj547om2w","vjxm8ghe2yw4r6o","dj2ryoh18gn8q1z","x7lm7phj53zlm2w","3glrw7hnl378qdy","l7oqdehg11z3r51","2y8m4zh511d6ql0","l5ergph4328pr8k","965mkyhk33zyr1g","zp5rzghg13w7q82","y39mp1h6kl0xmoj","x7lm7phjk4xpm2w","x7lm7phjw104m2w","k82rekhg97y8rep","ednm9whwd2noryo","965mkyhk1gl5r1g","3glrw7h7d0odqdy","23xmvkh6gpjpqg8","y0or5jh8eg0nqwz","4jwq2ghnv70dm0v","y0or5jh80631qwz","1l4rjnh9z6o4m7v","y39mp1h6j3gemoj","8yomo4h10v2dq0j","6ypq3nhvlwz2md7","1l4rjnh9ekl4m7v","2y8m4zh5gy96ql0","4jwq2ghn179nm0v","965mkyhk7pxdr1g","y0or5jh807oeqwz","x7lm7phj91gom2w","pxwrxlh5d7v6ryk","n54qllhne1v3qvy","n54qllhn8e9nqvy","965mkyhk335yr1g","6ypq3nhvw5g4md7","4wyrn4h6e5jlq86","2y8m4zh54e2gql0","965mkyhk4p5jr1g","vjxm8ghe26jdr6o","dj2ryohldw8gq1z","x7lm7phjn5eom2w","1l4rjnh91edom7v","318q66hx0288qo9","vjxm8ghexklzr6o","vjxm8ghex9ldr6o","dj2ryohl251lq1z","8yomo4h1z938q0j","6ypq3nhv1g3pmd7","3glrw7hno075qdy","2y8m4zh51n6vql0","l7oqdehg6g20r51","8yomo4h1k1x5q0j","6ypq3nhv5vegmd7","6ypq3nhv57v1md7","6ypq3nhvz3l8md7","l5ergph4303lr8k","3glrw7hnzp8jqdy","l7oqdehg654gr51","zp5rzghgzx2oq82","l7oqdehgn5wpr51","4wyrn4h6exeyq86","318q66hwewzkqo9","4wyrn4hx3xz0q86","dn1m1gh2j2vomoe","k82rekhg90v3rep","k82rekhwkwz3rep","y39mp1hzlzvymoj","vjxm8gheg0o3r6o","pxwrxlhy1nw2ryk","pxwrxlhy9vx8ryk","1l4rjnh91pozm7v","965mkyhkn64wr1g","l5ergph4p44lr8k","y39mp1h69ndkmoj","4jwq2ghnxoj2m0v","y39mp1h6103gmoj","k82rekhg30vkrep","4jwq2ghn7z45m0v","zp5rzghgxdpoq82","dn1m1ghlngydmoe","vjxm8ghld161r6o","23xmvkh6wv2lqg8","k82rekhwpk78rep","vjxm8ghlypy2r6o","ednm9whwgpv4ryo","y0or5jhnypvvqwz","vjxm8ghe8g4vr6o","zp5rzghgx68oq82","zp5rzghg02jwq82","jw2r09hkx92nrz8","4jwq2ghn0l5jm0v","8yomo4h3plyoq0j","k82rekhg17j7rep","23xmvkh6wg39qg8","318q66hwyp6gqo9","6ypq3nh3j8w2md7","l5ergph425v1r8k","pxwrxlh5knjdryk","y39mp1hzglx9moj","dj2ryohl5dy8q1z","l5ergph4o92vr8k","y0or5jh8l209qwz","1l4rjnh9kjvdm7v","jw2r09hk7pxorz8","x7lm7phjwokkm2w","2y8m4zh5n4g0ql0","4jwq2ghnxgx3m0v","8yomo4h19527q0j","l7oqdehgde4vr51","dj2ryohl5dj8q1z","8yomo4h12kgwq0j","6ypq3nhv4oxdmd7","3glrw7h7v9zkqdy","k82rekhgv7nlrep","l7oqdehg42o4r51","4jwq2ghn7zldm0v","6ypq3nhvg4z5md7","pxwrxlhypp10ryk","pxwrxlhygke3ryk","y0or5jhnyvdgqwz","23xmvkh8ew42qg8","6ypq3nh32glzmd7","965mkyhyj13wr1g","965mkyhk7vj2r1g","1l4rjnh96782m7v","dn1m1ghl1048moe","zp5rzghgz961q82","k82rekhgvk5grep","4jwq2ghn428pm0v","3glrw7hnkk1eqdy","vjxm8ghevvg6r6o","l5ergphwz21jr8k","pxwrxlhy73y2ryk","zp5rzghg0w44q82","4jwq2ghn6036m0v","y39mp1h6k782moj","y0or5jh80ylvqwz","l7oqdehovj28r51","jw2r09h2e590rz8","dj2ryoh1w741q1z","4jwq2ghe2w82m0v","4jwq2ghe2lnym0v","1l4rjnh47v90m7v","ednm9whwe098ryo","zp5rzgh5vnj5q82","y0or5jh81vjjqwz","x7lm7phjpln5m2w","x7lm7phjpz4km2w","pxwrxlhyz5wjryk","ednm9wh7j695ryo","2y8m4zh5z693ql0","y0or5jh8e4o3qwz","vjxm8ghejgwgr6o","965mkyhkexp8r1g","zp5rzghg1xddq82","23xmvkh6xozoqg8","1l4rjnh4owv2m7v","y39mp1hzgxv8moj","y0or5jhnyvdxqwz","x7lm7phzylv4m2w","dj2ryohlg49wq1z","965mkyhydj8gr1g","318q66hxn7pxqo9","318q66hwyl2kqo9","3glrw7h72dleqdy","6ypq3nh3yxe8md7","k82rekhg8ld5rep","k82rekhg1e02rep","8yomo4h19xxoq0j","dn1m1gh2y5vjmoe","dj2ryoh16wp9q1z","zp5rzgh5v828q82","318q66hxk161qo9","n54qllhnkg2vqvy","1l4rjnh4o8y9m7v","2y8m4zh6yklkql0","6ypq3nh3yjxxmd7","dn1m1gh2y54jmoe","ednm9wh7noj3ryo","vjxm8ghldnojr6o","ednm9wh7n1wnryo","965mkyhyvpk6r1g","6ypq3nh3y2kymd7","318q66hwy91gqo9","2y8m4zh6y2edql0","2y8m4zh6y27dql0","vjxm8ghldyx6r6o","6ypq3nh3yx48md7","1l4rjnh4ov5ym7v","zp5rzghgj83wq82","965mkyhkzo47r1g","n54qllhndl91qvy","k82rekhg11k6rep","k82rekhgyvpdrep","y39mp1h699lpmoj","y39mp1hz26zdmoj","zp5rzghg17ozq82","zp5rzghg179zq82","pxwrxlh567l8ryk","l7oqdehovweer51","jw2r09h2eyp1rz8","ednm9whwde84ryo","dn1m1ghlkoz9moe","dj2ryoh1w6d5q1z","4jwq2ghnv4ynm0v","965mkyhk37dwr1g","6ypq3nhvgeeymd7","y0or5jh843gdqwz","318q66hx0dy2qo9","jw2r09hkndykrz8","n54qllhneyg5qvy","k82rekhg1dlwrep","ednm9wh73p2kryo","965mkyhkgzldr1g","965mkyhk3e3kr1g","4jwq2ghe35zom0v","k82rekhw7gwerep","x7lm7phj0p3lm2w","3glrw7h78z4zqdy","4wyrn4hxk6xnq86","dn1m1gh2638zmoe","dn1m1ghlo6zvmoe","pxwrxlhyv75wryk","x7lm7phjwe6km2w","y39mp1h6k9vlmoj","y0or5jh81jn2qwz","318q66hxkkegqo9","k82rekhgygzvrep","23xmvkh6g1ovqg8","23xmvkh6d4gyqg8","vjxm8ghe4ykpr6o","318q66hxo5y1qo9","6ypq3nhvwed0md7","pxwrxlh54l4zryk","x7lm7phz6x6nm2w","zp5rzghgp70oq82","y39mp1h6125emoj","x7lm7phz4n5km2w","y0or5jh840g1qwz","vjxm8ghe2512r6o","l7oqdehgl5n7r51","l5ergph4vvy6r8k","ednm9whwg3k5ryo","ednm9whwd14yryo","3glrw7hny106qdy","4wyrn4h6eoxgq86","dj2ryohlyeljq1z","pxwrxlhy1xy2ryk","2y8m4zh5jw58ql0","n54qllhnk18kqvy","23xmvkh6g9kwqg8","zp5rzghgzpz4q82","2y8m4zh5j8zpql0","dj2ryohlygn4q1z","dn1m1ghle313moe","y39mp1h65y93moj","2y8m4zh5jdyeql0","3glrw7hn1e58qdy","4wyrn4h6e1poq86","vjxm8ghego67r6o","x7lm7phjodelm2w","y39mp1h658gkmoj","23xmvkh6d1znqg8","23xmvkh6g775qg8","318q66hx0g9oqo9","ednm9wh7ng55ryo","jw2r09hkn95vrz8","k82rekhg97kyrep","pxwrxlhy2o9wryk","ednm9whwze7gryo","8yomo4h1230yq0j","1l4rjnh9xy0om7v","965mkyhk4zkjr1g","ednm9whwv843ryo","4wyrn4h6e07zq86","l7oqdehg6o6zr51","y0or5jh8j0keqwz","pxwrxlhy9eooryk","pxwrxlhy16l3ryk","n54qllhn9k68qvy","l5ergph4e8jor8k","dj2ryohlyw72q1z","8yomo4h1kwy9q0j","6ypq3nhvwnd4md7","2y8m4zh5gx97ql0","2y8m4zh542lzql0","pxwrxlhyz4kdryk","y0or5jhnp9p6qwz","y39mp1h6k7n2moj","965mkyhk7p88r1g","k82rekhgyy62rep","dj2ryohl27loq1z","vjxm8ghexkegr6o","zp5rzghg7849q82","6ypq3nhv0j96md7","318q66hwej1pqo9","4jwq2ghn4ljdm0v","4jwq2ghnk0xzm0v","6ypq3nh32gkomd7","8yomo4h1vk9zq0j","dj2ryohldewkq1z","dj2ryohldezkq1z","dn1m1ghle79xmoe","ednm9whwd1pyryo","l5ergphwgen1r8k","vjxm8ghe8g9wr6o","2y8m4zh5g0g8ql0","pxwrxlhy136xryk","zp5rzghg24p4q82","23xmvkh6ok41qg8","2y8m4zh5g1weql0","965mkyhk3zyzr1g","8yomo4h1kg10q0j","3glrw7hnj7zeqdy","4jwq2ghnvxvzm0v","6ypq3nhv4ozpmd7","jw2r09hkx2w0rz8","x7lm7phjopvxm2w","vjxm8ghegnxgr6o","n54qllhneldjqvy","k82rekhg9w90rep","4wyrn4h6dpn7q86","8yomo4h12xo6q0j","l7oqdehg4wp3r51","n54qllhn856wqvy","x7lm7phjw7d3m2w","y0or5jh84v13qwz","x7lm7phj52l8m2w","l5ergph42px8r8k","dn1m1ghlnn7gmoe","6ypq3nhv52lxmd7","318q66hx735eqo9","x7lm7phzy611m2w","3glrw7hnype6qdy","zp5rzghg0291q82","l7oqdehg442pr51","8yomo4h15wnzq0j","2y8m4zh5zokoql0","23xmvkh6wgj4qg8","318q66hx0k8oqo9","k82rekhg9lxzrep","y39mp1h69d6zmoj","y0or5jh80zk6qwz","x7lm7phjpnz6m2w","965mkyhk3ngdr1g","l7oqdehg62jwr51","4jwq2ghn4lgem0v","dn1m1ghlnn1gmoe","318q66hwypx1qo9","318q66hxvoypqo9","pxwrxlhy9p92ryk","965mkyhkgp0vr1g","y0or5jh80wvoqwz","8yomo4h17dlnq0j","4wyrn4h6eoz0q86","pxwrxlhy1jzyryk","23xmvkh6dx83qg8","1l4rjnh48g17m7v","jw2r09h2e3kgrz8","l5ergph4vwnyr8k","x7lm7phjopj8m2w","y0or5jh834l4qwz","y0or5jhn7119qwz","4wyrn4h607pwq86","k82rekhwkkozrep","dn1m1ghle2elmoe","k82rekhgozpzrep","965mkyhkn0edr1g","y0or5jh812dnqwz","965mkyhydvjnr1g","x7lm7phj5dgxm2w","23xmvkh81jpoqg8","3glrw7hn0kxvqdy","y39mp1h6j50zmoj","jw2r09hk7neorz8","6ypq3nhv1jo3md7","pxwrxlhyj1g9ryk","6ypq3nh32857md7","4jwq2ghel14gm0v","l7oqdeho71yyr51","pxwrxlh56n15ryk","y39mp1h6k7e2moj","l7oqdehg15kdr51","4jwq2ghe37j0m0v","l7oqdehovxgzr51","x7lm7phzy6y1m2w","23xmvkh64lkyqg8","8yomo4h3wp3dq0j","dn1m1ghl193vmoe","zp5rzghg0yoeq82","23xmvkh6wg01qg8","3glrw7hnlek7qdy","k82rekhgv734rep","dj2ryohlj41gq1z","4wyrn4h607dpq86","jw2r09h2zy55rz8","ednm9whwv5vjryo","dj2ryohljyeoq1z","318q66hwey8gqo9","2y8m4zh62o6oql0","3glrw7hny1wyqdy","k82rekhwp4w2rep","n54qllh7g67dqvy","vjxm8ghld65nr6o","y39mp1hzgn66moj","1l4rjnh47ogxm7v","dj2ryoh1o679q1z","y39mp1h6yllxmoj","vjxm8ghlz0p4r6o","y39mp1hz7938moj","n54qllh7l3eyqvy","2y8m4zh5n4v7ql0","ednm9whwg214ryo","y39mp1hzlgdpmoj","jw2r09h2yze2rz8","ednm9wh7y40eryo","ednm9wh7y4xeryo","k82rekhwp4g2rep","l7oqdehowk2xr51","23xmvkh8512oqg8","dn1m1ghl4w74moe","y39mp1h6107lmoj","4jwq2ghn437gm0v","965mkyhkn2pdr1g","4wyrn4hx3pyxq86","965mkyhke8epr1g","l7oqdehgd6vvr51","vjxm8ghe8g4pr6o","y0or5jhnpy5xqwz","vjxm8ghl1dknr6o","pxwrxlh548l4ryk","4wyrn4h6deo5q86","x7lm7phz1v9om2w","4jwq2gheyj97m0v","4wyrn4hxpnx1q86","6ypq3nh3xzn0md7","vjxm8ghe4z2lr6o","k82rekhg30l7rep","965mkyhk113vr1g","y0or5jh8xx4pqwz","l7oqdehovdpwr51","jw2r09h2e7zvrz8","dj2ryoh1w5ooq1z","l5ergphwz92wr8k","jw2r09h2eo7krz8","ednm9whwz42xryo","dj2ryohld80nq1z","965mkyhk3x2or1g","4wyrn4hxjk0oq86","2y8m4zh62nokql0","ednm9whw60x7ryo","8yomo4h15ldjq0j","2y8m4zh54ykeql0","k82rekhgnzvnrep","8yomo4h3w9pwq0j","1l4rjnh4ov3ym7v","2y8m4zh62vx5ql0","6ypq3nh32ke8md7","8yomo4h3wyxyq0j","ednm9whwknj0ryo","y39mp1h63lxzmoj","vjxm8ghl134pr6o","8yomo4h3px77q0j","k82rekhwklglrep","y39mp1hzl76xmoj","3glrw7hnl2v8qdy","pxwrxlhy28k8ryk","vjxm8ghe2dzzr6o","zp5rzghg2v7jq82","zp5rzghg1n06q82","y0or5jh81gykqwz","x7lm7phjp9ydm2w","n54qllhn54j6qvy","x7lm7phjpz4pm2w","y0or5jh81n70qwz","n54qllhn55eoqvy","8yomo4h1k95zq0j","l7oqdehg0kpzr51","n54qllhnxjknqvy","ednm9whw96e4ryo","1l4rjnh91o5ym7v","2y8m4zh58xelql0","318q66hx4p17qo9","l7oqdehge3jgr51","965mkyhk4d53r1g","zp5rzghgy3xkq82","23xmvkh6vvoeqg8","1l4rjnh9zj4xm7v","dn1m1ghl1xpgmoe","8yomo4h3nzjnq0j","dn1m1ghl11jpmoe","2y8m4zh6oxjzql0","jw2r09h2ok2zrz8","pxwrxlh547d9ryk","l5ergph4v40nr8k","k82rekhg8p05rep","4wyrn4h607nwq86","4wyrn4h67o3kq86","318q66hwel8zqo9","2y8m4zh5055vql0","y0or5jh8eoy3qwz","dn1m1ghle1xemoe","k82rekhgvl2jrep","y39mp1h696g0moj","jw2r09hkloyyrz8","k82rekhg3j08rep","dj2ryohln9x4q1z","4wyrn4h6993xq86","l5ergph4pp14r8k","l5ergph42567r8k","1l4rjnh93o11m7v","23xmvkh6x415qg8","3glrw7h7x048qdy","4wyrn4h6e74nq86","8yomo4h3wl54q0j","k82rekhg81z7rep","k82rekhwlo3jrep","n54qllhndjggqvy","vjxm8ghepwdyr6o","x7lm7phj976gm2w","y0or5jh8goplqwz","3glrw7hn066vqdy","vjxm8ghe933nr6o","4wyrn4h6d8p3q86","dn1m1ghln4yymoe","ednm9whwzky5ryo","k82rekhgyoyerep","l7oqdehg6378r51","318q66hx7kz9qo9","dn1m1ghlo1v6moe","dn1m1ghl1d69moe","y39mp1hz2e0jmoj","pxwrxlh56825ryk","6ypq3nh32y47md7","3glrw7h7x2lnqdy","dj2ryoh1zl1wq1z","1l4rjnh9ze4zm7v","2y8m4zh6k56lql0","3glrw7h7848oqdy","4wyrn4h6798zq86","dj2ryohlj1n1q1z","dn1m1ghl46z6moe","vjxm8ghl1k12r6o","y39mp1h6ynl4moj","vjxm8ghepeg7r6o","1l4rjnh93vv8m7v","pxwrxlhyjew1ryk","6ypq3nhv52kemd7","4jwq2ghe27gnm0v","l7oqdehg6vjlr51","zp5rzghg71d9q82","zp5rzghg71o9q82","318q66hxvxz0qo9","23xmvkh637y9qg8","4jwq2ghnkx78m0v","4wyrn4h6e4vvq86","dn1m1ghl4wygmoe","2y8m4zh53ky2ql0","dj2ryohly1y0q1z","ednm9whw91x3ryo","jw2r09h28jworz8","jw2r09hkp6o8rz8","jw2r09hkp6z8rz8","l5ergph4vvp6r8k","vjxm8ghep55dr6o","y0or5jh834jnqwz","y39mp1h6k0l8moj","4jwq2ghn0ljjm0v","2y8m4zh5zk33ql0","l7oqdehg68g6r51","1l4rjnh935xlm7v","318q66hxj3zdqo9","k82rekhg8lj5rep","vjxm8gheg2g8r6o","3glrw7hnzp2xqdy","1l4rjnh9zxzlm7v","4wyrn4h6dp37q86","dn1m1ghlepvomoe","pxwrxlhy988nryk","y0or5jh84dkkqwz","zp5rzghgj89oq82","pxwrxlhyzj9dryk","k82rekhw7j0orep","3glrw7hnzyykqdy","zp5rzghgzwv2q82","zp5rzghgz157q82","4wyrn4h6dxv0q86","3glrw7hnzn18qdy","23xmvkh85y5pqg8","y39mp1h6yvn7moj","dn1m1ghl30g6moe","n54qllhnkvz8qvy","4jwq2ghnk1w2m0v","x7lm7phj5e06m2w","3glrw7hn1n6pqdy","2y8m4zh5j2v4ql0","2y8m4zh6ozd3ql0","3glrw7hnj652qdy","8yomo4h15gd2q0j","4wyrn4h675kjq86","ednm9wh7ngp5ryo","l7oqdehg03z4r51","vjxm8ghln9kzr6o","zp5rzghgzz40q82","4jwq2ghn60wvm0v","4jwq2ghn60j6m0v","8yomo4h3p0jkq0j","dj2ryohljvjjq1z","y39mp1h65z54moj","318q66hx0w0wqo9","jw2r09hkn2ngrz8","23xmvkh6o79zqg8","l7oqdehglpvkr51","vjxm8ghep884r6o","jw2r09hknjwprz8","l5ergph43l40r8k","jw2r09hknl3jrz8","k82rekhg8k0lrep","k82rekhg8l45rep","y0or5jh8l790qwz","l5ergph43odvr8k","4wyrn4h6e2y5q86","4wyrn4h68kp1q86","n54qllhn2v6nqvy","x7lm7phjn854m2w","n54qllhnxx1dqvy","318q66hx7l3lqo9","3glrw7hnlxk0qdy","vjxm8ghe2nv3r6o","x7lm7phjwon3m2w","y0or5jh8j6jxqwz","4jwq2ghn0pxzm0v","vjxm8ghejx5zr6o","ednm9whwzvz7ryo","pxwrxlhy95z0ryk","ednm9whw9289ryo","23xmvkh6g704qg8","6ypq3nhv42x4md7","dj2ryohlydgwq1z","vjxm8ghejlp6r6o","n54qllhnxzgjqvy","4jwq2ghnvvp9m0v","23xmvkh6d1llqg8","pxwrxlhy98onryk","zp5rzghgpy99q82","6ypq3nhvzeodmd7","3glrw7hnjkj0qdy","2y8m4zh5gx6zql0","3glrw7hn1xowqdy","dj2ryohlj407q1z","dn1m1ghln546moe","y39mp1h6pko9moj","23xmvkh6opveqg8","2y8m4zh6ozv3ql0","y0or5jh80ke2qwz","2y8m4zh5g8dvql0","jw2r09hkn6klrz8","4jwq2ghey2yvm0v","965mkyhk1gxor1g","ednm9whw6d4xryo","pxwrxlhy16vpryk","23xmvkh64n30qg8","1l4rjnh91v5om7v","l5ergph43ykjr8k","2y8m4zh58pdzql0","dj2ryohlykp2q1z","8yomo4h12x3zq0j","dn1m1ghlkox7moe","jw2r09hkp6v8rz8","vjxm8ghejjw9r6o","y39mp1h652j9moj","ednm9whwgyljryo","x7lm7phz660xm2w","965mkyhyvv3jr1g","4wyrn4h6v57vq86","l5ergph4n78pr8k","l5ergph4o9x6r8k","l5ergph43w3dr8k","965mkyhkg6e9r1g","2y8m4zh5g6z5ql0","y0or5jhnv54wqwz","x7lm7phjwokpm2w","vjxm8ghe25z2r6o","ednm9whw667gryo","dj2ryoh1wpl0q1z","4wyrn4hxgvgkq86","4wyrn4h607wlq86","4jwq2ghn66exm0v","23xmvkh855dzqg8","1l4rjnh92yg0m7v","n54qllhn9192qvy","23xmvkh6w9woqg8","23xmvkh6kvjzqg8","1l4rjnh9kdxdm7v","l5ergph457ggr8k","dj2ryoh16o67q1z","965mkyhk11yzr1g","3glrw7hnlj73qdy","vjxm8ghe2jllr6o","zp5rzgh5kkz9q82","l5ergph425dlr8k","vjxm8ghln0gkr6o","x7lm7phzlvovm2w","zp5rzgh5no7vq82","1l4rjnh4wk0em7v","965mkyhy6nx5r1g","ednm9wh73g46ryo","k82rekhw7340rep","y39mp1hz21n4moj","y39mp1h6yd1vmoj","y39mp1h6ppzkmoj","pxwrxlh5645dryk","k82rekhgokklrep","ednm9wh7nyoeryo","dj2ryohl5yw8q1z","4jwq2ghn6owym0v","3glrw7h7d0g6qdy","y0or5jh834l0qwz","4wyrn4h67g18q86","x7lm7phzy64om2w","318q66hwyeynqo9","2y8m4zh6275yql0","k82rekhgnnwnrep","l5ergphwgpozr8k","ednm9whw68onryo","4jwq2ghn75xdm0v","jw2r09hk7p32rz8","dj2ryoh16049q1z","l7oqdehgn52lr51","6ypq3nhvze34md7","318q66hxnnw2qo9","6ypq3nh32932md7","y0or5jhn70olqwz","jw2r09hkxn6vrz8","2y8m4zh5njl0ql0","k82rekhgo23vrep","n54qllhn8e29qvy","23xmvkh8e2ojqg8","3glrw7h7x91nqdy","318q66hx4e5zqo9","4wyrn4hxgvj5q86","318q66hxk8vlqo9","4jwq2ghn69x4m0v","1l4rjnh4o7o1m7v","y0or5jhn25geqwz","y39mp1hzgn4pmoj","x7lm7phjnne0m2w","23xmvkh6ko39qg8","8yomo4h19kn7q0j","965mkyhk1oe3r1g","y39mp1h6p4yymoj","x7lm7phjnp77m2w","4jwq2ghnxj20m0v","23xmvkh6wgn4qg8","dj2ryohldx77q1z","zp5rzghg02l1q82","2y8m4zh54pv7ql0","dj2ryohl2jjyq1z","965mkyhkz379r1g","2y8m4zh51gjgql0","k82rekhg9p63rep","4wyrn4h69wo1q86","y0or5jh8jjk3qwz","k82rekhgnxo3rep","dn1m1ghlk03omoe","318q66hxng4kqo9","dj2ryohlvjxeq1z","8yomo4h1e241q0j","2y8m4zh50gp6ql0","318q66hx7y6lqo9","dn1m1ghlnlvnmoe","jw2r09hk11z5rz8","4wyrn4h6z662q86","318q66hx0y2kqo9","318q66hxkdlxqo9","x7lm7phjwe1km2w","y0or5jh8x9gdqwz","pxwrxlhyzdy1ryk","4wyrn4h6vgg4q86","1l4rjnh923w3m7v","8yomo4h1vxjeq0j","965mkyhk3yppr1g","965mkyhyp812r1g","4wyrn4h60l40q86","vjxm8ghe93jlr6o","3glrw7hn06j3qdy","vjxm8ghepye8r6o","4wyrn4h6v5zpq86","n54qllhn996jqvy","dj2ryohlnw9zq1z","pxwrxlhyz6wgryk","jw2r09hk70j0rz8","l5ergph428eyr8k","ednm9whweg05ryo","4wyrn4h694oyq86","k82rekhg1o00rep","318q66hw9pkeqo9","dn1m1gh25z1wmoe","2y8m4zh549gvql0","4jwq2ghnklp2m0v","x7lm7phzlnxlm2w","965mkyhkgo6wr1g","ednm9whwd035ryo","jw2r09hkxk41rz8","l7oqdehgd308r51","965mkyhkgj6dr1g","23xmvkh6wwjxqg8","ednm9whw9k5nryo","l7oqdehg6nxlr51","jw2r09hknox2rz8","y39mp1h6jyjdmoj","l5ergph4n701r8k","2y8m4zh58vkzql0","6ypq3nhvzwdpmd7","pxwrxlhyjk94ryk","y0or5jh8323xqwz","l5ergphwz6pgr8k","l5ergph4ezl0r8k","4wyrn4hxjn9jq86","4jwq2ghnvy5ym0v","965mkyhkznowr1g","y39mp1h6914emoj","zp5rzgh5k3k5q82","y39mp1h6k42emoj","k82rekhgvl47rep","k82rekhg8x7drep","8yomo4h10l64q0j","2y8m4zh6k6g4ql0","n54qllh7040zqvy","y39mp1h6kx2lmoj","8yomo4h15o28q0j","zp5rzghg0092q82","y39mp1h653dxmoj","y39mp1h657w7moj","y39mp1h6jnn2moj","x7lm7phj9ye6m2w","y0or5jh84868qwz","dj2ryohl2289q1z","vjxm8ghege35r6o","x7lm7phjoj8zm2w","8yomo4h1zznoq0j","6ypq3nhv11xymd7","2y8m4zh511ldql0","3glrw7hn1w93qdy","l7oqdehg4ol8r51","dj2ryohlkz6zq1z","4jwq2ghe2eo4m0v","965mkyhyvyl3r1g","ednm9wh7n789ryo","318q66hwew73qo9","l5ergphw1w5xr8k","ednm9whw9lygryo","8yomo4h1zo8jq0j","965mkyhkelxjr1g","zp5rzghg040zq82","1l4rjnh92202m7v","965mkyhk1lw6r1g","pxwrxlhy73j0ryk","dj2ryohlk502q1z","318q66hxn2w1qo9","k82rekhgn6w2rep","y39mp1h6pwz6moj","zp5rzgh5vkvjq82","pxwrxlhy2953ryk","vjxm8ghepd6dr6o","y39mp1h6pvoxmoj","l5ergph4e19vr8k","x7lm7phzy661m2w","pxwrxlhy9e57ryk","pxwrxlh5449xryk","6ypq3nhvgg2wmd7","pxwrxlhy776zryk","k82rekhgnzelrep","n54qllhnkx73qvy","3glrw7hnj676qdy","3glrw7hn0pyeqdy","318q66hx48j0qo9","vjxm8ghej3lwr6o","4wyrn4h6djezq86","x7lm7phj5e41m2w","8yomo4h1kvzgq0j","6ypq3nhv5w13md7","pxwrxlhy1jvoryk","pxwrxlhy1jvyryk","x7lm7phjowp2m2w","n54qllhne8dvqvy","4jwq2ghnkx0vm0v","dj2ryohlyg24q1z","3glrw7hn1yo4qdy","pxwrxlhy1lngryk"],"basketball":["dn1m17tpgnjnmoe","23xmv1tpl4nxmg8","318q6nt63j98mo9","dn1m17tpg85xmoe","y39mp4t0dxo4moj","4jwq25tz578pq0v","318q6nt63jp2mo9","318q6nt63v97mo9","x7lm73t32gz2r2w","l7oqd4t89n00q51","dn1m17tpg8z0moe","1l4rjztjdk82m7v","4wyrn1to5dj2q86","y0or5gtz5431qwz","dn1m17tpg8wxmoe","dj2ry7te9kgnr1z","x7lm73t32k4jr2w","n54ql7tpw5nvrvy","8yomovtg6v1zq0j","pxwrx5txn1v1qyk","k82re8t0e9oerep","zp5rzkt6o823r82","l5ergytlk9wer8k","6ypq3kt7kjnnmd7","y0or5gtz92o5qwz","pxwrx5txlkexqyk","965mk8t2862jm1g","3glrwyt3gkdzqdy","2y8m4ptwe303ml0","2y8m4ptwe381ml0","l5ergytl7o09r8k","ednm9kt25jp6ryo","dj2ry7te9n1xr1z","dn1m17tpgv97moe","ednm9kt25j56ryo","318q6nt610j3mo9","dn1m17tpgndnmoe","y0or5gtz55z4qwz","4jwq25tzwwz0q0v","l7oqd4t890g4q51","jw2r02t6gjknqz8","l7oqd4t8j5lnq51","4jwq25tzg362q0v","y0or5gtz92j5qwz","8yomovtgyd5vq0j","3glrwyt34x9dqdy","vjxm8xt57vz4q6o","pxwrx5tx0gjeqyk","318q6nt63z5pmo9","3glrwyt3gwypqdy","4wyrn1to5v78q86","vjxm8xt57jdkq6o","ednm9kt2pz67ryo","pxwrx5txndv1qyk","4jwq25tzwk93q0v","jw2r02t63n0lqz8","318q6nt685gomo9","x7lm73t3vxvgr2w","ednm9kt2o547ryo","8yomovtg8yw0q0j","3glrwyt394d0qdy","x7lm73t329elr2w","23xmv1tpl405mg8","1l4rjztjdkl8m7v","1l4rjztjg11lm7v","vjxm8xt50n7eq6o","3glrwyt3gywdqdy","x7lm73t3von7r2w"],"tennis":["y0or5of9d76omwz","l5erg1fk6yz7r8k","318q6jf8p14yro9","1l4rjwfnpv5om7v","965mk4f8xk4er1g","jw2r0jf5d8lymz8"],"badminton":["dnm9wls545yzryo","54qllys4638nqvy","jwq2g9sgjgykm0v","ypq3nlsko83dmd7"],"volleyball":["l7oqddhjg2jdq51","dn1m1nh9zgoyqoe","318q67h8gd37ro9","dj2rydh7l474r1z","l7oqddhjg28dq51","8yomoxhy1xggm0j","2y8m4whv5xwpql0","2y8m4whv5xvpql0","pxwrxdhlyexymyk","dj2rydh7l4e4r1z","6ypq3xhkve73qd7","zp5rzdh39w24q82","8yomoxhy1xygm0j","1l4rjdhndzzor7v","dn1m1nh90dgkqoe","dn1m1nh9z0odqoe","ednm9vh5pnolqyo","965mkdh80vwxr1g","y39mpwhdelogqoj","3glrwjh4nxxpqdy","vjxm8lhke3k0q6o","vjxm8lhkenn5q6o","318q67h8x9l4ro9","dn1m1nh9l568qoe","3glrwjh4n644qdy","y0or58h986zdrwz","23xmvzhy69p1qg8","x7lm75hxjllzq2w","4wyrn3hy6jg9m86","ednm9vh5o49kqyo","4jwq23hgnpg8r0v","965mkdh8wx44r1g","zp5rzdh3g43kq82","ednm9vh5wx51qyo","y39mpwhd6wz3qoj","4jwq23hgnpz8r0v","1l4rjdhn95jwr7v","ednm9vh5wx21qyo","l5ergdhk7v4xr8k","l7oqddhjkg6lq51","y39mpwhdon5jqoj","dn1m1nh9l723qoe","k82redh2g6w9qep","l5ergdhk6keyr8k","dj2rydh7l414r1z"]};
</script>
<style>
.text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 161px;
display: inline-block;
}
</style>
<section class="matches-section matches home-page" id="matches">
<div class="mt-4 as-hide-popup-chat">
<div class="events_box row">
<div class="col-md-12">
<div class="main-page">
<div class="page_bars">
<div class="sports-bars d-none-mobile">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item" role="presentation">
<button
class="nav-link active"
id="football-tab"
data-toggle="tab"
data-target="#football"
type="button"
role="tab"
aria-controls="football"
aria-selected="true"
>
<img width="auto" height="17" src="https://static.mitomzi.cc/images/sport-icons/football.svg?v=2" alt="sport icon">
<span>Bóng đá</span>
</button>
<span class="sport-playing">Live</span>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link "
id="basketball-tab"
data-toggle="tab"
data-target="#basketball"
type="button"
role="tab"
aria-controls="basketball"
aria-selected="true"
>
<img width="auto" height="17" src="https://static.mitomzi.cc/images/sport-icons/basketball.svg?v=2" alt="sport icon">
<span>Bóng rổ</span>
</button>
<span class="sport-playing">Live</span>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link "
id="tennis-tab"
data-toggle="tab"
data-target="#tennis"
type="button"
role="tab"
aria-controls="tennis"
aria-selected="true"
>
<img width="auto" height="17" src="https://static.mitomzi.cc/images/sport-icons/tennis.svg?v=2" alt="sport icon">
<span>Tennis</span>
</button>
<span class="sport-playing">Live</span>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link "
id="badminton-tab"
data-toggle="tab"
data-target="#badminton"
type="button"
role="tab"
aria-controls="badminton"
aria-selected="true"
>
<img width="auto" height="17" src="https://static.mitomzi.cc/images/sport-icons/badminton.svg?v=2" alt="sport icon">
<span>Cầu lông</span>
</button>
<span class="sport-playing">Live</span>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link "
id="volleyball-tab"
data-toggle="tab"
data-target="#volleyball"
type="button"
role="tab"
aria-controls="volleyball"
aria-selected="true"
>
<img width="auto" height="17" src="https://static.mitomzi.cc/images/sport-icons/volleyball.svg?v=2" alt="sport icon">
<span>Bóng chuyền</span>
</button>
<span class="sport-playing">Live</span>
</li>
</ul>
<label class="switch btn-livescore">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.36 11.0267C10.2289 11.0263 10.1008 10.9872 9.99178 10.9144C9.88276 10.8415 9.79763 10.7382 9.74704 10.6172C9.69645 10.4963 9.68265 10.3631 9.70736 10.2343C9.73208 10.1056 9.79421 9.98696 9.88599 9.89333C10.386 9.39087 10.6667 8.71086 10.6667 8.002C10.6667 7.29315 10.386 6.61313 9.88599 6.11067C9.76507 5.98428 9.69866 5.81544 9.70109 5.64054C9.70351 5.46565 9.77458 5.29871 9.89896 5.17573C10.0233 5.05275 10.1911 4.98357 10.366 4.98313C10.5409 4.98268 10.709 5.05099 10.834 5.17334C11.5809 5.92531 12 6.94215 12 8.002C12 9.06186 11.5809 10.0787 10.834 10.8307C10.7718 10.893 10.6979 10.9424 10.6166 10.9761C10.5352 11.0097 10.448 11.0269 10.36 11.0267ZM6.10865 10.834C6.23434 10.7097 6.30552 10.5405 6.30652 10.3638C6.30752 10.187 6.23826 10.0171 6.11399 9.89133C5.61398 9.38887 5.33329 8.70886 5.33329 8C5.33329 7.29115 5.61398 6.61113 6.11399 6.10867C6.17721 6.04679 6.22749 5.97294 6.26189 5.89143C6.29629 5.80993 6.31413 5.72239 6.31435 5.63392C6.31458 5.54545 6.29719 5.45782 6.26321 5.37614C6.22923 5.29445 6.17933 5.22035 6.11642 5.15815C6.05351 5.09595 5.97885 5.04689 5.89678 5.01383C5.81472 4.98077 5.7269 4.96438 5.63844 4.96561C5.54998 4.96684 5.46265 4.98566 5.38153 5.02098C5.30042 5.0563 5.22715 5.10741 5.16599 5.17133C4.41911 5.92331 3.99994 6.94015 3.99994 8C3.99994 9.05986 4.41911 10.0767 5.16599 10.8287C5.2903 10.9544 5.45944 11.0255 5.63622 11.0265C5.81299 11.0275 5.98293 10.9583 6.10865 10.834ZM12.9547 12.4473C14.0565 11.2282 14.6666 9.64334 14.6666 8C14.6666 6.35667 14.0565 4.77184 12.9547 3.55267C12.836 3.42156 12.6701 3.34296 12.4936 3.33414C12.317 3.32533 12.1441 3.38703 12.013 3.50567C11.8819 3.62431 11.8033 3.79017 11.7945 3.96677C11.7856 4.14336 11.8473 4.31623 11.966 4.44734C12.846 5.42135 13.3332 6.68732 13.3332 8C13.3332 9.31269 12.846 10.5787 11.966 11.5527C11.8473 11.6838 11.7856 11.8566 11.7945 12.0332C11.8033 12.2098 11.8819 12.3757 12.013 12.4943C12.1441 12.613 12.317 12.6747 12.4936 12.6659C12.6701 12.657 12.836 12.5784 12.9547 12.4473ZM3.98665 12.494C4.11771 12.3754 4.19632 12.2097 4.20519 12.0331C4.21407 11.8566 4.15249 11.6838 4.03399 11.5527C3.15396 10.5787 2.66676 9.31269 2.66676 8C2.66676 6.68732 3.15396 5.42135 4.03399 4.44734C4.09273 4.38242 4.13811 4.30657 4.16754 4.22411C4.19698 4.14165 4.20988 4.05421 4.20551 3.96677C4.20115 3.87933 4.1796 3.7936 4.14211 3.71448C4.10461 3.63537 4.0519 3.56441 3.98699 3.50567C3.92207 3.44692 3.84622 3.40154 3.76376 3.37211C3.68131 3.34268 3.59386 3.32978 3.50642 3.33414C3.32982 3.34296 3.16396 3.42156 3.04532 3.55267C1.94343 4.77184 1.33337 6.35667 1.33337 8C1.33337 9.64334 1.94343 11.2282 3.04532 12.4473C3.16399 12.5783 3.32981 12.6568 3.50633 12.6655C3.68284 12.6743 3.85561 12.6126 3.98665 12.494ZM7.99999 7C7.80221 7 7.60887 7.05865 7.44442 7.16853C7.27997 7.27841 7.15179 7.43459 7.07611 7.61732C7.00042 7.80004 6.98062 8.00111 7.0192 8.19509C7.05779 8.38907 7.15303 8.56726 7.29288 8.70711C7.43273 8.84696 7.61092 8.9422 7.8049 8.98079C7.99888 9.01937 8.19994 8.99957 8.38267 8.92388C8.5654 8.84819 8.72158 8.72002 8.83146 8.55557C8.94134 8.39112 8.99999 8.19778 8.99999 8C8.99999 7.73479 8.89463 7.48043 8.70709 7.29289C8.51956 7.10536 8.2652 7 7.99999 7Z" fill="#5EB24A"/>
<path d="M10.36 11.0267C10.2289 11.0263 10.1009 10.9872 9.99184 10.9144C9.88282 10.8415 9.79769 10.7382 9.7471 10.6172C9.69651 10.4963 9.68271 10.3631 9.70742 10.2343C9.73214 10.1056 9.79427 9.98697 9.88605 9.89334C10.3861 9.39087 10.6667 8.71086 10.6667 8.002C10.6667 7.29315 10.3861 6.61313 9.88605 6.11067C9.76513 5.98428 9.69872 5.81544 9.70115 5.64054C9.70357 5.46565 9.77464 5.29871 9.89902 5.17573C10.0234 5.05275 10.1911 4.98357 10.366 4.98313C10.541 4.98268 10.709 5.05099 10.834 5.17334C11.5809 5.92531 12.0001 6.94215 12.0001 8.002C12.0001 9.06186 11.5809 10.0787 10.834 10.8307C10.7719 10.893 10.698 10.9424 10.6167 10.9761C10.5353 11.0097 10.4481 11.0269 10.36 11.0267ZM6.10871 10.834C6.2344 10.7097 6.30558 10.5405 6.30658 10.3638C6.30758 10.187 6.23832 10.0171 6.11405 9.89134C5.61404 9.38887 5.33335 8.70886 5.33335 8C5.33335 7.29115 5.61404 6.61113 6.11405 6.10867C6.17727 6.04679 6.22755 5.97294 6.26195 5.89143C6.29635 5.80993 6.31419 5.72239 6.31441 5.63392C6.31464 5.54545 6.29725 5.45782 6.26327 5.37614C6.22929 5.29445 6.17939 5.22035 6.11648 5.15815C6.05357 5.09595 5.97891 5.04689 5.89684 5.01383C5.81478 4.98077 5.72696 4.96438 5.6385 4.96561C5.55004 4.96684 5.46271 4.98566 5.38159 5.02098C5.30048 5.0563 5.22721 5.10741 5.16605 5.17134C4.41917 5.92331 4 6.94015 4 8C4 9.05986 4.41917 10.0767 5.16605 10.8287C5.29036 10.9544 5.4595 11.0255 5.63628 11.0265C5.81305 11.0275 5.98299 10.9583 6.10871 10.834ZM8.00005 7C7.80227 7 7.60893 7.05865 7.44448 7.16853C7.28003 7.27841 7.15185 7.43459 7.07617 7.61732C7.00048 7.80004 6.98068 8.00111 7.01926 8.19509C7.05785 8.38907 7.15309 8.56726 7.29294 8.70711C7.43279 8.84696 7.61098 8.9422 7.80496 8.98079C7.99894 9.01937 8.2 8.99957 8.38273 8.92388C8.56546 8.84819 8.72163 8.72002 8.83152 8.55557C8.9414 8.39112 9.00005 8.19778 9.00005 8C9.00005 7.73479 8.89469 7.48043 8.70715 7.2929C8.51962 7.10536 8.26526 7 8.00005 7Z" fill="#FFE400"/>
</svg>
<input type="checkbox">
<span class="txt pc">LIVESCORE</span>
<span class="txt sp">LIVES</span>
</label>
</div>
<div
class="filter-row active"
id="filter-football""
>
<ul class="list-filter">
<li class="live_indicator-bg">
<a href="#" rel="nofollow" data-filter="now" class="now">
<img src="https://static.mitomzi.cc/images/home/live-indicator.svg" alt="Live" />
<span class="num">2</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="hot" class="hot">
<img src="https://static.mitomzi.cc/images/home/fire.svg" alt="Fire">
<span class="pc">Trận Hot</span> <span class="sp">Hot</span> <span class="num">59</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="commentator" class="commentator">
<img src="https://static.mitomzi.cc/images/home/mic-2.svg" alt="Microphone">
BLV Mitom
<span class="num">81</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="today" class="today">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Hôm nay <span class="num">115
</span></a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="tomorrow" class="tomorrow">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Ngày mai <span class="num">296</span>
</a>
</li>
<li><a href="#" rel="nofollow" class="active all" data-filter="all">
Tất cả <span
class="num">981</span></a>
</li>
</ul>
<div id="matches__filter--leagues-football" class="matches__filter--leagues">
<div class="sl-leagues m-0">
<div class="custom-dropdown-trigger">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<div class="custom-dropdown-content custom-dropdown-content">
<div class="custom-dropdown-head">
<span>Chọn giải đấu</span>
<svg class="custom-dropdown-close" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5" clip-path="url(#clip0_1253_866)">
<path d="M1.38543 13.2224C1.26524 13.2224 1.14773 13.1868 1.04779 13.12C0.94784 13.0532 0.86994 12.9583 0.82394 12.8473C0.77794 12.7362 0.765906 12.614 0.789362 12.4961C0.812817 12.3783 0.870707 12.27 0.95571 12.185L12.1849 0.955829C12.2988 0.841859 12.4534 0.777832 12.6146 0.777832C12.7758 0.777832 12.9304 0.841859 13.0443 0.955829C13.1583 1.0698 13.2223 1.22437 13.2223 1.38555C13.2223 1.54673 13.1583 1.7013 13.0443 1.81527L1.81515 13.0444C1.75877 13.1009 1.69179 13.1457 1.61804 13.1763C1.5443 13.2068 1.46525 13.2225 1.38543 13.2224Z" fill="white"/>
<path d="M12.6146 13.2224C12.5348 13.2225 12.4557 13.2068 12.382 13.1763C12.3083 13.1457 12.2413 13.1009 12.1849 13.0444L0.955722 1.81527C0.841753 1.7013 0.777725 1.54673 0.777725 1.38555C0.777725 1.22437 0.841753 1.0698 0.955722 0.955829C1.06969 0.841859 1.22427 0.777832 1.38544 0.777832C1.54662 0.777832 1.7012 0.841859 1.81517 0.955829L13.0443 12.185C13.1293 12.27 13.1872 12.3783 13.2107 12.4961C13.2341 12.614 13.2221 12.7362 13.1761 12.8473C13.1301 12.9583 13.0522 13.0532 12.9523 13.12C12.8523 13.1868 12.7348 13.2224 12.6146 13.2224Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1253_866">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
<div class="custom-dropdown-list">
<div class="custom-dropdown-option active" data-value="all">
<div class="league-name">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<span class="count">
981
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whz0ryox8">
<div class="league-name">
<img
alt="Ngoại Hạng Anh"
src="https://imgts.api-football.xyz/football/competition/jednm9whz0ryox8/image/small"
/>
<span>Ngoại Hạng Anh</span>
</div>
<span class="count">
19
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdehlyr510j">
<div class="league-name">
<img
alt="La Liga"
src="https://imgts.api-football.xyz/football/competition/vl7oqdehlyr510j/image/small"
/>
<span>La Liga</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jhg6qwzv3">
<div class="league-name">
<img
alt="Bundesliga"
src="https://imgts.api-football.xyz/football/competition/gy0or5jhg6qwzv3/image/small"
/>
<span>Bundesliga</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzghp5q82w1">
<div class="league-name">
<img
alt="Serie A"
src="https://imgts.api-football.xyz/football/competition/4zp5rzghp5q82w1/image/small"
/>
<span>Serie A</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphnzr8k0o">
<div class="league-name">
<img
alt="Ligue 1"
src="https://imgts.api-football.xyz/football/competition/yl5ergphnzr8k0o/image/small"
/>
<span>Ligue 1</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2gh4xwm0ve">
<div class="league-name">
<img
alt="V.League 1 "
src="https://imgts.api-football.xyz/football/competition/p4jwq2gh4xwm0ve/image/small"
/>
<span>V.League 1 </span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8ghx2r6odg">
<div class="league-name">
<img
alt="VĐQG Bồ Đào Nha"
src="https://imgts.api-football.xyz/football/competition/9vjxm8ghx2r6odg/image/small"
/>
<span>VĐQG Bồ Đào Nha</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhg2qvy9d">
<div class="league-name">
<img
alt="MLS_Nhà Nghề Mỹ"
src="https://imgts.api-football.xyz/football/competition/kn54qllhg2qvy9d/image/small"
/>
<span>MLS_Nhà Nghề Mỹ</span>
</div>
<span class="count">
15
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mp1hwxmojxg">
<div class="league-name">
<img
alt="Ngoại Hạng Nga"
src="https://imgts.api-football.xyz/football/competition/8y39mp1hwxmojxg/image/small"
/>
<span>Ngoại Hạng Nga</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z318q66hl1qo9jd">
<div class="league-name">
<img
alt="J1 League"
src="https://imgts.api-football.xyz/football/competition/z318q66hl1qo9jd/image/small"
/>
<span>J1 League</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jhlxgqwzv">
<div class="league-name">
<img
alt="K League 1"
src="https://imgts.api-football.xyz/football/competition/gy0or5jhlxgqwzv/image/small"
/>
<span>K League 1</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekh52repzj">
<div class="league-name">
<img
alt="Ngoại Hạng Trung Quốc"
src="https://imgts.api-football.xyz/football/competition/9k82rekh52repzj/image/small"
/>
<span>Ngoại Hạng Trung Quốc</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7hevqdyjv">
<div class="league-name">
<img
alt="VĐQG Argentina"
src="https://imgts.api-football.xyz/football/competition/p3glrw7hevqdyjv/image/small"
/>
<span>VĐQG Argentina</span>
</div>
<span class="count">
15
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzgh9zq82w1">
<div class="league-name">
<img
alt="VĐQG Brasil "
src="https://imgts.api-football.xyz/football/competition/4zp5rzgh9zq82w1/image/small"
/>
<span>VĐQG Brasil </span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekhp6repzj">
<div class="league-name">
<img
alt="VĐQG Mexico"
src="https://imgts.api-football.xyz/football/competition/9k82rekhp6repzj/image/small"
/>
<span>VĐQG Mexico</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdeheyr510j">
<div class="league-name">
<img
alt="VĐQG Hà Lan"
src="https://imgts.api-football.xyz/football/competition/vl7oqdeheyr510j/image/small"
/>
<span>VĐQG Hà Lan</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjnh66nm7vx">
<div class="league-name">
<img
alt="VĐQG Ả-rập Xê-út"
src="https://imgts.api-football.xyz/football/competition/j1l4rjnh66nm7vx/image/small"
/>
<span>VĐQG Ả-rập Xê-út</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohnkq1zpg">
<div class="league-name">
<img
alt="La Liga 2"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohnkq1zpg/image/small"
/>
<span>La Liga 2</span>
</div>
<span class="count">
11
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyh32r1ge4">
<div class="league-name">
<img
alt="Hạng Nhất Anh"
src="https://imgts.api-football.xyz/football/competition/l965mkyh32r1ge4/image/small"
/>
<span>Hạng Nhất Anh</span>
</div>
<span class="count">
12
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mp1h6jmojxg">
<div class="league-name">
<img
alt="VĐQG Thổ Nhĩ Kỳ"
src="https://imgts.api-football.xyz/football/competition/8y39mp1h6jmojxg/image/small"
/>
<span>VĐQG Thổ Nhĩ Kỳ</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhjzqvy9d">
<div class="league-name">
<img
alt="Bundesliga 2"
src="https://imgts.api-football.xyz/football/competition/kn54qllhjzqvy9d/image/small"
/>
<span>Bundesliga 2</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzgh0eq82w1">
<div class="league-name">
<img
alt="Ngoại Hạng Đan Mạch"
src="https://imgts.api-football.xyz/football/competition/4zp5rzgh0eq82w1/image/small"
/>
<span>Ngoại Hạng Đan Mạch</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8gh22r6odg">
<div class="league-name">
<img
alt="VĐQG Bỉ"
src="https://imgts.api-football.xyz/football/competition/9vjxm8gh22r6odg/image/small"
/>
<span>VĐQG Bỉ</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jhj6qwzv3">
<div class="league-name">
<img
alt="VĐQG Na Uy"
src="https://imgts.api-football.xyz/football/competition/gy0or5jhj6qwzv3/image/small"
/>
<span>VĐQG Na Uy</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllh2xpqvy9">
<div class="league-name">
<img
alt="Hilux Revo Thai League"
src="https://imgts.api-football.xyz/football/competition/kn54qllh2xpqvy9/image/small"
/>
<span>Hilux Revo Thai League</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhz53md7o">
<div class="league-name">
<img
alt="VĐQG Indonesia "
src="https://imgts.api-football.xyz/football/competition/56ypq3nhz53md7o/image/small"
/>
<span>VĐQG Indonesia </span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nh01nmd7o">
<div class="league-name">
<img
alt="Ngoại hạng Ai Cập "
src="https://imgts.api-football.xyz/football/competition/56ypq3nh01nmd7o/image/small"
/>
<span>Ngoại hạng Ai Cập </span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hoeq86pv">
<div class="league-name">
<img
alt="VĐQG Hy Lạp"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hoeq86pv/image/small"
/>
<span>VĐQG Hy Lạp</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphyvr8k0o">
<div class="league-name">
<img
alt="VĐQG Áo"
src="https://imgts.api-football.xyz/football/competition/yl5ergphyvr8k0o/image/small"
/>
<span>VĐQG Áo</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjnhx9m7vx5">
<div class="league-name">
<img
alt="Hạng 2 Ý"
src="https://imgts.api-football.xyz/football/competition/j1l4rjnhx9m7vx5/image/small"
/>
<span>Hạng 2 Ý</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2gh747m0ve">
<div class="league-name">
<img
alt="Australia Capital Territory Women"
src="https://imgts.api-football.xyz/football/competition/p4jwq2gh747m0ve/image/small"
/>
<span>Australia Capital Territory Women</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyh749r1ge">
<div class="league-name">
<img
alt="Bahrain Premier League"
src="https://imgts.api-football.xyz/football/competition/l965mkyh749r1ge/image/small"
/>
<span>Bahrain Premier League</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlh9xdryk0">
<div class="league-name">
<img
alt="Bhutan Premier League"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlh9xdryk0/image/small"
/>
<span>Bhutan Premier League</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1ghn43moep">
<div class="league-name">
<img
alt="Brazilian Paulista Women League"
src="https://imgts.api-football.xyz/football/competition/9dn1m1ghn43moep/image/small"
/>
<span>Brazilian Paulista Women League</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7ph001m2wd">
<div class="league-name">
<img
alt="Brazilian Serie C"
src="https://imgts.api-football.xyz/football/competition/gx7lm7ph001m2wd/image/small"
/>
<span>Brazilian Serie C</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nh0llmd7o">
<div class="league-name">
<img
alt="CAF Champions League"
src="https://imgts.api-football.xyz/football/competition/56ypq3nh0llmd7o/image/small"
/>
<span>CAF Champions League</span>
</div>
<span class="count">
13
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzghjx9q82w">
<div class="league-name">
<img
alt="CAF U20 Women African Nations Championship"
src="https://imgts.api-football.xyz/football/competition/4zp5rzghjx9q82w/image/small"
/>
<span>CAF U20 Women African Nations Championship</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z8yomo4h2v6q0j6">
<div class="league-name">
<img
alt="Calcutta Premier Division "
src="https://imgts.api-football.xyz/football/competition/z8yomo4h2v6q0j6/image/small"
/>
<span>Calcutta Premier Division </span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekhyd5repz">
<div class="league-name">
<img
alt="Cambodia Cup"
src="https://imgts.api-football.xyz/football/competition/9k82rekhyd5repz/image/small"
/>
<span>Cambodia Cup</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekh8z7repz">
<div class="league-name">
<img
alt="CFA Women\'s League Two"
src="https://imgts.api-football.xyz/football/competition/9k82rekh8z7repz/image/small"
/>
<span>CFA Women\'s League Two</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphz6r8k0o">
<div class="league-name">
<img
alt="Chinese Women Super League"
src="https://imgts.api-football.xyz/football/competition/yl5ergphz6r8k0o/image/small"
/>
<span>Chinese Women Super League</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohjlvq1zp">
<div class="league-name">
<img
alt="Copa Rio"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohjlvq1zp/image/small"
/>
<span>Copa Rio</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkhxpqg8ny">
<div class="league-name">
<img
alt="Cúp Bồ Đào Nha"
src="https://imgts.api-football.xyz/football/competition/d23xmvkhxpqg8ny/image/small"
/>
<span>Cúp Bồ Đào Nha</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlhgzvryk0">
<div class="league-name">
<img
alt="Cúp Liên đoàn CAF"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlhgzvryk0/image/small"
/>
<span>Cúp Liên đoàn CAF</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hd4lq86p">
<div class="league-name">
<img
alt="Cúp Liên Đoàn Fijian"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hd4lq86p/image/small"
/>
<span>Cúp Liên Đoàn Fijian</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7h63qdyjv">
<div class="league-name">
<img
alt="Cúp Thụy Sĩ"
src="https://imgts.api-football.xyz/football/competition/p3glrw7h63qdyjv/image/small"
/>
<span>Cúp Thụy Sĩ</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9wh0nryox8">
<div class="league-name">
<img
alt="Czech 3 liga"
src="https://imgts.api-football.xyz/football/competition/jednm9wh0nryox8/image/small"
/>
<span>Czech 3 liga</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekhwp4repz">
<div class="league-name">
<img
alt="Dongbei Star Football Super League"
src="https://imgts.api-football.xyz/football/competition/9k82rekhwp4repz/image/small"
/>
<span>Dongbei Star Football Super League</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7hywqdyjv">
<div class="league-name">
<img
alt="ENG U21 League 2"
src="https://imgts.api-football.xyz/football/competition/p3glrw7hywqdyjv/image/small"
/>
<span>ENG U21 League 2</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohjoq1zpg">
<div class="league-name">
<img
alt="English FA Women Super League"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohjoq1zpg/image/small"
/>
<span>English FA Women Super League</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mp1hjzmojxg">
<div class="league-name">
<img
alt="English Football League One"
src="https://imgts.api-football.xyz/football/competition/8y39mp1hjzmojxg/image/small"
/>
<span>English Football League One</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlhjpryk0j">
<div class="league-name">
<img
alt="English U21 Premier League"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlhjpryk0j/image/small"
/>
<span>English U21 Premier League</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhzxmd7oj">
<div class="league-name">
<img
alt="FA Women Championship"
src="https://imgts.api-football.xyz/football/competition/56ypq3nhzxmd7oj/image/small"
/>
<span>FA Women Championship</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekh6lrepzj">
<div class="league-name">
<img
alt="FNL Nga"
src="https://imgts.api-football.xyz/football/competition/9k82rekh6lrepzj/image/small"
/>
<span>FNL Nga</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zh1jql074">
<div class="league-name">
<img
alt="French Division 1 Feminine"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zh1jql074/image/small"
/>
<span>French Division 1 Feminine</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whgoryox8">
<div class="league-name">
<img
alt="German Frauen Bundesliga"
src="https://imgts.api-football.xyz/football/competition/jednm9whgoryox8/image/small"
/>
<span>German Frauen Bundesliga</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhz3qvy9d">
<div class="league-name">
<img
alt="Giải Trẻ Ukrainian"
src="https://imgts.api-football.xyz/football/competition/kn54qllhz3qvy9d/image/small"
/>
<span>Giải Trẻ Ukrainian</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyhe0r1ge4">
<div class="league-name">
<img
alt="Giải Trẻ Ý"
src="https://imgts.api-football.xyz/football/competition/l965mkyhe0r1ge4/image/small"
/>
<span>Giải Trẻ Ý</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlhgpryk0j">
<div class="league-name">
<img
alt="Giao Hữu CLB"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlhgpryk0j/image/small"
/>
<span>Giao Hữu CLB</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekh977repz">
<div class="league-name">
<img
alt="Gibraltar Premier Division"
src="https://imgts.api-football.xyz/football/competition/9k82rekh977repz/image/small"
/>
<span>Gibraltar Premier Division</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09h9jrz84o">
<div class="league-name">
<img
alt="Hạng 2 Áo"
src="https://imgts.api-football.xyz/football/competition/kjw2r09h9jrz84o/image/small"
/>
<span>Hạng 2 Áo</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8ghonr6odg">
<div class="league-name">
<img
alt="Hạng 2 Argentina"
src="https://imgts.api-football.xyz/football/competition/9vjxm8ghonr6odg/image/small"
/>
<span>Hạng 2 Argentina</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjnh0xm7vx5">
<div class="league-name">
<img
alt="Hạng 2 Brazil"
src="https://imgts.api-football.xyz/football/competition/j1l4rjnh0xm7vx5/image/small"
/>
<span>Hạng 2 Brazil</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlh84ryk0j">
<div class="league-name">
<img
alt="Hạng 2 Colombia"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlh84ryk0j/image/small"
/>
<span>Hạng 2 Colombia</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyhw4r1ge4">
<div class="league-name">
<img
alt="Hạng 2 Estonia"
src="https://imgts.api-football.xyz/football/competition/l965mkyhw4r1ge4/image/small"
/>
<span>Hạng 2 Estonia</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohdkq1zpg">
<div class="league-name">
<img
alt="Hạng 2 Hà Lan"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohdkq1zpg/image/small"
/>
<span>Hạng 2 Hà Lan</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1ghnv3moep">
<div class="league-name">
<img
alt="Hạng 2 Hồng Kông"
src="https://imgts.api-football.xyz/football/competition/9dn1m1ghnv3moep/image/small"
/>
<span>Hạng 2 Hồng Kông</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z8yomo4h2kgq0j6">
<div class="league-name">
<img
alt="Hạng 2 Indonesia"
src="https://imgts.api-football.xyz/football/competition/z8yomo4h2kgq0j6/image/small"
/>
<span>Hạng 2 Indonesia</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7phzjm2wdk">
<div class="league-name">
<img
alt="Hạng 2 Lithuania"
src="https://imgts.api-football.xyz/football/competition/gx7lm7phzjm2wdk/image/small"
/>
<span>Hạng 2 Lithuania</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z318q66hygqo9jd">
<div class="league-name">
<img
alt="Hạng 2 Mexico"
src="https://imgts.api-football.xyz/football/competition/z318q66hygqo9jd/image/small"
/>
<span>Hạng 2 Mexico</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09hy5rz84o">
<div class="league-name">
<img
alt="Hạng 2 Paraguay"
src="https://imgts.api-football.xyz/football/competition/kjw2r09hy5rz84o/image/small"
/>
<span>Hạng 2 Paraguay</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhgwmd7oj">
<div class="league-name">
<img
alt="Hạng 2 Phần Lan"
src="https://imgts.api-football.xyz/football/competition/56ypq3nhgwmd7oj/image/small"
/>
<span>Hạng 2 Phần Lan</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zhw4ql074">
<div class="league-name">
<img
alt="Hạng 2 Romania"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zhw4ql074/image/small"
/>
<span>Hạng 2 Romania</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkh3d8qg8n">
<div class="league-name">
<img
alt="Hạng 2 Thái Lan"
src="https://imgts.api-football.xyz/football/competition/d23xmvkh3d8qg8n/image/small"
/>
<span>Hạng 2 Thái Lan</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1gh5gmoepl">
<div class="league-name">
<img
alt="Hạng 2 Trung Quốc"
src="https://imgts.api-football.xyz/football/competition/9dn1m1gh5gmoepl/image/small"
/>
<span>Hạng 2 Trung Quốc</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhxdvqvy9">
<div class="league-name">
<img
alt="Hạng 2 Venezuela"
src="https://imgts.api-football.xyz/football/competition/kn54qllhxdvqvy9/image/small"
/>
<span>Hạng 2 Venezuela</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jhgwpqwzv">
<div class="league-name">
<img
alt="Hạng 3 Tây Ban Nha"
src="https://imgts.api-football.xyz/football/competition/gy0or5jhgwpqwzv/image/small"
/>
<span>Hạng 3 Tây Ban Nha</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohx2q1zpg">
<div class="league-name">
<img
alt="Hạng Nhất Ba Lan"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohx2q1zpg/image/small"
/>
<span>Hạng Nhất Ba Lan</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7phjem2wdk">
<div class="league-name">
<img
alt="Hạng Nhất Croatia "
src="https://imgts.api-football.xyz/football/competition/gx7lm7phjem2wdk/image/small"
/>
<span>Hạng Nhất Croatia </span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjnh20m7vx5">
<div class="league-name">
<img
alt="Hạng Nhất Đan Mạch"
src="https://imgts.api-football.xyz/football/competition/j1l4rjnh20m7vx5/image/small"
/>
<span>Hạng Nhất Đan Mạch</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7ph8jm2wdk">
<div class="league-name">
<img
alt="Hạng Nhất Ireland"
src="https://imgts.api-football.xyz/football/competition/gx7lm7ph8jm2wdk/image/small"
/>
<span>Hạng Nhất Ireland</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkhynqg8ny">
<div class="league-name">
<img
alt="Hạng Nhất Kazakhstan"
src="https://imgts.api-football.xyz/football/competition/d23xmvkhynqg8ny/image/small"
/>
<span>Hạng Nhất Kazakhstan</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphx4r8k0o">
<div class="league-name">
<img
alt="Hạng Nhất Paraguay"
src="https://imgts.api-football.xyz/football/competition/yl5ergphx4r8k0o/image/small"
/>
<span>Hạng Nhất Paraguay</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2gh9ym0veo">
<div class="league-name">
<img
alt="Hạng Nhất Séc "
src="https://imgts.api-football.xyz/football/competition/p4jwq2gh9ym0veo/image/small"
/>
<span>Hạng Nhất Séc </span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09h59rz84o">
<div class="league-name">
<img
alt="Hạng Nhất Serbia"
src="https://imgts.api-football.xyz/football/competition/kjw2r09h59rz84o/image/small"
/>
<span>Hạng Nhất Serbia</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekh2orepzj">
<div class="league-name">
<img
alt="Hạng Nhất Síp"
src="https://imgts.api-football.xyz/football/competition/9k82rekh2orepzj/image/small"
/>
<span>Hạng Nhất Síp</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekhgorepzj">
<div class="league-name">
<img
alt="Hạng Nhất Thổ Nhĩ Kỳ"
src="https://imgts.api-football.xyz/football/competition/9k82rekhgorepzj/image/small"
/>
<span>Hạng Nhất Thổ Nhĩ Kỳ</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z318q66h91qo9jd">
<div class="league-name">
<img
alt="Hạng Nhất Trung Quốc"
src="https://imgts.api-football.xyz/football/competition/z318q66h91qo9jd/image/small"
/>
<span>Hạng Nhất Trung Quốc</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jho9qwzv3">
<div class="league-name">
<img
alt="Hạng Nhất Ukraina"
src="https://imgts.api-football.xyz/football/competition/gy0or5jho9qwzv3/image/small"
/>
<span>Hạng Nhất Ukraina</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09heyrz84o">
<div class="league-name">
<img
alt="Hong Kong First Division"
src="https://imgts.api-football.xyz/football/competition/kjw2r09heyrz84o/image/small"
/>
<span>Hong Kong First Division</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergph5d7r8k0">
<div class="league-name">
<img
alt="India Mumbai Super Division"
src="https://imgts.api-football.xyz/football/competition/yl5ergph5d7r8k0/image/small"
/>
<span>India Mumbai Super Division</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7ph9p8m2wd">
<div class="league-name">
<img
alt="Indian Bangalore Super Division"
src="https://imgts.api-football.xyz/football/competition/gx7lm7ph9p8m2wd/image/small"
/>
<span>Indian Bangalore Super Division</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlh1dyryk0">
<div class="league-name">
<img
alt="Indian Mizoram Premier League"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlh1dyryk0/image/small"
/>
<span>Indian Mizoram Premier League</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphvvpr8k0">
<div class="league-name">
<img
alt="Indian Shillong Premier League"
src="https://imgts.api-football.xyz/football/competition/yl5ergphvvpr8k0/image/small"
/>
<span>Indian Shillong Premier League</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2ghxgm0veo">
<div class="league-name">
<img
alt="Italian Serie C"
src="https://imgts.api-football.xyz/football/competition/p4jwq2ghxgm0veo/image/small"
/>
<span>Italian Serie C</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1gh6gmoepl">
<div class="league-name">
<img
alt="J2 League"
src="https://imgts.api-football.xyz/football/competition/9dn1m1gh6gmoepl/image/small"
/>
<span>J2 League</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdeh7pr510j">
<div class="league-name">
<img
alt="J3 League"
src="https://imgts.api-football.xyz/football/competition/vl7oqdeh7pr510j/image/small"
/>
<span>J3 League</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhev6qvy9">
<div class="league-name">
<img
alt="Jamaica Premier League"
src="https://imgts.api-football.xyz/football/competition/kn54qllhev6qvy9/image/small"
/>
<span>Jamaica Premier League</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hg1q86pv">
<div class="league-name">
<img
alt="JFL"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hg1q86pv/image/small"
/>
<span>JFL</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphg6r8k0o">
<div class="league-name">
<img
alt="JPN Nadeshiko League 1"
src="https://imgts.api-football.xyz/football/competition/yl5ergphg6r8k0o/image/small"
/>
<span>JPN Nadeshiko League 1</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllh25dqvy9">
<div class="league-name">
<img
alt="K League 2"
src="https://imgts.api-football.xyz/football/competition/kn54qllh25dqvy9/image/small"
/>
<span>K League 2</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzghjy0q82w">
<div class="league-name">
<img
alt="K3 League "
src="https://imgts.api-football.xyz/football/competition/4zp5rzghjy0q82w/image/small"
/>
<span>K3 League </span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7hz0lqdyj">
<div class="league-name">
<img
alt="K4 League"
src="https://imgts.api-football.xyz/football/competition/p3glrw7hz0lqdyj/image/small"
/>
<span>K4 League</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whkzpryox">
<div class="league-name">
<img
alt="Kuwait Premier League"
src="https://imgts.api-football.xyz/football/competition/jednm9whkzpryox/image/small"
/>
<span>Kuwait Premier League</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyh739r1ge">
<div class="league-name">
<img
alt="Kuwaiti First Division Leagus"
src="https://imgts.api-football.xyz/football/competition/l965mkyh739r1ge/image/small"
/>
<span>Kuwaiti First Division Leagus</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7hwylqdyj">
<div class="league-name">
<img
alt="Lebanese Premier League"
src="https://imgts.api-football.xyz/football/competition/p3glrw7hwylqdyj/image/small"
/>
<span>Lebanese Premier League</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09hw8rz84o">
<div class="league-name">
<img
alt="Ligue 2"
src="https://imgts.api-football.xyz/football/competition/kjw2r09hw8rz84o/image/small"
/>
<span>Ligue 2</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkho71qg8n">
<div class="league-name">
<img
alt="Malawi Premier League"
src="https://imgts.api-football.xyz/football/competition/d23xmvkho71qg8n/image/small"
/>
<span>Malawi Premier League</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zhzo9ql07">
<div class="league-name">
<img
alt="Malaysia A1 Semi-Pro League"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zhzo9ql07/image/small"
/>
<span>Malaysia A1 Semi-Pro League</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkh8nqg8ny">
<div class="league-name">
<img
alt="Merkantil Bank Liga"
src="https://imgts.api-football.xyz/football/competition/d23xmvkh8nqg8ny/image/small"
/>
<span>Merkantil Bank Liga</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09hwv0rz84">
<div class="league-name">
<img
alt="MEX Liga Premier Serie"
src="https://imgts.api-football.xyz/football/competition/kjw2r09hwv0rz84/image/small"
/>
<span>MEX Liga Premier Serie</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhl99md7o">
<div class="league-name">
<img
alt="MLS Next Pro"
src="https://imgts.api-football.xyz/football/competition/56ypq3nhl99md7o/image/small"
/>
<span>MLS Next Pro</span>
</div>
<span class="count">
14
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkhxvwqg8n">
<div class="league-name">
<img
alt="MML W"
src="https://imgts.api-football.xyz/football/competition/d23xmvkhxvwqg8n/image/small"
/>
<span>MML W</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdehx3r510j">
<div class="league-name">
<img
alt="Ngoại hạng Armenia"
src="https://imgts.api-football.xyz/football/competition/vl7oqdehx3r510j/image/small"
/>
<span>Ngoại hạng Armenia</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekhjorepzj">
<div class="league-name">
<img
alt="Ngoại hạng Azerbaijan"
src="https://imgts.api-football.xyz/football/competition/9k82rekhjorepzj/image/small"
/>
<span>Ngoại hạng Azerbaijan</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z8yomo4h39q0j6l">
<div class="league-name">
<img
alt="Ngoại Hạng Belarus"
src="https://imgts.api-football.xyz/football/competition/z8yomo4h39q0j6l/image/small"
/>
<span>Ngoại Hạng Belarus</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzghxp0q82w">
<div class="league-name">
<img
alt="Ngoại Hạng Canada"
src="https://imgts.api-football.xyz/football/competition/4zp5rzghxp0q82w/image/small"
/>
<span>Ngoại Hạng Canada</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2ghv66m0ve">
<div class="league-name">
<img
alt="Ngoại Hạng Đài Loan"
src="https://imgts.api-football.xyz/football/competition/p4jwq2ghv66m0ve/image/small"
/>
<span>Ngoại Hạng Đài Loan</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hj1q86pv">
<div class="league-name">
<img
alt="Ngoại Hạng HồngKông"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hj1q86pv/image/small"
/>
<span>Ngoại Hạng HồngKông</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jhl3oqwzv">
<div class="league-name">
<img
alt="Ngoại hạng Iraq"
src="https://imgts.api-football.xyz/football/competition/gy0or5jhl3oqwzv/image/small"
/>
<span>Ngoại hạng Iraq</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryoh7eq1zpg">
<div class="league-name">
<img
alt="Ngoại hạng Israel"
src="https://imgts.api-football.xyz/football/competition/kdj2ryoh7eq1zpg/image/small"
/>
<span>Ngoại hạng Israel</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7hwjlqdyj">
<div class="league-name">
<img
alt="Ngoại hạng Jordan"
src="https://imgts.api-football.xyz/football/competition/p3glrw7hwjlqdyj/image/small"
/>
<span>Ngoại hạng Jordan</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllh40qvy9d">
<div class="league-name">
<img
alt="Ngoại Hạng Kazakhstan"
src="https://imgts.api-football.xyz/football/competition/kn54qllh40qvy9d/image/small"
/>
<span>Ngoại Hạng Kazakhstan</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09hje5rz84">
<div class="league-name">
<img
alt="Ngoại Hạng Mông Cổ"
src="https://imgts.api-football.xyz/football/competition/kjw2r09hje5rz84/image/small"
/>
<span>Ngoại Hạng Mông Cổ</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdehldnr510">
<div class="league-name">
<img
alt="Ngoại Hạng Nữ Đài Loan"
src="https://imgts.api-football.xyz/football/competition/vl7oqdehldnr510/image/small"
/>
<span>Ngoại Hạng Nữ Đài Loan</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hleq86pv">
<div class="league-name">
<img
alt="Ngoại Hạng Nữ Nga"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hleq86pv/image/small"
/>
<span>Ngoại Hạng Nữ Nga</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2gh1gm0veo">
<div class="league-name">
<img
alt="Ngoại Hạng Scotland"
src="https://imgts.api-football.xyz/football/competition/p4jwq2gh1gm0veo/image/small"
/>
<span>Ngoại Hạng Scotland</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zhzngql07">
<div class="league-name">
<img
alt="Ngoại Hạng Turkmenistan"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zhzngql07/image/small"
/>
<span>Ngoại Hạng Turkmenistan</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7ph7jm2wdk">
<div class="league-name">
<img
alt="Ngoại Hạng Ukraina"
src="https://imgts.api-football.xyz/football/competition/gx7lm7ph7jm2wdk/image/small"
/>
<span>Ngoại Hạng Ukraina</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1ghg1moepl">
<div class="league-name">
<img
alt="North Macedonia First Football League"
src="https://imgts.api-football.xyz/football/competition/9dn1m1ghg1moepl/image/small"
/>
<span>North Macedonia First Football League</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzghvzq82w1">
<div class="league-name">
<img
alt="Nữ USA"
src="https://imgts.api-football.xyz/football/competition/4zp5rzghvzq82w1/image/small"
/>
<span>Nữ USA</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2ghvenm0ve">
<div class="league-name">
<img
alt="OFC Women\'s U19 Championship"
src="https://imgts.api-football.xyz/football/competition/p4jwq2ghvenm0ve/image/small"
/>
<span>OFC Women\'s U19 Championship</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhx56qvy9">
<div class="league-name">
<img
alt="Philippines UFL"
src="https://imgts.api-football.xyz/football/competition/kn54qllhx56qvy9/image/small"
/>
<span>Philippines UFL</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergpho3gr8k0">
<div class="league-name">
<img
alt="Qatari Stars Cup"
src="https://imgts.api-football.xyz/football/competition/yl5ergpho3gr8k0/image/small"
/>
<span>Qatari Stars Cup</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyhyw2r1ge">
<div class="league-name">
<img
alt="RUS D3B"
src="https://imgts.api-football.xyz/football/competition/l965mkyhyw2r1ge/image/small"
/>
<span>RUS D3B</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hxooq86p">
<div class="league-name">
<img
alt="SACU17"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hxooq86p/image/small"
/>
<span>SACU17</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxlh112ryk0">
<div class="league-name">
<img
alt="San Marino Campionato di Calcio"
src="https://imgts.api-football.xyz/football/competition/gpxwrxlh112ryk0/image/small"
/>
<span>San Marino Campionato di Calcio</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1gh44wmoep">
<div class="league-name">
<img
alt="Saudi Arabia Kings Cup"
src="https://imgts.api-football.xyz/football/competition/9dn1m1gh44wmoep/image/small"
/>
<span>Saudi Arabia Kings Cup</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8gh5lr6odg">
<div class="league-name">
<img
alt="Slovak 2.Liga"
src="https://imgts.api-football.xyz/football/competition/9vjxm8gh5lr6odg/image/small"
/>
<span>Slovak 2.Liga</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4h4k7q86p">
<div class="league-name">
<img
alt="Tajikistan Higher League"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4h4k7q86p/image/small"
/>
<span>Tajikistan Higher League</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhdekqvy9">
<div class="league-name">
<img
alt="Trung Quốc U-21 League"
src="https://imgts.api-football.xyz/football/competition/kn54qllhdekqvy9/image/small"
/>
<span>Trung Quốc U-21 League</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zh3jgql07">
<div class="league-name">
<img
alt="UAE Pro League"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zh3jgql07/image/small"
/>
<span>UAE Pro League</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zh65eql07">
<div class="league-name">
<img
alt="UAE U23"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zh65eql07/image/small"
/>
<span>UAE U23</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z8yomo4h7kvq0j6">
<div class="league-name">
<img
alt="United Arab Emirates Division 1 Group A"
src="https://imgts.api-football.xyz/football/competition/z8yomo4h7kvq0j6/image/small"
/>
<span>United Arab Emirates Division 1 Group A</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllheonqvy9">
<div class="league-name">
<img
alt="United Arab Emirates U21"
src="https://imgts.api-football.xyz/football/competition/kn54qllheonqvy9/image/small"
/>
<span>United Arab Emirates U21</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="d23xmvkh1oqg8ny">
<div class="league-name">
<img
alt="USL Championship"
src="https://imgts.api-football.xyz/football/competition/d23xmvkh1oqg8ny/image/small"
/>
<span>USL Championship</span>
</div>
<span class="count">
12
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8ghlkzr6od">
<div class="league-name">
<img
alt="USL League One"
src="https://imgts.api-football.xyz/football/competition/9vjxm8ghlkzr6od/image/small"
/>
<span>USL League One</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whkvpryox">
<div class="league-name">
<img
alt="V.LEAGUE 2"
src="https://imgts.api-football.xyz/football/competition/jednm9whkvpryox/image/small"
/>
<span>V.LEAGUE 2</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdeh3lr510j">
<div class="league-name">
<img
alt="VĐQG Ba Lan"
src="https://imgts.api-football.xyz/football/competition/vl7oqdeh3lr510j/image/small"
/>
<span>VĐQG Ba Lan</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzgh4eq82w1">
<div class="league-name">
<img
alt="VĐQG Bắc Ireland"
src="https://imgts.api-football.xyz/football/competition/4zp5rzgh4eq82w1/image/small"
/>
<span>VĐQG Bắc Ireland</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhn0qvy9d">
<div class="league-name">
<img
alt="VĐQG Bulgaria"
src="https://imgts.api-football.xyz/football/competition/kn54qllhn0qvy9d/image/small"
/>
<span>VĐQG Bulgaria</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2ghv7vm0ve">
<div class="league-name">
<img
alt="VĐQG Campuchia "
src="https://imgts.api-football.xyz/football/competition/p4jwq2ghv7vm0ve/image/small"
/>
<span>VĐQG Campuchia </span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhyymd7oj">
<div class="league-name">
<img
alt="VĐQG Colombia"
src="https://imgts.api-football.xyz/football/competition/56ypq3nhyymd7oj/image/small"
/>
<span>VĐQG Colombia</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whneryox8">
<div class="league-name">
<img
alt="VĐQG Costa Rica "
src="https://imgts.api-football.xyz/football/competition/jednm9whneryox8/image/small"
/>
<span>VĐQG Costa Rica </span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8ghdnr6odg">
<div class="league-name">
<img
alt="VĐQG Ecuador"
src="https://imgts.api-football.xyz/football/competition/9vjxm8ghdnr6odg/image/small"
/>
<span>VĐQG Ecuador</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whokryox8">
<div class="league-name">
<img
alt="VĐQG Estonia "
src="https://imgts.api-football.xyz/football/competition/jednm9whokryox8/image/small"
/>
<span>VĐQG Estonia </span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9whpkryox8">
<div class="league-name">
<img
alt="VĐQG Georgia "
src="https://imgts.api-football.xyz/football/competition/jednm9whpkryox8/image/small"
/>
<span>VĐQG Georgia </span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mp1hlpmojxg">
<div class="league-name">
<img
alt="VĐQG Guatemala"
src="https://imgts.api-football.xyz/football/competition/8y39mp1hlpmojxg/image/small"
/>
<span>VĐQG Guatemala</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzghkzq82w1">
<div class="league-name">
<img
alt="VĐQG Honduras"
src="https://imgts.api-football.xyz/football/competition/4zp5rzghkzq82w1/image/small"
/>
<span>VĐQG Honduras</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllh70qvy9d">
<div class="league-name">
<img
alt="VĐQG Hungary"
src="https://imgts.api-football.xyz/football/competition/kn54qllh70qvy9d/image/small"
/>
<span>VĐQG Hungary</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllhp3qvy9d">
<div class="league-name">
<img
alt="VĐQG Iceland"
src="https://imgts.api-football.xyz/football/competition/kn54qllhp3qvy9d/image/small"
/>
<span>VĐQG Iceland</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r09hln4rz84">
<div class="league-name">
<img
alt="VĐQG Iran"
src="https://imgts.api-football.xyz/football/competition/kjw2r09hln4rz84/image/small"
/>
<span>VĐQG Iran</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8gh3lr6odg">
<div class="league-name">
<img
alt="VĐQG Ireland"
src="https://imgts.api-football.xyz/football/competition/9vjxm8gh3lr6odg/image/small"
/>
<span>VĐQG Ireland</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdeholr510j">
<div class="league-name">
<img
alt="VĐQG Latvia"
src="https://imgts.api-football.xyz/football/competition/vl7oqdeholr510j/image/small"
/>
<span>VĐQG Latvia</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8ghllr6odg">
<div class="league-name">
<img
alt="VĐQG Lithuania"
src="https://imgts.api-football.xyz/football/competition/9vjxm8ghllr6odg/image/small"
/>
<span>VĐQG Lithuania</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kn54qllh2epqvy9">
<div class="league-name">
<img
alt="VĐQG Malaysia"
src="https://imgts.api-football.xyz/football/competition/kn54qllh2epqvy9/image/small"
/>
<span>VĐQG Malaysia</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z318q66hokoqo9j">
<div class="league-name">
<img
alt="VĐQG Marốc"
src="https://imgts.api-football.xyz/football/competition/z318q66hokoqo9j/image/small"
/>
<span>VĐQG Marốc</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8ghjj0r6od">
<div class="league-name">
<img
alt="VĐQG Myanmar"
src="https://imgts.api-football.xyz/football/competition/9vjxm8ghjj0r6od/image/small"
/>
<span>VĐQG Myanmar</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4hd7lq86p">
<div class="league-name">
<img
alt="VĐQG Nữ Argentine"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4hd7lq86p/image/small"
/>
<span>VĐQG Nữ Argentine</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zhz5nql07">
<div class="league-name">
<img
alt="VĐQG Nữ Bồ Đào Nha"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zhz5nql07/image/small"
/>
<span>VĐQG Nữ Bồ Đào Nha</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekheorepzj">
<div class="league-name">
<img
alt="VĐQG Nữ Estonia "
src="https://imgts.api-football.xyz/football/competition/9k82rekheorepzj/image/small"
/>
<span>VĐQG Nữ Estonia </span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82rekhyz9repz">
<div class="league-name">
<img
alt="VĐQG Nữ Hà Lan"
src="https://imgts.api-football.xyz/football/competition/9k82rekhyz9repz/image/small"
/>
<span>VĐQG Nữ Hà Lan</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhzpzmd7o">
<div class="league-name">
<img
alt="VĐQG Nữ Mexico "
src="https://imgts.api-football.xyz/football/competition/56ypq3nhzpzmd7o/image/small"
/>
<span>VĐQG Nữ Mexico </span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7h0oqdyjv">
<div class="league-name">
<img
alt="VĐQG Nữ Phần Lan"
src="https://imgts.api-football.xyz/football/competition/p3glrw7h0oqdyjv/image/small"
/>
<span>VĐQG Nữ Phần Lan</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3nhlwmd7oj">
<div class="league-name">
<img
alt="VĐQG Nữ Tây Ban Nha"
src="https://imgts.api-football.xyz/football/competition/56ypq3nhlwmd7oj/image/small"
/>
<span>VĐQG Nữ Tây Ban Nha</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergph5zr8k0o">
<div class="league-name">
<img
alt="VĐQG Nữ Thụy Điển"
src="https://imgts.api-football.xyz/football/competition/yl5ergph5zr8k0o/image/small"
/>
<span>VĐQG Nữ Thụy Điển</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gy0or5jheneqwzv">
<div class="league-name">
<img
alt="VĐQG Nữ Ukraina"
src="https://imgts.api-football.xyz/football/competition/gy0or5jheneqwzv/image/small"
/>
<span>VĐQG Nữ Ukraina</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphovgr8k0">
<div class="league-name">
<img
alt="VĐQG Oman"
src="https://imgts.api-football.xyz/football/competition/yl5ergphovgr8k0/image/small"
/>
<span>VĐQG Oman</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2ghk3dm0ve">
<div class="league-name">
<img
alt="VĐQG Panama"
src="https://imgts.api-football.xyz/football/competition/p4jwq2ghk3dm0ve/image/small"
/>
<span>VĐQG Panama</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdehwxr510j">
<div class="league-name">
<img
alt="VĐQG Peru"
src="https://imgts.api-football.xyz/football/competition/vl7oqdehwxr510j/image/small"
/>
<span>VĐQG Peru</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z8yomo4h92q0j6l">
<div class="league-name">
<img
alt="VĐQG Phần Lan"
src="https://imgts.api-football.xyz/football/competition/z8yomo4h92q0j6l/image/small"
/>
<span>VĐQG Phần Lan</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn4h8ejq86p">
<div class="league-name">
<img
alt="VĐQG Qatar"
src="https://imgts.api-football.xyz/football/competition/e4wyrn4h8ejq86p/image/small"
/>
<span>VĐQG Qatar</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohe2q1zpg">
<div class="league-name">
<img
alt="VĐQG Romania"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohe2q1zpg/image/small"
/>
<span>VĐQG Romania</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjnhl0m7vx5">
<div class="league-name">
<img
alt="VĐQG Séc"
src="https://imgts.api-football.xyz/football/competition/j1l4rjnhl0m7vx5/image/small"
/>
<span>VĐQG Séc</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="yl5ergphk2r8k0o">
<div class="league-name">
<img
alt="VĐQG Serbia"
src="https://imgts.api-football.xyz/football/competition/yl5ergphk2r8k0o/image/small"
/>
<span>VĐQG Serbia</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8gh4g9r6od">
<div class="league-name">
<img
alt="VĐQG Singapore"
src="https://imgts.api-football.xyz/football/competition/9vjxm8gh4g9r6od/image/small"
/>
<span>VĐQG Singapore</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrw7h33qdyjv">
<div class="league-name">
<img
alt="VĐQG Slovakia"
src="https://imgts.api-football.xyz/football/competition/p3glrw7h33qdyjv/image/small"
/>
<span>VĐQG Slovakia</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2ghgom0veo">
<div class="league-name">
<img
alt="VĐQG Slovenia "
src="https://imgts.api-football.xyz/football/competition/p4jwq2ghgom0veo/image/small"
/>
<span>VĐQG Slovenia </span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l965mkyhg0r1ge4">
<div class="league-name">
<img
alt="VĐQG Thụy Điển"
src="https://imgts.api-football.xyz/football/competition/l965mkyhg0r1ge4/image/small"
/>
<span>VĐQG Thụy Điển</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="v2y8m4zhydql074">
<div class="league-name">
<img
alt="VĐQG Uruguay"
src="https://imgts.api-football.xyz/football/competition/v2y8m4zhydql074/image/small"
/>
<span>VĐQG Uruguay</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kdj2ryohkgyq1zp">
<div class="league-name">
<img
alt="VĐQG Uzbekistan"
src="https://imgts.api-football.xyz/football/competition/kdj2ryohkgyq1zp/image/small"
/>
<span>VĐQG Uzbekistan</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm7phy4m2wdk">
<div class="league-name">
<img
alt="VĐQG Venezuela"
src="https://imgts.api-football.xyz/football/competition/gx7lm7phy4m2wdk/image/small"
/>
<span>VĐQG Venezuela</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="vl7oqdeh8odr510">
<div class="league-name">
<img
alt="Vietnam Womens League"
src="https://imgts.api-football.xyz/football/competition/vl7oqdeh8odr510/image/small"
/>
<span>Vietnam Womens League</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq2gh4o9m0ve">
<div class="league-name">
<img
alt="WK League"
src="https://imgts.api-football.xyz/football/competition/p4jwq2gh4o9m0ve/image/small"
/>
<span>WK League</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1gh8domoep">
<div class="league-name">
<img
alt="Women Empowerment League"
src="https://imgts.api-football.xyz/football/competition/9dn1m1gh8domoep/image/small"
/>
<span>Women Empowerment League</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m1gh04moepl">
<div class="league-name">
<img
alt="Youth Championship Russia"
src="https://imgts.api-football.xyz/football/competition/9dn1m1gh04moepl/image/small"
/>
<span>Youth Championship Russia</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="filter-row "
id="filter-basketball""
>
<ul class="list-filter">
<li class="live_indicator-bg">
<a href="#" rel="nofollow" data-filter="now" class="now">
<img src="https://static.mitomzi.cc/images/home/live-indicator.svg" alt="Live" />
<span class="num">1</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="hot" class="hot">
<img src="https://static.mitomzi.cc/images/home/fire.svg" alt="Fire">
<span class="pc">Trận Hot</span> <span class="sp">Hot</span> <span class="num">0</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="commentator" class="commentator">
<img src="https://static.mitomzi.cc/images/home/mic-2.svg" alt="Microphone">
BLV Mitom
<span class="num">6</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="today" class="today">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Hôm nay <span class="num">21
</span></a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="tomorrow" class="tomorrow">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Ngày mai <span class="num">18</span>
</a>
</li>
<li><a href="#" rel="nofollow" class="active all" data-filter="all">
Tất cả <span
class="num">68</span></a>
</li>
</ul>
<div id="matches__filter--leagues-basketball" class="matches__filter--leagues">
<div class="sl-leagues m-0">
<div class="custom-dropdown-trigger">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<div class="custom-dropdown-content custom-dropdown-content">
<div class="custom-dropdown-head">
<span>Chọn giải đấu</span>
<svg class="custom-dropdown-close" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5" clip-path="url(#clip0_1253_866)">
<path d="M1.38543 13.2224C1.26524 13.2224 1.14773 13.1868 1.04779 13.12C0.94784 13.0532 0.86994 12.9583 0.82394 12.8473C0.77794 12.7362 0.765906 12.614 0.789362 12.4961C0.812817 12.3783 0.870707 12.27 0.95571 12.185L12.1849 0.955829C12.2988 0.841859 12.4534 0.777832 12.6146 0.777832C12.7758 0.777832 12.9304 0.841859 13.0443 0.955829C13.1583 1.0698 13.2223 1.22437 13.2223 1.38555C13.2223 1.54673 13.1583 1.7013 13.0443 1.81527L1.81515 13.0444C1.75877 13.1009 1.69179 13.1457 1.61804 13.1763C1.5443 13.2068 1.46525 13.2225 1.38543 13.2224Z" fill="white"/>
<path d="M12.6146 13.2224C12.5348 13.2225 12.4557 13.2068 12.382 13.1763C12.3083 13.1457 12.2413 13.1009 12.1849 13.0444L0.955722 1.81527C0.841753 1.7013 0.777725 1.54673 0.777725 1.38555C0.777725 1.22437 0.841753 1.0698 0.955722 0.955829C1.06969 0.841859 1.22427 0.777832 1.38544 0.777832C1.54662 0.777832 1.7012 0.841859 1.81517 0.955829L13.0443 12.185C13.1293 12.27 13.1872 12.3783 13.2107 12.4961C13.2341 12.614 13.2221 12.7362 13.1761 12.8473C13.1301 12.9583 13.0522 13.0532 12.9523 13.12C12.8523 13.1868 12.7348 13.2224 12.6146 13.2224Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1253_866">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
<div class="custom-dropdown-list">
<div class="custom-dropdown-option active" data-value="all">
<div class="league-name">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<span class="count">
68
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r02t6xqz84o">
<div class="league-name">
<img
alt="Basketball Champions League"
src="https://imgts.api-football.xyz/football/competition/kjw2r02t6xqz84o/image/small"
/>
<span>Basketball Champions League</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="29dn1m17t9moepl">
<div class="league-name">
<img
alt="British Super League Basketball"
src="https://imgts.api-football.xyz/football/competition/29dn1m17t9moepl/image/small"
/>
<span>British Super League Basketball</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrx5tllqyk0j">
<div class="league-name">
<img
alt="CHAMPIONSHIPS"
src="https://imgts.api-football.xyz/football/competition/gpxwrx5tllqyk0j/image/small"
/>
<span>CHAMPIONSHIPS</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kz8yomovtdq0j6l">
<div class="league-name">
<img
alt="China National Basketball League"
src="https://imgts.api-football.xyz/football/competition/kz8yomovtdq0j6l/image/small"
/>
<span>China National Basketball League</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9dn1m17t4xpmoep">
<div class="league-name">
<img
alt="China Women\'s National Championship Basketball"
src="https://imgts.api-football.xyz/football/competition/9dn1m17t4xpmoep/image/small"
/>
<span>China Women\'s National Championship Basketball</span>
</div>
<span class="count">
8
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrx5txeqyk0j">
<div class="league-name">
<img
alt="Club Friendship"
src="https://imgts.api-football.xyz/football/competition/gpxwrx5txeqyk0j/image/small"
/>
<span>Club Friendship</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gx7lm73tzzr2wdk">
<div class="league-name">
<img
alt="Copa del Rey de Baloncesto"
src="https://imgts.api-football.xyz/football/competition/gx7lm73tzzr2wdk/image/small"
/>
<span>Copa del Rey de Baloncesto</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p4jwq25t9jq0veo">
<div class="league-name">
<img
alt="FIBA U16 Women\'s Asian Championship"
src="https://imgts.api-football.xyz/football/competition/p4jwq25t9jq0veo/image/small"
/>
<span>FIBA U16 Women\'s Asian Championship</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="z318q6ntky6mo9j">
<div class="league-name">
<img
alt="Korea Basketball League Cup"
src="https://imgts.api-football.xyz/football/competition/z318q6ntky6mo9j/image/small"
/>
<span>Korea Basketball League Cup</span>
</div>
<span class="count">
5
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrwyto2xqdyj">
<div class="league-name">
<img
alt="Korean University Basketball League"
src="https://imgts.api-football.xyz/football/competition/p3glrwyto2xqdyj/image/small"
/>
<span>Korean University Basketball League</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9ktkxryox8">
<div class="league-name">
<img
alt="Lietuvos Krepsinio Lyga"
src="https://imgts.api-football.xyz/football/competition/jednm9ktkxryox8/image/small"
/>
<span>Lietuvos Krepsinio Lyga</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8xtg4q6odg">
<div class="league-name">
<img
alt="Liga Nacional de Baloncesto Profesional"
src="https://imgts.api-football.xyz/football/competition/9vjxm8xtg4q6odg/image/small"
/>
<span>Liga Nacional de Baloncesto Profesional</span>
</div>
<span class="count">
10
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="xkn54ql7t8rvy9d">
<div class="league-name">
<img
alt="National Basketball League"
src="https://imgts.api-football.xyz/football/competition/xkn54ql7t8rvy9d/image/small"
/>
<span>National Basketball League</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjztzlem7vx">
<div class="league-name">
<img
alt="Philippines MPBL"
src="https://imgts.api-football.xyz/football/competition/j1l4rjztzlem7vx/image/small"
/>
<span>Philippines MPBL</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm8xtl7q6odg">
<div class="league-name">
<img
alt="Russia Basketball Cup"
src="https://imgts.api-football.xyz/football/competition/9vjxm8xtl7q6odg/image/small"
/>
<span>Russia Basketball Cup</span>
</div>
<span class="count">
7
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="zgpxwrx5tdqyk0j">
<div class="league-name">
<img
alt="Svenska Basketligan"
src="https://imgts.api-football.xyz/football/competition/zgpxwrx5tdqyk0j/image/small"
/>
<span>Svenska Basketligan</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrwyt3pqdyjv">
<div class="league-name">
<img
alt="Turkish Basketball First League"
src="https://imgts.api-football.xyz/football/competition/p3glrwyt3pqdyjv/image/small"
/>
<span>Turkish Basketball First League</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="p3glrwytl05qdyj">
<div class="league-name">
<img
alt="Vietnam Championship Women U23"
src="https://imgts.api-football.xyz/football/competition/p3glrwytl05qdyj/image/small"
/>
<span>Vietnam Championship Women U23</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="56ypq3kt1y9md7o">
<div class="league-name">
<img
alt="Vietnam VBA"
src="https://imgts.api-football.xyz/football/competition/56ypq3kt1y9md7o/image/small"
/>
<span>Vietnam VBA</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="filter-row "
id="filter-tennis""
>
<ul class="list-filter">
<li class="live_indicator-bg">
<a href="#" rel="nofollow" data-filter="now" class="now">
<img src="https://static.mitomzi.cc/images/home/live-indicator.svg" alt="Live" />
<span class="num">3</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="hot" class="hot">
<img src="https://static.mitomzi.cc/images/home/fire.svg" alt="Fire">
<span class="pc">Trận Hot</span> <span class="sp">Hot</span> <span class="num">0</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="commentator" class="commentator">
<img src="https://static.mitomzi.cc/images/home/mic-2.svg" alt="Microphone">
BLV Mitom
<span class="num">2</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="today" class="today">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Hôm nay <span class="num">6
</span></a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="tomorrow" class="tomorrow">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Ngày mai <span class="num">0</span>
</a>
</li>
<li><a href="#" rel="nofollow" class="active all" data-filter="all">
Tất cả <span
class="num">6</span></a>
</li>
</ul>
<div id="matches__filter--leagues-tennis" class="matches__filter--leagues">
<div class="sl-leagues m-0">
<div class="custom-dropdown-trigger">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<div class="custom-dropdown-content custom-dropdown-content">
<div class="custom-dropdown-head">
<span>Chọn giải đấu</span>
<svg class="custom-dropdown-close" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5" clip-path="url(#clip0_1253_866)">
<path d="M1.38543 13.2224C1.26524 13.2224 1.14773 13.1868 1.04779 13.12C0.94784 13.0532 0.86994 12.9583 0.82394 12.8473C0.77794 12.7362 0.765906 12.614 0.789362 12.4961C0.812817 12.3783 0.870707 12.27 0.95571 12.185L12.1849 0.955829C12.2988 0.841859 12.4534 0.777832 12.6146 0.777832C12.7758 0.777832 12.9304 0.841859 13.0443 0.955829C13.1583 1.0698 13.2223 1.22437 13.2223 1.38555C13.2223 1.54673 13.1583 1.7013 13.0443 1.81527L1.81515 13.0444C1.75877 13.1009 1.69179 13.1457 1.61804 13.1763C1.5443 13.2068 1.46525 13.2225 1.38543 13.2224Z" fill="white"/>
<path d="M12.6146 13.2224C12.5348 13.2225 12.4557 13.2068 12.382 13.1763C12.3083 13.1457 12.2413 13.1009 12.1849 13.0444L0.955722 1.81527C0.841753 1.7013 0.777725 1.54673 0.777725 1.38555C0.777725 1.22437 0.841753 1.0698 0.955722 0.955829C1.06969 0.841859 1.22427 0.777832 1.38544 0.777832C1.54662 0.777832 1.7012 0.841859 1.81517 0.955829L13.0443 12.185C13.1293 12.27 13.1872 12.3783 13.2107 12.4961C13.2341 12.614 13.2221 12.7362 13.1761 12.8473C13.1301 12.9583 13.0522 13.0532 12.9523 13.12C12.8523 13.1868 12.7348 13.2224 12.6146 13.2224Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1253_866">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
<div class="custom-dropdown-list">
<div class="custom-dropdown-option active" data-value="all">
<div class="league-name">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<span class="count">
6
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="dn1m12f4n1jqoep">
<div class="league-name">
<img
alt="ATP Challenger Saint Tropez, France Men Singles"
src="https://imgts.api-football.xyz/football/competition/dn1m12f4n1jqoep/image/small"
/>
<span>ATP Challenger Saint Tropez, France Men Singles</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9vjxm85fex0m6od">
<div class="league-name">
<img
alt="ATP Chengdu, China Men Singles"
src="https://imgts.api-football.xyz/football/competition/9vjxm85fex0m6od/image/small"
/>
<span>ATP Chengdu, China Men Singles</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="318q6jfo14lro9j">
<div class="league-name">
<img
alt="ATP Hangzhou, China Men Doubles"
src="https://imgts.api-football.xyz/football/competition/318q6jfo14lro9j/image/small"
/>
<span>ATP Hangzhou, China Men Doubles</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="9k82re9fy4kmepz">
<div class="league-name">
<img
alt="WTA Seoul, Korea Republic Women Doubles"
src="https://imgts.api-football.xyz/football/competition/9k82re9fy4kmepz/image/small"
/>
<span>WTA Seoul, Korea Republic Women Doubles</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mpyfjngmojx">
<div class="league-name">
<img
alt="WTA Seoul, Korea Republic Women Singles"
src="https://imgts.api-football.xyz/football/competition/8y39mpyfjngmojx/image/small"
/>
<span>WTA Seoul, Korea Republic Women Singles</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="filter-row "
id="filter-badminton""
>
<ul class="list-filter">
<li class="live_indicator-bg">
<a href="#" rel="nofollow" data-filter="now" class="now">
<img src="https://static.mitomzi.cc/images/home/live-indicator.svg" alt="Live" />
<span class="num">3</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="hot" class="hot">
<img src="https://static.mitomzi.cc/images/home/fire.svg" alt="Fire">
<span class="pc">Trận Hot</span> <span class="sp">Hot</span> <span class="num">0</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="commentator" class="commentator">
<img src="https://static.mitomzi.cc/images/home/mic-2.svg" alt="Microphone">
BLV Mitom
<span class="num">0</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="today" class="today">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Hôm nay <span class="num">4
</span></a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="tomorrow" class="tomorrow">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Ngày mai <span class="num">0</span>
</a>
</li>
<li><a href="#" rel="nofollow" class="active all" data-filter="all">
Tất cả <span
class="num">4</span></a>
</li>
</ul>
<div id="matches__filter--leagues-badminton" class="matches__filter--leagues">
<div class="sl-leagues m-0">
<div class="custom-dropdown-trigger">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<div class="custom-dropdown-content custom-dropdown-content">
<div class="custom-dropdown-head">
<span>Chọn giải đấu</span>
<svg class="custom-dropdown-close" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5" clip-path="url(#clip0_1253_866)">
<path d="M1.38543 13.2224C1.26524 13.2224 1.14773 13.1868 1.04779 13.12C0.94784 13.0532 0.86994 12.9583 0.82394 12.8473C0.77794 12.7362 0.765906 12.614 0.789362 12.4961C0.812817 12.3783 0.870707 12.27 0.95571 12.185L12.1849 0.955829C12.2988 0.841859 12.4534 0.777832 12.6146 0.777832C12.7758 0.777832 12.9304 0.841859 13.0443 0.955829C13.1583 1.0698 13.2223 1.22437 13.2223 1.38555C13.2223 1.54673 13.1583 1.7013 13.0443 1.81527L1.81515 13.0444C1.75877 13.1009 1.69179 13.1457 1.61804 13.1763C1.5443 13.2068 1.46525 13.2225 1.38543 13.2224Z" fill="white"/>
<path d="M12.6146 13.2224C12.5348 13.2225 12.4557 13.2068 12.382 13.1763C12.3083 13.1457 12.2413 13.1009 12.1849 13.0444L0.955722 1.81527C0.841753 1.7013 0.777725 1.54673 0.777725 1.38555C0.777725 1.22437 0.841753 1.0698 0.955722 0.955829C1.06969 0.841859 1.22427 0.777832 1.38544 0.777832C1.54662 0.777832 1.7012 0.841859 1.81517 0.955829L13.0443 12.185C13.1293 12.27 13.1872 12.3783 13.2107 12.4961C13.2341 12.614 13.2221 12.7362 13.1761 12.8473C13.1301 12.9583 13.0522 13.0532 12.9523 13.12C12.8523 13.1868 12.7348 13.2224 12.6146 13.2224Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1253_866">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
<div class="custom-dropdown-list">
<div class="custom-dropdown-option active" data-value="all">
<div class="league-name">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4jwq2g9s44k7m0v">
<div class="league-name">
<img
alt="China Masters, Singles"
src="https://imgts.api-football.xyz/football/competition/4jwq2g9s44k7m0v/image/small"
/>
<span>China Masters, Singles</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="l5ergp9so4wvr8k">
<div class="league-name">
<img
alt="Indonesia Masters I, Mixed Doubles"
src="https://imgts.api-football.xyz/football/competition/l5ergp9so4wvr8k/image/small"
/>
<span>Indonesia Masters I, Mixed Doubles</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jw2r09gslk2jrz8">
<div class="league-name">
<img
alt="Indonesia Masters I, Women Singles"
src="https://imgts.api-football.xyz/football/competition/jw2r09gslk2jrz8/image/small"
/>
<span>Indonesia Masters I, Women Singles</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="filter-row "
id="filter-volleyball""
>
<ul class="list-filter">
<li class="live_indicator-bg">
<a href="#" rel="nofollow" data-filter="now" class="now">
<img src="https://static.mitomzi.cc/images/home/live-indicator.svg" alt="Live" />
<span class="num">2</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="hot" class="hot">
<img src="https://static.mitomzi.cc/images/home/fire.svg" alt="Fire">
<span class="pc">Trận Hot</span> <span class="sp">Hot</span> <span class="num">0</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="commentator" class="commentator">
<img src="https://static.mitomzi.cc/images/home/mic-2.svg" alt="Microphone">
BLV Mitom
<span class="num">1</span>
</a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="today" class="today">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Hôm nay <span class="num">15
</span></a>
</li>
<li>
<a href="#" rel="nofollow" data-filter="tomorrow" class="tomorrow">
<img src="https://static.mitomzi.cc/images/home/calendar.svg" alt="Calendar" />
Ngày mai <span class="num">12</span>
</a>
</li>
<li><a href="#" rel="nofollow" class="active all" data-filter="all">
Tất cả <span
class="num">45</span></a>
</li>
</ul>
<div id="matches__filter--leagues-volleyball" class="matches__filter--leagues">
<div class="sl-leagues m-0">
<div class="custom-dropdown-trigger">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<div class="custom-dropdown-content custom-dropdown-content">
<div class="custom-dropdown-head">
<span>Chọn giải đấu</span>
<svg class="custom-dropdown-close" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.5" clip-path="url(#clip0_1253_866)">
<path d="M1.38543 13.2224C1.26524 13.2224 1.14773 13.1868 1.04779 13.12C0.94784 13.0532 0.86994 12.9583 0.82394 12.8473C0.77794 12.7362 0.765906 12.614 0.789362 12.4961C0.812817 12.3783 0.870707 12.27 0.95571 12.185L12.1849 0.955829C12.2988 0.841859 12.4534 0.777832 12.6146 0.777832C12.7758 0.777832 12.9304 0.841859 13.0443 0.955829C13.1583 1.0698 13.2223 1.22437 13.2223 1.38555C13.2223 1.54673 13.1583 1.7013 13.0443 1.81527L1.81515 13.0444C1.75877 13.1009 1.69179 13.1457 1.61804 13.1763C1.5443 13.2068 1.46525 13.2225 1.38543 13.2224Z" fill="white"/>
<path d="M12.6146 13.2224C12.5348 13.2225 12.4557 13.2068 12.382 13.1763C12.3083 13.1457 12.2413 13.1009 12.1849 13.0444L0.955722 1.81527C0.841753 1.7013 0.777725 1.54673 0.777725 1.38555C0.777725 1.22437 0.841753 1.0698 0.955722 0.955829C1.06969 0.841859 1.22427 0.777832 1.38544 0.777832C1.54662 0.777832 1.7012 0.841859 1.81517 0.955829L13.0443 12.185C13.1293 12.27 13.1872 12.3783 13.2107 12.4961C13.2341 12.614 13.2221 12.7362 13.1761 12.8473C13.1301 12.9583 13.0522 13.0532 12.9523 13.12C12.8523 13.1868 12.7348 13.2224 12.6146 13.2224Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1253_866">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
<div class="custom-dropdown-list">
<div class="custom-dropdown-option active" data-value="all">
<div class="league-name">
<img src="https://static.mitomzi.cc/images/home/league.svg" alt="league">
<span>Tất cả giải đấu</span>
</div>
<span class="count">
45
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjdh11er7vx">
<div class="league-name">
<img
alt="AVL"
src="https://imgts.api-football.xyz/football/competition/j1l4rjdh11er7vx/image/small"
/>
<span>AVL</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mpwh554qojx">
<div class="league-name">
<img
alt="AVL Women"
src="https://imgts.api-football.xyz/football/competition/8y39mpwh554qojx/image/small"
/>
<span>AVL Women</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="gpxwrxdh1j9myk0">
<div class="league-name">
<img
alt="Czech Cup Women"
src="https://imgts.api-football.xyz/football/competition/gpxwrxdh1j9myk0/image/small"
/>
<span>Czech Cup Women</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="kjw2r0nhnpnqz84">
<div class="league-name">
<img
alt="I. Liga"
src="https://imgts.api-football.xyz/football/competition/kjw2r0nhnpnqz84/image/small"
/>
<span>I. Liga</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="4zp5rzdh70oq82w">
<div class="league-name">
<img
alt="KOVO Cup"
src="https://imgts.api-football.xyz/football/competition/4zp5rzdh70oq82w/image/small"
/>
<span>KOVO Cup</span>
</div>
<span class="count">
1
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="j1l4rjdh12dr7vx">
<div class="league-name">
<img
alt="KOVO Cup Women"
src="https://imgts.api-football.xyz/football/competition/j1l4rjdh12dr7vx/image/small"
/>
<span>KOVO Cup Women</span>
</div>
<span class="count">
4
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="k82redhvxpxqepz">
<div class="league-name">
<img
alt="Pan-American Cup Final Six Women"
src="https://imgts.api-football.xyz/football/competition/k82redhvxpxqepz/image/small"
/>
<span>Pan-American Cup Final Six Women</span>
</div>
<span class="count">
3
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="8y39mpwh5klqojx">
<div class="league-name">
<img
alt="Russia Cup"
src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small"
/>
<span>Russia Cup</span>
</div>
<span class="count">
15
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="e4wyrn3he0zm86p">
<div class="league-name">
<img
alt="Russia Cup Women"
src="https://imgts.api-football.xyz/football/competition/e4wyrn3he0zm86p/image/small"
/>
<span>Russia Cup Women</span>
</div>
<span class="count">
9
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="dj2rydhk79dr1zp">
<div class="league-name">
<img
alt="Superliga"
src="https://imgts.api-football.xyz/football/competition/dj2rydhk79dr1zp/image/small"
/>
<span>Superliga</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
<div class="custom-dropdown-option" data-value="jednm9vh921qyox">
<div class="league-name">
<img
alt="World Championship"
src="https://imgts.api-football.xyz/football/competition/jednm9vh921qyox/image/small"
/>
<span>World Championship</span>
</div>
<span class="count">
2
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
<g opacity="0.5">
<path d="M7.53125 4.64827V3.51733C6.54806 3.66987 5.71888 4.29433 5.28316 5.15115L6.35869 5.50062L7.53125 4.64827Z" fill="white"/>
<path d="M7.27482 8.32275L6.61038 9.23691C7.02726 9.45157 7.49973 9.57285 8.00001 9.57285C8.50029 9.57285 8.97276 9.45157 9.38963 9.23691L8.72519 8.32275H7.27482Z" fill="white"/>
<path d="M4.99288 6.04248C4.96754 6.20032 4.95419 6.36214 4.95419 6.52701C4.95419 7.36942 5.29801 8.13298 5.85263 8.68492L6.51651 7.77154L6.06897 6.39214L4.99288 6.04248Z" fill="white"/>
<path d="M7.37676 7.38537H8.62326L9.00807 6.19933L8.00001 5.46655L6.99194 6.19933L7.37676 7.38537Z" fill="white"/>
<path d="M10.7168 5.15115C10.2811 4.29433 9.45194 3.66987 8.46875 3.51733V4.64827L9.64131 5.50062L10.7168 5.15115Z" fill="white"/>
<path d="M15.5312 1.25513H0.46875C0.209875 1.25513 0 1.465 0 1.72388V11.3301C0 11.589 0.209875 11.7988 0.46875 11.7988H15.5312C15.7901 11.7988 16 11.589 16 11.3301V1.72388C16 1.465 15.7901 1.25513 15.5312 1.25513ZM8 10.5103C5.80359 10.5103 4.01666 8.72344 4.01666 6.52703C4.01666 4.3306 5.80359 2.54366 8 2.54366C10.1964 2.54366 11.9833 4.3306 11.9833 6.527C11.9833 8.72341 10.1964 10.5103 8 10.5103ZM13.9917 3.73222H12.9875C12.7286 3.73222 12.5188 3.52235 12.5188 3.26347C12.5188 3.0046 12.7286 2.79472 12.9875 2.79472H13.9917C14.2505 2.79472 14.4604 3.0046 14.4604 3.26347C14.4604 3.52235 14.2506 3.73222 13.9917 3.73222Z" fill="white"/>
<path d="M9.48354 7.77154L10.1474 8.68492C10.702 8.13298 11.0458 7.36942 11.0458 6.52701C11.0458 6.36214 11.0325 6.20032 11.0072 6.04248L9.9311 6.39214L9.48354 7.77154Z" fill="white"/>
<path d="M13.5229 13.8072H11.9833V12.7363H4.01666V13.8072H2.4771C2.21822 13.8072 2.00835 14.017 2.00835 14.2759C2.00835 14.5348 2.21822 14.7447 2.4771 14.7447H13.5229C13.7818 14.7447 13.9917 14.5348 13.9917 14.2759C13.9917 14.017 13.7818 13.8072 13.5229 13.8072Z" fill="white"/>
</g>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel">
<div class="panel__body">
<div class="tab-content">
<div
class="tab-pane fade show active"
id="football"
role="tabpanel"
aria-labelledby="football-tab"
>
<div class="grid-matches_wrapper">
<div class="grid-matches" id="grid-matches" aria-live="polite">
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-ednm9whw6007ryo"
data-fid="ednm9whw6007ryo"
data-sport-id="0"
data-hot=""
data-league="Indian Bangalore Super Division"
data-runtime="1758259800"
data-day="20250919"
data-week="5"
data-status="4"
data-sport-id="0"
data-home-team-id="x7lm7phpzl8m2wd"
data-away-team-id="k82rekhyglerepz"
odds=""
>
<a
href="/truc-tiep/fc-united-stars-vs-bangalore-united-fc-luc-1230-ngay-19-09-2025/"
title="FC United Stars vs Bangalore United FC lúc 12:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/fc-united-stars-vs-bangalore-united-fc-luc-1230-ngay-19-09-2025/" title="FC United Stars vs Bangalore United FC lúc 12:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gx7lm7ph9p8m2wd/image/small" alt="Indian Bangalore Super Division" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND BLR SD">Indian Bangalore Super Division</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="ednm9whw6007ryo">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="12:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>12:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/x7lm7phpzl8m2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>FC United Stars</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="ednm9whw6007ryo">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/k82rekhyglerepz/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Bangalore United FC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-ednm9whw6007ryo"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-l5ergph4288xr8k"
data-fid="l5ergph4288xr8k"
data-sport-id="0"
data-hot=""
data-league="India Mumbai Super Division"
data-runtime="1758259800"
data-day="20250919"
data-week="5"
data-status="2"
data-sport-id="0"
data-home-team-id="1l4rjnhkd1ym7vx"
data-away-team-id="ednm9whgp99ryox"
odds=""
>
<a
href="/truc-tiep/millat-fc-ii-vs-young-guns-fc-luc-1230-ngay-19-09-2025/"
title="Millat FC II vs Young Guns FC lúc 12:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/millat-fc-ii-vs-young-guns-fc-luc-1230-ngay-19-09-2025/" title="Millat FC II vs Young Guns FC lúc 12:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/yl5ergph5d7r8k0/image/small" alt="India Mumbai Super Division" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IM SD">India Mumbai Super Division</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="l5ergph4288xr8k">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="12:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>12:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/1l4rjnhkd1ym7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Millat FC II</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="l5ergph4288xr8k">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/ednm9whgp99ryox/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Young Guns FC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-l5ergph4288xr8k"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-pxwrxlhy28poryk"
data-fid="pxwrxlhy28poryk"
data-sport-id="0"
data-hot=""
data-league="Trung Quốc U-21 League"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="k82rekh1nx2repz"
data-away-team-id="l5ergphnlzyr8k0"
odds=""
>
<a
href="/truc-tiep/dalian-yingbo-u21-vs-meizhou-hakka-u21-luc-1400-ngay-19-09-2025/"
title="Dalian Yingbo U21 vs Meizhou Hakka U21 lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/dalian-yingbo-u21-vs-meizhou-hakka-u21-luc-1400-ngay-19-09-2025/" title="Dalian Yingbo U21 vs Meizhou Hakka U21 lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kn54qllhdekqvy9/image/small" alt="Trung Quốc U-21 League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHA CSL U21">Trung Quốc U-21 League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="pxwrxlhy28poryk">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/k82rekh1nx2repz/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Dalian Yingbo U21</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="pxwrxlhy28poryk">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/l5ergphnlzyr8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Meizhou Hakka U21</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-pxwrxlhy28poryk"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-6ypq3nhv4y6dmd7"
data-fid="6ypq3nhv4y6dmd7"
data-sport-id="0"
data-hot=""
data-league="Trung Quốc U-21 League"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="4wyrn4h90l1q86p"
data-away-team-id="dj2ryoh25xzq1zp"
odds=""
>
<a
href="/truc-tiep/yunnan-yukun-u21-vs-kunming-star-u21-luc-1400-ngay-19-09-2025/"
title="Yunnan Yukun U21 vs Kunming Star U21 lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/yunnan-yukun-u21-vs-kunming-star-u21-luc-1400-ngay-19-09-2025/" title="Yunnan Yukun U21 vs Kunming Star U21 lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kn54qllhdekqvy9/image/small" alt="Trung Quốc U-21 League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHA CSL U21">Trung Quốc U-21 League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="6ypq3nhv4y6dmd7">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Yunnan Yukun U21</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="6ypq3nhv4y6dmd7">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Kunming Star U21</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small" alt="Flag">
<div class="grid-match__goal">11 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small" alt="Flag">
<div class="grid-match__goal">2 - 2</div>
<img src="https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small" alt="Flag">
<div class="grid-match__goal">2 - 2</div>
<img src="https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small" alt="Flag">
<div class="grid-match__goal">11 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small" alt="Flag">
<div class="grid-match__goal">2 - 2</div>
<img src="https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4h90l1q86p/image/small" alt="Flag">
<div class="grid-match__goal">2 - 2</div>
<img src="https://imgts.api-football.xyz/football/team/dj2ryoh25xzq1zp/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-6ypq3nhv4y6dmd7"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-3glrw7hnl2k2qdy"
data-fid="3glrw7hnl2k2qdy"
data-sport-id="0"
data-hot=""
data-league="Trung Quốc U-21 League"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="4jwq2gh715ym0ve"
data-away-team-id="2y8m4zhzk2pql07"
odds=""
>
<a
href="/truc-tiep/changchun-yatai-u21-vs-guangxi-pingguo-u21-luc-1400-ngay-19-09-2025/"
title="Changchun Yatai U21 vs Guangxi Pingguo U21 lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/changchun-yatai-u21-vs-guangxi-pingguo-u21-luc-1400-ngay-19-09-2025/" title="Changchun Yatai U21 vs Guangxi Pingguo U21 lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kn54qllhdekqvy9/image/small" alt="Trung Quốc U-21 League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHA CSL U21">Trung Quốc U-21 League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="3glrw7hnl2k2qdy">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/4jwq2gh715ym0ve/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Changchun Yatai U21</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="3glrw7hnl2k2qdy">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/2y8m4zhzk2pql07/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Guangxi Pingguo U21</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-3glrw7hnl2k2qdy"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m1ghlk7lgmoe"
data-fid="dn1m1ghlk7lgmoe"
data-sport-id="0"
data-hot=""
data-league="India Mumbai Super Division"
data-runtime="1758267000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="pxwrxlh9l75ryk0"
data-away-team-id="vjxm8ghx82jr6od"
odds=""
>
<a
href="/truc-tiep/skorost-vs-brothers-wa-luc-1430-ngay-19-09-2025/"
title="Skorost vs Brothers WA lúc 14:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/skorost-vs-brothers-wa-luc-1430-ngay-19-09-2025/" title="Skorost vs Brothers WA lúc 14:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/yl5ergph5d7r8k0/image/small" alt="India Mumbai Super Division" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IM SD">India Mumbai Super Division</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m1ghlk7lgmoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/pxwrxlh9l75ryk0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Skorost</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m1ghlk7lgmoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/vjxm8ghx82jr6od/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Brothers WA</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m1ghlk7lgmoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-zp5rzghg023jq82"
data-fid="zp5rzghg023jq82"
data-sport-id="0"
data-hot=""
data-league="CFA Women\'s League Two"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="13"
data-sport-id="0"
data-home-team-id="8yomo4hz4ndq0j6"
data-away-team-id="zp5rzgh1w81q82w"
odds=""
>
<a
href="/truc-tiep/nu-xian-reserve-force-vs-nu-liaoning-shenyang-luc-1500-ngay-19-09-2025/"
title="Nữ Xian Reserve Force vs Nữ Liaoning Shenyang lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-xian-reserve-force-vs-nu-liaoning-shenyang-luc-1500-ngay-19-09-2025/" title="Nữ Xian Reserve Force vs Nữ Liaoning Shenyang lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9k82rekh8z7repz/image/small" alt="CFA Women\'s League Two" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CWL">CFA Women\'s League Two</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="zp5rzghg023jq82">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/8yomo4hz4ndq0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Xian Reserve Force </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="zp5rzghg023jq82">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/zp5rzgh1w81q82w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Liaoning Shenyang</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-zp5rzghg023jq82"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-n54qllhn9knvqvy"
data-fid="n54qllhn9knvqvy"
data-sport-id="0"
data-hot=""
data-league="CFA Women\'s League Two"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="9"
data-sport-id="0"
data-home-team-id="x7lm7phpop1m2wd"
data-away-team-id="l5ergphp3plr8k0"
odds=""
>
<a
href="/truc-tiep/nu-beijing-star-vs-nu-shanghai-huilong-luc-1500-ngay-19-09-2025/"
title="Nữ Beijing Star vs Nữ Shanghai Huilong lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-beijing-star-vs-nu-shanghai-huilong-luc-1500-ngay-19-09-2025/" title="Nữ Beijing Star vs Nữ Shanghai Huilong lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9k82rekh8z7repz/image/small" alt="CFA Women\'s League Two" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CWL">CFA Women\'s League Two</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="n54qllhn9knvqvy">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/x7lm7phpop1m2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Beijing Star </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="n54qllhn9knvqvy">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/l5ergphp3plr8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Shanghai Huilong</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-n54qllhn9knvqvy"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-23xmvkh6wgyvqg8"
data-fid="23xmvkh6wgyvqg8"
data-sport-id="0"
data-hot=""
data-league="CFA Women\'s League Two"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="13"
data-sport-id="0"
data-home-team-id="6ypq3nh14dwmd7o"
data-away-team-id="pxwrxlhv1voryk0"
odds=""
>
<a
href="/truc-tiep/nu-guiding-star-vs-nu-beijing-guoan-luc-1500-ngay-19-09-2025/"
title="Nữ Guiding Star vs Nữ Beijing Guoan lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-guiding-star-vs-nu-beijing-guoan-luc-1500-ngay-19-09-2025/" title="Nữ Guiding Star vs Nữ Beijing Guoan lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9k82rekh8z7repz/image/small" alt="CFA Women\'s League Two" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CWL">CFA Women\'s League Two</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="23xmvkh6wgyvqg8">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/6ypq3nh14dwmd7o/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Guiding Star</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="23xmvkh6wgyvqg8">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/pxwrxlhv1voryk0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Beijing Guoan</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-23xmvkh6wgyvqg8"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-flex d-lg-none ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-1l4rjnh923n1m7v"
data-fid="1l4rjnh923n1m7v"
data-sport-id="0"
data-hot=""
data-league="CFA Women\'s League Two"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="13"
data-sport-id="0"
data-home-team-id="y0or5jh1zxeqwzv"
data-away-team-id="3glrw7ho3kzqdyj"
odds=""
>
<a
href="/truc-tiep/nu-hunan-vs-nu-hainan-wuxian-haiti-luc-1500-ngay-19-09-2025/"
title="Nữ Hunan vs Nữ Hainan Wuxian Haiti lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-hunan-vs-nu-hainan-wuxian-haiti-luc-1500-ngay-19-09-2025/" title="Nữ Hunan vs Nữ Hainan Wuxian Haiti lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9k82rekh8z7repz/image/small" alt="CFA Women\'s League Two" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CWL">CFA Women\'s League Two</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="1l4rjnh923n1m7v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/y0or5jh1zxeqwzv/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Hunan</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="1l4rjnh923n1m7v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/3glrw7ho3kzqdyj/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Hainan Wuxian Haiti </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-1l4rjnh923n1m7v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-k82rekhgn6g2rep"
data-fid="k82rekhgn6g2rep"
data-sport-id="0"
data-hot=""
data-league="Indian Bangalore Super Division"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="l7oqdeh47lvr510"
data-away-team-id="pxwrxlh1440ryk0"
odds=""
>
<a
href="/truc-tiep/kickstart-karnataka-vs-meg-luc-1500-ngay-19-09-2025/"
title="Kickstart Karnataka vs MEG lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/kickstart-karnataka-vs-meg-luc-1500-ngay-19-09-2025/" title="Kickstart Karnataka vs MEG lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gx7lm7ph9p8m2wd/image/small" alt="Indian Bangalore Super Division" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND BLR SD">Indian Bangalore Super Division</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="k82rekhgn6g2rep">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Kickstart Karnataka</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="k82rekhgn6g2rep">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>MEG</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small" alt="Flag">
<div class="grid-match__goal">4 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small" alt="Flag">
<div class="grid-match__goal">1 - 1</div>
<img src="https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small" alt="Flag">
<div class="grid-match__goal">0 - 4</div>
<img src="https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small" alt="Flag">
<div class="grid-match__goal">4 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small" alt="Flag">
<div class="grid-match__goal">1 - 1</div>
<img src="https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/pxwrxlh1440ryk0/image/small" alt="Flag">
<div class="grid-match__goal">0 - 4</div>
<img src="https://imgts.api-football.xyz/football/team/l7oqdeh47lvr510/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/kickstart-karnataka-vs-meg-luc-1500-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patternk82rekhgn6g2rep_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patternk82rekhgn6g2rep_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_k82rekhgn6g2rep_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_k82rekhgn6g2rep_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2024/09/ZARA-1.jpg"></image>
</defs>
</svg>
<span>ZARA</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-k82rekhgn6g2rep"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-y39mp1h6pwenmoj"
data-fid="y39mp1h6pwenmoj"
data-sport-id="0"
data-hot=""
data-league="Indian Shillong Premier League"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="965mkyhzy46r1ge"
data-away-team-id="jw2r09h12xjrz84"
odds=""
>
<a
href="/truc-tiep/umphrup-fc-vs-umpling-sc-luc-1500-ngay-19-09-2025/"
title="Umphrup FC vs Umpling SC lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/umphrup-fc-vs-umpling-sc-luc-1500-ngay-19-09-2025/" title="Umphrup FC vs Umpling SC lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/yl5ergphvvpr8k0/image/small" alt="Indian Shillong Premier League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND SPL">Indian Shillong Premier League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="y39mp1h6pwenmoj">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/965mkyhzy46r1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Umphrup FC</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="y39mp1h6pwenmoj">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/jw2r09h12xjrz84/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Umpling SC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-y39mp1h6pwenmoj"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-none d-lg-flex ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-none d-lg-flex ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-jw2r09hkjvygrz8"
data-fid="jw2r09hkjvygrz8"
data-sport-id="0"
data-hot=""
data-league="VĐQG Indonesia "
data-runtime="1758270600"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="4wyrn4hex4dq86p"
data-away-team-id="8yomo4h741nq0j6"
odds=""
>
<a
href="/truc-tiep/bhayangkara-presisi-vs-persik-kediri-luc-1530-ngay-19-09-2025/"
title="Bhayangkara Presisi vs Persik Kediri lúc 15:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/bhayangkara-presisi-vs-persik-kediri-luc-1530-ngay-19-09-2025/" title="Bhayangkara Presisi vs Persik Kediri lúc 15:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/56ypq3nhz53md7o/image/small" alt="VĐQG Indonesia " class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IDN ISL">VĐQG Indonesia </span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="jw2r09hkjvygrz8">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Bhayangkara Presisi</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="jw2r09hkjvygrz8">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Persik Kediri</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small" alt="Flag">
<div class="grid-match__goal">7 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small" alt="Flag">
<div class="grid-match__goal">2 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small" alt="Flag">
<div class="grid-match__goal">2 - 3</div>
<img src="https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small" alt="Flag">
<div class="grid-match__goal">7 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small" alt="Flag">
<div class="grid-match__goal">2 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hex4dq86p/image/small" alt="Flag">
<div class="grid-match__goal">2 - 3</div>
<img src="https://imgts.api-football.xyz/football/team/8yomo4h741nq0j6/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/bhayangkara-presisi-vs-persik-kediri-luc-1530-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patternjw2r09hkjvygrz8_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patternjw2r09hkjvygrz8_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_jw2r09hkjvygrz8_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_jw2r09hkjvygrz8_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2024/09/zizu-1-1.jpg"></image>
</defs>
</svg>
<span>ZIZU</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-jw2r09hkjvygrz8"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-23xmvkh6w96gqg8"
data-fid="23xmvkh6w96gqg8"
data-sport-id="0"
data-hot=""
data-league="Cambodia Cup"
data-runtime="1758270600"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="y39mp1hyvokmojx"
data-away-team-id="8yomo4hz3dvq0j6"
odds=""
>
<a
href="/truc-tiep/kampong-thom-vs-lion-king-fc-luc-1530-ngay-19-09-2025/"
title="Kampong Thom vs Lion King FC lúc 15:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/kampong-thom-vs-lion-king-fc-luc-1530-ngay-19-09-2025/" title="Kampong Thom vs Lion King FC lúc 15:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9k82rekhyd5repz/image/small" alt="Cambodia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CB-CUP">Cambodia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="23xmvkh6w96gqg8">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/y39mp1hyvokmojx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Kampong Thom</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="23xmvkh6w96gqg8">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/8yomo4hz3dvq0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Lion King FC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-23xmvkh6w96gqg8"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-1l4rjnh9236jm7v"
data-fid="1l4rjnh9236jm7v"
data-sport-id="0"
data-hot=""
data-league="Malaysia A1 Semi-Pro League"
data-runtime="1758271500"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="y39mp1h95p9mojx"
data-away-team-id="vjxm8ghx595r6od"
odds=""
>
<a
href="/truc-tiep/machan-fc-vs-imigresen-fc-ii-luc-1545-ngay-19-09-2025/"
title="Machan FC vs Imigresen FC II lúc 15:45 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/machan-fc-vs-imigresen-fc-ii-luc-1545-ngay-19-09-2025/" title="Machan FC vs Imigresen FC II lúc 15:45 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/v2y8m4zhzo9ql07/image/small" alt="Malaysia A1 Semi-Pro League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="MAS L3">Malaysia A1 Semi-Pro League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="1l4rjnh9236jm7v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:45 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:45 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/y39mp1h95p9mojx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Machan FC</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="1l4rjnh9236jm7v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/vjxm8ghx595r6od/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Imigresen FC II</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-1l4rjnh9236jm7v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-y39mp1h69o06moj"
data-fid="y39mp1h69o06moj"
data-sport-id="0"
data-hot=""
data-league="VĐQG Myanmar"
data-runtime="1758272400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="4wyrn4hvkd4q86p"
data-away-team-id="1l4rjnh6onym7vx"
odds=""
>
<a
href="/truc-tiep/dagon-port-vs-ayeyawady-luc-1600-ngay-19-09-2025/"
title="Dagon Port vs Ayeyawady lúc 16:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/dagon-port-vs-ayeyawady-luc-1600-ngay-19-09-2025/" title="Dagon Port vs Ayeyawady lúc 16:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm8ghjj0r6od/image/small" alt="VĐQG Myanmar" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="MYA D1">VĐQG Myanmar</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="y39mp1h69o06moj">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/4wyrn4hvkd4q86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Dagon Port</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="y39mp1h69o06moj">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/1l4rjnh6onym7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Ayeyawady</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hvkd4q86p/image/small" alt="Flag">
<div class="grid-match__goal">2 - 4</div>
<img src="https://imgts.api-football.xyz/football/team/1l4rjnh6onym7vx/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/1l4rjnh6onym7vx/image/small" alt="Flag">
<div class="grid-match__goal">1 - 2</div>
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hvkd4q86p/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hvkd4q86p/image/small" alt="Flag">
<div class="grid-match__goal">2 - 4</div>
<img src="https://imgts.api-football.xyz/football/team/1l4rjnh6onym7vx/image/small" alt="Flag">
</span>
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/1l4rjnh6onym7vx/image/small" alt="Flag">
<div class="grid-match__goal">1 - 2</div>
<img src="https://imgts.api-football.xyz/football/team/4wyrn4hvkd4q86p/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/dagon-port-vs-ayeyawady-luc-1600-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patterny39mp1h69o06moj_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patterny39mp1h69o06moj_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_y39mp1h69o06moj_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_y39mp1h69o06moj_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2024/09/XMEN-1.jpg"></image>
</defs>
</svg>
<span>XMEN</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-y39mp1h69o06moj"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-965mkyhkzw2yr1g"
data-fid="965mkyhkzw2yr1g"
data-sport-id="0"
data-hot=""
data-league="VĐQG Myanmar"
data-runtime="1758272400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="dj2ryohknvnq1zp"
data-away-team-id="dj2ryoh2jkxq1zp"
odds=""
>
<a
href="/truc-tiep/hantharwady-utd-vs-yarmanya-united-fc-luc-1600-ngay-19-09-2025/"
title="Hantharwady Utd vs Yarmanya United FC lúc 16:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/hantharwady-utd-vs-yarmanya-united-fc-luc-1600-ngay-19-09-2025/" title="Hantharwady Utd vs Yarmanya United FC lúc 16:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm8ghjj0r6od/image/small" alt="VĐQG Myanmar" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="MYA D1">VĐQG Myanmar</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="965mkyhkzw2yr1g">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/dj2ryohknvnq1zp/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Hantharwady Utd</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="965mkyhkzw2yr1g">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/dj2ryoh2jkxq1zp/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Yarmanya United FC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/hantharwady-utd-vs-yarmanya-united-fc-luc-1600-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#pattern965mkyhkzw2yr1g_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="pattern965mkyhkzw2yr1g_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_965mkyhkzw2yr1g_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_965mkyhkzw2yr1g_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2024/09/TUTA-e1727005326464-1.jpg"></image>
</defs>
</svg>
<span>TUTA</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-965mkyhkzw2yr1g"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-1l4rjnh92ljlm7v"
data-fid="1l4rjnh92ljlm7v"
data-sport-id="0"
data-hot=""
data-league="MML W"
data-runtime="1758272400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="23xmvkhxwneqg8n"
data-away-team-id="1l4rjnhz9vlm7vx"
odds=""
>
<a
href="/truc-tiep/nu-yangon-royals-fc-vs-nu-myawady-fc-luc-1600-ngay-19-09-2025/"
title="Nữ Yangon Royals FC vs Nữ Myawady FC lúc 16:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-yangon-royals-fc-vs-nu-myawady-fc-luc-1600-ngay-19-09-2025/" title="Nữ Yangon Royals FC vs Nữ Myawady FC lúc 16:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/d23xmvkhxvwqg8n/image/small" alt="MML W" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="MML W">MML W</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="1l4rjnh92ljlm7v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/23xmvkhxwneqg8n/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Yangon Royals FC</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="1l4rjnh92ljlm7v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/1l4rjnhz9vlm7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Myawady FC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-1l4rjnh92ljlm7v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-l5ergph42pvkr8k"
data-fid="l5ergph42pvkr8k"
data-sport-id="0"
data-hot=""
data-league="SACU17"
data-runtime="1758274200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="zp5rzgh1xj4q82w"
data-away-team-id="4wyrn4hvvw3q86p"
odds=""
>
<a
href="/truc-tiep/pakistan-u17-vs-maldives-u17-luc-1630-ngay-19-09-2025/"
title="Pakistan U17 vs Maldives U17 lúc 16:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/pakistan-u17-vs-maldives-u17-luc-1630-ngay-19-09-2025/" title="Pakistan U17 vs Maldives U17 lúc 16:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/e4wyrn4hxooq86p/image/small" alt="SACU17" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="SACU17">SACU17</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="l5ergph42pvkr8k">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/zp5rzgh1xj4q82w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Pakistan U17</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="l5ergph42pvkr8k">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/4wyrn4hvvw3q86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Maldives U17</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex ">
<div class="grid-match__goal-scoring flag-live-item d-flex">
<span class="flag-title">HT</span>
<span class="grid-match__half-court half-court halfCourt">0 - 0</span>
</div>
<span class="grid-match__corner-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/corner-icon.svg" alt="Flag">
<div class="grid-match__corner-goal corner-goal cornerGoal">0 - 0</div>
</span>
<span class="grid-match__yellow-ball flag-live-item d-flex">
<img src="https://static.mitomzi.cc/images/home/home_yellow-v2.svg" alt="Flag">
<div class="yellow-cards">0 - 0</div>
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-l5ergph42pvkr8k"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-318q66hxngk6qo9"
data-fid="318q66hxngk6qo9"
data-sport-id="0"
data-hot=""
data-league="Indian Mizoram Premier League"
data-runtime="1758274200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="0"
data-home-team-id="y39mp1hj491mojx"
data-away-team-id="3glrw7hw5zwqdyj"
odds=""
>
<a
href="/truc-tiep/kanan-veng-fc-vs-aizawl-fc-luc-1630-ngay-19-09-2025/"
title="Kanan Veng FC vs Aizawl FC lúc 16:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/kanan-veng-fc-vs-aizawl-fc-luc-1630-ngay-19-09-2025/" title="Kanan Veng FC vs Aizawl FC lúc 16:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gpxwrxlh1dyryk0/image/small" alt="Indian Mizoram Premier League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND MizPL">Indian Mizoram Premier League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="318q66hxngk6qo9">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/football/team/y39mp1hj491mojx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Kanan Veng FC</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="318q66hxngk6qo9">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/football/team/3glrw7hw5zwqdyj/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Aizawl FC</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-football">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/3glrw7hw5zwqdyj/image/small" alt="Flag">
<div class="grid-match__goal">2 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/y39mp1hj491mojx/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-left gap-3">
<div class="grid-match--flag d-flex grid-match--flag-h2h ">
<span class="grid-match__h2h-vs d-flex">
<img src="https://imgts.api-football.xyz/football/team/3glrw7hw5zwqdyj/image/small" alt="Flag">
<div class="grid-match__goal">2 - 0</div>
<img src="https://imgts.api-football.xyz/football/team/y39mp1hj491mojx/image/small" alt="Flag">
</span>
</div>
</div>
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-318q66hxngk6qo9"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix mb-2 mt-4">
<a href="#" class="btn btn-custom btn-load-fixtures" data-page="1" data-number="20">Xem thêm<i class="fa fa-refresh" aria-hidden="true"></i></a>
</div>
</div>
<div
class="tab-pane fade "
id="basketball"
role="tabpanel"
aria-labelledby="basketball-tab"
>
<div class="grid-matches_wrapper">
<div class="grid-matches" id="grid-matches" aria-live="polite">
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m17tpgnjnmoe"
data-fid="dn1m17tpgnjnmoe"
data-sport-id="1"
data-hot=""
data-league="China Women\'s National Championship Basketball"
data-runtime="1758263400"
data-day="20250919"
data-week="5"
data-status="2"
data-sport-id="1"
data-home-team-id="gpxwrx5tw08qyk0"
data-away-team-id="kn54ql7tyy5rvy9"
odds=""
>
<a
href="/truc-tiep/nu-liaoning-hengye-vs-nu-shanghai-baoshan-luc-1330-ngay-19-09-2025/"
title="Nữ Liaoning Hengye vs Nữ ShangHai BaoShan lúc 13:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-liaoning-hengye-vs-nu-shanghai-baoshan-luc-1330-ngay-19-09-2025/" title="Nữ Liaoning Hengye vs Nữ ShangHai BaoShan lúc 13:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9dn1m17t4xpmoep/image/small" alt="China Women\'s National Championship Basketball" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHI">China Women\'s National Championship Basketball</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m17tpgnjnmoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/gpxwrx5tw08qyk0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Liaoning Hengye </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m17tpgnjnmoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/kn54ql7tyy5rvy9/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ ShangHai BaoShan </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/nu-liaoning-hengye-vs-nu-shanghai-baoshan-luc-1330-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patterndn1m17tpgnjnmoe_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patterndn1m17tpgnjnmoe_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_dn1m17tpgnjnmoe_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_dn1m17tpgnjnmoe_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2025/03/abstract-soccer-jumping-touch-ball_62860-7__1_-removebg-preview-1-1.png"></image>
</defs>
</svg>
<span>TOMMY</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m17tpgnjnmoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-23xmv1tpl4nxmg8"
data-fid="23xmv1tpl4nxmg8"
data-sport-id="1"
data-hot=""
data-league="Club Friendship"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="l5ergytv0o3r8k0"
data-away-team-id="8yomovtk6y1q0j6"
odds=""
>
<a
href="/truc-tiep/bangkok-university-vs-vanung-university-luc-1400-ngay-19-09-2025/"
title="Bangkok University vs Vanung University lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/bangkok-university-vs-vanung-university-luc-1400-ngay-19-09-2025/" title="Bangkok University vs Vanung University lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gpxwrx5txeqyk0j/image/small" alt="Club Friendship" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CLU">Club Friendship</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="23xmv1tpl4nxmg8">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/l5ergytv0o3r8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Bangkok University</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="23xmv1tpl4nxmg8">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/8yomovtk6y1q0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Vanung University</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-23xmv1tpl4nxmg8"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-318q6nt63j98mo9"
data-fid="318q6nt63j98mo9"
data-sport-id="1"
data-hot=""
data-league="Vietnam Championship Women U23"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="l5ergyt3pj7r8k0"
data-away-team-id="x7lm73t00j1r2wd"
odds=""
>
<a
href="/truc-tiep/hanoi-u23-women-vs-ho-chi-minh-city-brvtii-u23-luc-1400-ngay-19-09-2025/"
title="Hanoi U23 Women vs Ho Chi Minh City BRVTII U23 lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/hanoi-u23-women-vs-ho-chi-minh-city-brvtii-u23-luc-1400-ngay-19-09-2025/" title="Hanoi U23 Women vs Ho Chi Minh City BRVTII U23 lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/p3glrwytl05qdyj/image/small" alt="Vietnam Championship Women U23" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="VIE">Vietnam Championship Women U23</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="318q6nt63j98mo9">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/l5ergyt3pj7r8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Hanoi U23 Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="318q6nt63j98mo9">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/x7lm73t00j1r2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Ho Chi Minh City BRVTII U23</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-318q6nt63j98mo9"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m17tpg85xmoe"
data-fid="dn1m17tpg85xmoe"
data-sport-id="1"
data-hot=""
data-league="Korean University Basketball League"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="dj2ry7tyx07r1zp"
data-away-team-id="8yomovtk4o6q0j6"
odds=""
>
<a
href="/truc-tiep/dankook-r-vs-hanyang-university-luc-1400-ngay-19-09-2025/"
title="Dankook (R) vs Hanyang University lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/dankook-r-vs-hanyang-university-luc-1400-ngay-19-09-2025/" title="Dankook (R) vs Hanyang University lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/p3glrwyto2xqdyj/image/small" alt="Korean University Basketball League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="KOR">Korean University Basketball League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m17tpg85xmoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/dj2ry7tyx07r1zp/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Dankook (R)</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m17tpg85xmoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/8yomovtk4o6q0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Hanyang University</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m17tpg85xmoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-y39mp4t0dxo4moj"
data-fid="y39mp4t0dxo4moj"
data-sport-id="1"
data-hot=""
data-league="National Basketball League"
data-runtime="1758267000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="j1l4rjzt04xm7vx"
data-away-team-id="kn54ql7t672rvy9"
odds=""
>
<a
href="/truc-tiep/new-zealand-breakers-vs-brisbane-bullets-luc-1430-ngay-19-09-2025/"
title="New Zealand Breakers vs Brisbane Bullets lúc 14:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/new-zealand-breakers-vs-brisbane-bullets-luc-1430-ngay-19-09-2025/" title="New Zealand Breakers vs Brisbane Bullets lúc 14:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/xkn54ql7t8rvy9d/image/small" alt="National Basketball League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="NBL">National Basketball League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="y39mp4t0dxo4moj">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/j1l4rjzt04xm7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>New Zealand Breakers</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="y39mp4t0dxo4moj">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/kn54ql7t672rvy9/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Brisbane Bullets</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/new-zealand-breakers-vs-brisbane-bullets-luc-1430-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patterny39mp4t0dxo4moj_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patterny39mp4t0dxo4moj_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_y39mp4t0dxo4moj_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_y39mp4t0dxo4moj_04_4"
width="1960" height="1960"
xlink:href="https://wp.api-football.xyz/wp-content/uploads/2024/09/ALAN.png"></image>
</defs>
</svg>
<span>ALAN</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-y39mp4t0dxo4moj"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-4jwq25tz578pq0v"
data-fid="4jwq25tz578pq0v"
data-sport-id="1"
data-hot=""
data-league="FIBA U16 Women\'s Asian Championship"
data-runtime="1758267000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="4wyrn1tenoyq86p"
data-away-team-id="d23xmv1t5j1mg8n"
odds=""
>
<a
href="/truc-tiep/nu-indonesia-u16-vs-nu-hong-kong-u16-luc-1430-ngay-19-09-2025/"
title="Nữ Indonesia U16 vs Nữ Hồng Kông U16 lúc 14:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-indonesia-u16-vs-nu-hong-kong-u16-luc-1430-ngay-19-09-2025/" title="Nữ Indonesia U16 vs Nữ Hồng Kông U16 lúc 14:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/p4jwq25t9jq0veo/image/small" alt="FIBA U16 Women\'s Asian Championship" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="WAC">FIBA U16 Women\'s Asian Championship</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="4jwq25tz578pq0v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/4wyrn1tenoyq86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Indonesia U16 </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="4jwq25tz578pq0v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/d23xmv1t5j1mg8n/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Hồng Kông U16 </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-4jwq25tz578pq0v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-318q6nt63jp2mo9"
data-fid="318q6nt63jp2mo9"
data-sport-id="1"
data-hot=""
data-league="Philippines MPBL"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="23xmv1t3z4kmg8n"
data-away-team-id="jw2r02tnn02qz84"
odds=""
>
<a
href="/truc-tiep/paranaque-patriots-vs-nueva-ecija-rice-luc-1500-ngay-19-09-2025/"
title="Paranaque Patriots vs Nueva Ecija Rice lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/paranaque-patriots-vs-nueva-ecija-rice-luc-1500-ngay-19-09-2025/" title="Paranaque Patriots vs Nueva Ecija Rice lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/j1l4rjztzlem7vx/image/small" alt="Philippines MPBL" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="PHI">Philippines MPBL</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="318q6nt63jp2mo9">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/23xmv1t3z4kmg8n/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Paranaque Patriots</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="318q6nt63jp2mo9">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/jw2r02tnn02qz84/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nueva Ecija Rice</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-318q6nt63jp2mo9"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-318q6nt63v97mo9"
data-fid="318q6nt63v97mo9"
data-sport-id="1"
data-hot=""
data-league="Russia Basketball Cup"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="j1l4rjztw5pm7vx"
data-away-team-id="4zp5rzktn5nr82w"
odds=""
>
<a
href="/truc-tiep/parma-perm-vs-kazan-unics-u21-luc-1500-ngay-19-09-2025/"
title="Parma Perm vs Kazan Unics U21 lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/parma-perm-vs-kazan-unics-u21-luc-1500-ngay-19-09-2025/" title="Parma Perm vs Kazan Unics U21 lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm8xtl7q6odg/image/small" alt="Russia Basketball Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Basketball Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="318q6nt63v97mo9">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/j1l4rjztw5pm7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Parma Perm</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="318q6nt63v97mo9">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/4zp5rzktn5nr82w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Kazan Unics U21</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-318q6nt63v97mo9"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-x7lm73t32gz2r2w"
data-fid="x7lm73t32gz2r2w"
data-sport-id="1"
data-hot=""
data-league="CHAMPIONSHIPS"
data-runtime="1758272400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="56ypq3ktjjomd7o"
data-away-team-id="gx7lm73ty0yr2wd"
odds=""
>
<a
href="/truc-tiep/illawarra-hawks-vs-flamengo-luc-1600-ngay-19-09-2025/"
title="Illawarra Hawks vs Flamengo lúc 16:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/illawarra-hawks-vs-flamengo-luc-1600-ngay-19-09-2025/" title="Illawarra Hawks vs Flamengo lúc 16:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gpxwrx5tllqyk0j/image/small" alt="CHAMPIONSHIPS" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHA">CHAMPIONSHIPS</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="x7lm73t32gz2r2w">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/56ypq3ktjjomd7o/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Illawarra Hawks</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="x7lm73t32gz2r2w">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/gx7lm73ty0yr2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Flamengo</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-x7lm73t32gz2r2w"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-flex d-lg-none ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-l7oqd4t89n00q51"
data-fid="l7oqd4t89n00q51"
data-sport-id="1"
data-hot=""
data-league="China Women\'s National Championship Basketball"
data-runtime="1758272400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="kn54ql7ty35rvy9"
data-away-team-id="d23xmv1tz1xmg8n"
odds=""
>
<a
href="/truc-tiep/nu-dongguan-vs-nu-chouzhou-bank-luc-1600-ngay-19-09-2025/"
title="Nữ DongGuan vs Nữ Chouzhou Bank lúc 16:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-dongguan-vs-nu-chouzhou-bank-luc-1600-ngay-19-09-2025/" title="Nữ DongGuan vs Nữ Chouzhou Bank lúc 16:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9dn1m17t4xpmoep/image/small" alt="China Women\'s National Championship Basketball" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHI">China Women\'s National Championship Basketball</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="l7oqd4t89n00q51">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/kn54ql7ty35rvy9/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ DongGuan</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="l7oqd4t89n00q51">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/d23xmv1tz1xmg8n/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Chouzhou Bank</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/nu-dongguan-vs-nu-chouzhou-bank-luc-1600-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patternl7oqd4t89n00q51_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patternl7oqd4t89n00q51_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_l7oqd4t89n00q51_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_l7oqd4t89n00q51_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2024/11/NIKEN.webp"></image>
</defs>
</svg>
<span>NIKEN</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-l7oqd4t89n00q51"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m17tpg8z0moe"
data-fid="dn1m17tpg8z0moe"
data-sport-id="1"
data-hot=""
data-league="Philippines MPBL"
data-runtime="1758276000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="8yomovt7okdq0j6"
data-away-team-id="dn1m17t4dekmoep"
odds=""
>
<a
href="/truc-tiep/pampanga-lanterns-vs-davao-occ-tigers-luc-1700-ngay-19-09-2025/"
title="Pampanga Lanterns vs Davao Occ. Tigers lúc 17:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/pampanga-lanterns-vs-davao-occ-tigers-luc-1700-ngay-19-09-2025/" title="Pampanga Lanterns vs Davao Occ. Tigers lúc 17:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/j1l4rjztzlem7vx/image/small" alt="Philippines MPBL" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="PHI">Philippines MPBL</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m17tpg8z0moe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="17:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>17:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/8yomovt7okdq0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Pampanga Lanterns</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m17tpg8z0moe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/dn1m17t4dekmoep/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Davao Occ. Tigers</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m17tpg8z0moe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-1l4rjztjdk82m7v"
data-fid="1l4rjztjdk82m7v"
data-sport-id="1"
data-hot=""
data-league="FIBA U16 Women\'s Asian Championship"
data-runtime="1758276000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="gy0or5gtpkdqwzv"
data-away-team-id="dj2ry7ty0e0r1zp"
odds=""
>
<a
href="/truc-tiep/nu-an-do-u16-vs-nu-iran-u16-luc-1700-ngay-19-09-2025/"
title="Nữ Ấn Độ U16 vs Nữ Iran U16 lúc 17:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-an-do-u16-vs-nu-iran-u16-luc-1700-ngay-19-09-2025/" title="Nữ Ấn Độ U16 vs Nữ Iran U16 lúc 17:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/p4jwq25t9jq0veo/image/small" alt="FIBA U16 Women\'s Asian Championship" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="WAC">FIBA U16 Women\'s Asian Championship</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="1l4rjztjdk82m7v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="17:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>17:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/gy0or5gtpkdqwzv/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Ấn Độ U16</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="1l4rjztjdk82m7v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/dj2ry7ty0e0r1zp/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Iran U16 </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-1l4rjztjdk82m7v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-none d-lg-flex ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-none d-lg-flex ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-4wyrn1to5dj2q86"
data-fid="4wyrn1to5dj2q86"
data-sport-id="1"
data-hot=""
data-league="Russia Basketball Cup"
data-runtime="1758277800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="gx7lm73tlywr2wd"
data-away-team-id="y0or5gtll77qwzv"
odds=""
>
<a
href="/truc-tiep/cheboksary-vs-sbsk-bc-samara-ii-luc-1730-ngay-19-09-2025/"
title="Cheboksary vs SBSK BC Samara II lúc 17:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/cheboksary-vs-sbsk-bc-samara-ii-luc-1730-ngay-19-09-2025/" title="Cheboksary vs SBSK BC Samara II lúc 17:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm8xtl7q6odg/image/small" alt="Russia Basketball Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Basketball Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="4wyrn1to5dj2q86">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="17:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>17:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/gx7lm73tlywr2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Cheboksary</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="4wyrn1to5dj2q86">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/y0or5gtll77qwzv/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>SBSK BC Samara II</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-4wyrn1to5dj2q86"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-y0or5gtz5431qwz"
data-fid="y0or5gtz5431qwz"
data-sport-id="1"
data-hot=""
data-league="Basketball Champions League"
data-runtime="1758280500"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="v2y8m4pty5lml07"
data-away-team-id="e4wyrn1t1n5q86p"
odds=""
>
<a
href="/truc-tiep/csm-oradea-vs-port-of-antwerp-giants-luc-1815-ngay-19-09-2025/"
title="CSM Oradea vs Port of Antwerp Giants lúc 18:15 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/csm-oradea-vs-port-of-antwerp-giants-luc-1815-ngay-19-09-2025/" title="CSM Oradea vs Port of Antwerp Giants lúc 18:15 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kjw2r02t6xqz84o/image/small" alt="Basketball Champions League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="BCL">Basketball Champions League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="y0or5gtz5431qwz">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="18:15 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>18:15 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/v2y8m4pty5lml07/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>CSM Oradea</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="y0or5gtz5431qwz">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/e4wyrn1t1n5q86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Port of Antwerp Giants</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-y0or5gtz5431qwz"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m17tpg8wxmoe"
data-fid="dn1m17tpg8wxmoe"
data-sport-id="1"
data-hot=""
data-league="China Women\'s National Championship Basketball"
data-runtime="1758281400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="dn1m17t4727moep"
data-away-team-id="9vjxm8xtzp4q6od"
odds=""
>
<a
href="/truc-tiep/nu-xinjiang-vs-nu-henan-luc-1830-ngay-19-09-2025/"
title="Nữ Xinjiang vs Nữ Henan lúc 18:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-xinjiang-vs-nu-henan-luc-1830-ngay-19-09-2025/" title="Nữ Xinjiang vs Nữ Henan lúc 18:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9dn1m17t4xpmoep/image/small" alt="China Women\'s National Championship Basketball" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHI">China Women\'s National Championship Basketball</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m17tpg8wxmoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="18:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>18:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/dn1m17t4727moep/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Xinjiang </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m17tpg8wxmoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/9vjxm8xtzp4q6od/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Henan </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m17tpg8wxmoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dj2ry7te9kgnr1z"
data-fid="dj2ry7te9kgnr1z"
data-sport-id="1"
data-hot=""
data-league="China Women\'s National Championship Basketball"
data-runtime="1758281400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="j1l4rjztw82m7vx"
data-away-team-id="gx7lm73tdvlr2wd"
odds=""
>
<a
href="/truc-tiep/nu-xinjiang-tianshan-vs-nu-henan-yaoxin-luc-1830-ngay-19-09-2025/"
title="Nữ Xinjiang Tianshan vs Nữ Henan Yaoxin lúc 18:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-xinjiang-tianshan-vs-nu-henan-yaoxin-luc-1830-ngay-19-09-2025/" title="Nữ Xinjiang Tianshan vs Nữ Henan Yaoxin lúc 18:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9dn1m17t4xpmoep/image/small" alt="China Women\'s National Championship Basketball" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHI">China Women\'s National Championship Basketball</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dj2ry7te9kgnr1z">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="18:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>18:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/j1l4rjztw82m7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Xinjiang Tianshan</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dj2ry7te9kgnr1z">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/gx7lm73tdvlr2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Henan Yaoxin </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dj2ry7te9kgnr1z"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-x7lm73t32k4jr2w"
data-fid="x7lm73t32k4jr2w"
data-sport-id="1"
data-hot=""
data-league="China National Basketball League"
data-runtime="1758281400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="n54ql7teo1prvy9"
data-away-team-id="yl5ergytz0jr8k0"
odds=""
>
<a
href="/truc-tiep/hong-kong-bulls-vs-hunan-changsha-yongsheng-luc-1830-ngay-19-09-2025/"
title="Hồng Kông Bulls vs Hunan Changsha Yongsheng lúc 18:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/hong-kong-bulls-vs-hunan-changsha-yongsheng-luc-1830-ngay-19-09-2025/" title="Hồng Kông Bulls vs Hunan Changsha Yongsheng lúc 18:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kz8yomovtdq0j6l/image/small" alt="China National Basketball League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHI">China National Basketball League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="x7lm73t32k4jr2w">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="18:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>18:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/n54ql7teo1prvy9/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Hồng Kông Bulls</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="x7lm73t32k4jr2w">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/yl5ergytz0jr8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Hunan Changsha Yongsheng</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/hong-kong-bulls-vs-hunan-changsha-yongsheng-luc-1830-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patternx7lm73t32k4jr2w_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patternx7lm73t32k4jr2w_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_x7lm73t32k4jr2w_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_x7lm73t32k4jr2w_04_4"
width="1960" height="1960"
xlink:href="https://wp.api-football.xyz/wp-content/uploads/2024/09/ad-removebg-preview-1.png"></image>
</defs>
</svg>
<span>STEP</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-x7lm73t32k4jr2w"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-n54ql7tpw5nvrvy"
data-fid="n54ql7tpw5nvrvy"
data-sport-id="1"
data-hot=""
data-league="CHAMPIONSHIPS"
data-runtime="1758283200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="d23xmv1t1njmg8n"
data-away-team-id="56ypq3ktdkomd7o"
odds=""
>
<a
href="/truc-tiep/utsunomiya-brex-vs-unicaja-malaga-luc-1900-ngay-19-09-2025/"
title="Utsunomiya Brex vs Unicaja Malaga lúc 19:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/utsunomiya-brex-vs-unicaja-malaga-luc-1900-ngay-19-09-2025/" title="Utsunomiya Brex vs Unicaja Malaga lúc 19:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gpxwrx5tllqyk0j/image/small" alt="CHAMPIONSHIPS" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHA">CHAMPIONSHIPS</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="n54ql7tpw5nvrvy">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="19:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>19:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/d23xmv1t1njmg8n/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Utsunomiya Brex</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="n54ql7tpw5nvrvy">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/56ypq3ktdkomd7o/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Unicaja Malaga</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-n54ql7tpw5nvrvy"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-8yomovtg6v1zq0j"
data-fid="8yomovtg6v1zq0j"
data-sport-id="1"
data-hot=""
data-league="Russia Basketball Cup"
data-runtime="1758286800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="8y39mp4tx8pmojx"
data-away-team-id="vjxm8xt44yzq6od"
odds=""
>
<a
href="/truc-tiep/dynamo-mgtu-vs-avtodor-saratov-ii-luc-2000-ngay-19-09-2025/"
title="Dynamo MGTU vs Avtodor Saratov II lúc 20:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/dynamo-mgtu-vs-avtodor-saratov-ii-luc-2000-ngay-19-09-2025/" title="Dynamo MGTU vs Avtodor Saratov II lúc 20:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm8xtl7q6odg/image/small" alt="Russia Basketball Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Basketball Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="8yomovtg6v1zq0j">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="20:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>20:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/8y39mp4tx8pmojx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Dynamo MGTU</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="8yomovtg6v1zq0j">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/vjxm8xt44yzq6od/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Avtodor Saratov II</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-8yomovtg6v1zq0j"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-pxwrx5txn1v1qyk"
data-fid="pxwrx5txn1v1qyk"
data-sport-id="1"
data-hot=""
data-league="Basketball Champions League"
data-runtime="1758288600"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="1"
data-home-team-id="v2y8m4pto3vml07"
data-away-team-id="4zp5rzktl06r82w"
odds=""
>
<a
href="/truc-tiep/pallacanestro-reggiana-vs-pelister-luc-2030-ngay-19-09-2025/"
title="Pallacanestro Reggiana vs Pelister lúc 20:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/pallacanestro-reggiana-vs-pelister-luc-2030-ngay-19-09-2025/" title="Pallacanestro Reggiana vs Pelister lúc 20:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kjw2r02t6xqz84o/image/small" alt="Basketball Champions League" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="BCL">Basketball Champions League</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="pxwrx5txn1v1qyk">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="20:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>20:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/basketball/team/v2y8m4pto3vml07/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Pallacanestro Reggiana</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="pxwrx5txn1v1qyk">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/basketball/team/4zp5rzktl06r82w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Pelister</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="https://15.235.211.177/xoilac"
class="odds-comp"
target="_blank"
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/21.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-pxwrx5txn1v1qyk"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix mb-2 mt-4">
<a href="#" class="btn btn-custom btn-load-fixtures" data-page="1" data-number="20">Xem thêm<i class="fa fa-refresh" aria-hidden="true"></i></a>
</div>
</div>
<div
class="tab-pane fade "
id="tennis"
role="tabpanel"
aria-labelledby="tennis-tab"
>
<div class="grid-matches_wrapper">
<div class="grid-matches" id="grid-matches" aria-live="polite">
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-y0or5of9d76omwz"
data-fid="y0or5of9d76omwz"
data-sport-id="2"
data-hot=""
data-league="WTA Seoul, Korea Republic Women Singles"
data-runtime="1758255000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="2"
data-home-team-id="318q6jfkljoro9j"
data-away-team-id="4jwq2pfvjjom0ve"
odds=""
>
<a
href="/truc-tiep/suzan-lamens-vs-katerina-siniakova-luc-1110-ngay-19-09-2025/"
title="Suzan Lamens vs Katerina Siniakova lúc 11:10 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/suzan-lamens-vs-katerina-siniakova-luc-1110-ngay-19-09-2025/" title="Suzan Lamens vs Katerina Siniakova lúc 11:10 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpyfjngmojx/image/small" alt="WTA Seoul, Korea Republic Women Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="WTA">WTA Seoul, Korea Republic Women Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="y0or5of9d76omwz">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="11:10 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>11:10 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/318q6jfkljoro9j/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Suzan Lamens</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="y0or5of9d76omwz">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/4jwq2pfvjjom0ve/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Katerina Siniakova</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Suzan Lamens</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Katerina Siniakova</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-y0or5of9d76omwz"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-l5erg1fk6yz7r8k"
data-fid="l5erg1fk6yz7r8k"
data-sport-id="2"
data-hot=""
data-league="ATP Hangzhou, China Men Doubles"
data-runtime="1758256800"
data-day="20250919"
data-week="5"
data-status="52"
data-sport-id="2"
data-home-team-id="pxwrxjfg1w28myk"
data-away-team-id="965mk4f73xevr1g"
odds=""
>
<a
href="/truc-tiep/nsriram-balaji-rithvik-choudary-bollipalli-vs-arribage-t-ho-r-luc-1140-ngay-19-09-2025/"
title="Nsriram Balaji/Rithvik Choudary Bollipalli vs Arribage T / Ho R lúc 11:40 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nsriram-balaji-rithvik-choudary-bollipalli-vs-arribage-t-ho-r-luc-1140-ngay-19-09-2025/" title="Nsriram Balaji/Rithvik Choudary Bollipalli vs Arribage T / Ho R lúc 11:40 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/318q6jfo14lro9j/image/small" alt="ATP Hangzhou, China Men Doubles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="ATP">ATP Hangzhou, China Men Doubles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="l5erg1fk6yz7r8k">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="11:40 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>11:40 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg team-logo-group-2'><img
src='https://imgts.api-football.xyz/tennis/team/zp5rz3fzpl6m82w/image/small'
class='lazy team-logo-0'
/><img
src='https://imgts.api-football.xyz/tennis/team/dn1m12fz097qoep/image/small'
class='lazy team-logo-1'
/></div>
<div class="team-name-group">
<p>Nsriram Balaji</p>
<p>Rithvik Choudary Bollipalli</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="l5erg1fk6yz7r8k">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg team-logo-group-2'><img
src='https://imgts.api-football.xyz/tennis/team/ednm9efdv0zryox/image/small'
class='lazy team-logo-0'
/><img
src='https://imgts.api-football.xyz/tennis/team/y39mpyfk879mojx/image/small'
class='lazy team-logo-1'
/></div>
<div class="team-name-group">
<p>Arribage T </p>
<p> Ho R</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nsriram Balaji/Rithvik Choudary Bollipalli</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Arribage T / Ho R</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-l5erg1fk6yz7r8k"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-318q6jf8p14yro9"
data-fid="318q6jf8p14yro9"
data-sport-id="2"
data-hot=""
data-league="ATP Chengdu, China Men Singles"
data-runtime="1758258000"
data-day="20250919"
data-week="5"
data-status="52"
data-sport-id="2"
data-home-team-id="23xmvvfklogmg8n"
data-away-team-id="jw2r0jfno18mz84"
odds=""
>
<a
href="/truc-tiep/lorenzo-sonego-vs-marcos-giron-luc-1200-ngay-19-09-2025/"
title="Lorenzo Sonego vs Marcos Giron lúc 12:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/lorenzo-sonego-vs-marcos-giron-luc-1200-ngay-19-09-2025/" title="Lorenzo Sonego vs Marcos Giron lúc 12:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm85fex0m6od/image/small" alt="ATP Chengdu, China Men Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="ATP">ATP Chengdu, China Men Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="318q6jf8p14yro9">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="12:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>12:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/23xmvvfklogmg8n/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Lorenzo Sonego</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="318q6jf8p14yro9">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/jw2r0jfno18mz84/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Marcos Giron</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Lorenzo Sonego</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Marcos Giron</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-318q6jf8p14yro9"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-1l4rjwfnpv5om7v"
data-fid="1l4rjwfnpv5om7v"
data-sport-id="2"
data-hot=""
data-league="WTA Seoul, Korea Republic Women Doubles"
data-runtime="1758262200"
data-day="20250919"
data-week="5"
data-status="51"
data-sport-id="2"
data-home-team-id="dj2ry1fkjl17r1z"
data-away-team-id="l7oqdwfn4ogor51"
odds=""
>
<a
href="/truc-tiep/maya-joint-caty-mcnally-vs-giuliana-olmos-aldila-sutjiadi-luc-1310-ngay-19-09-2025/"
title="Maya Joint/Caty Mcnally vs Giuliana Olmos/Aldila Sutjiadi lúc 13:10 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/maya-joint-caty-mcnally-vs-giuliana-olmos-aldila-sutjiadi-luc-1310-ngay-19-09-2025/" title="Maya Joint/Caty Mcnally vs Giuliana Olmos/Aldila Sutjiadi lúc 13:10 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9k82re9fy4kmepz/image/small" alt="WTA Seoul, Korea Republic Women Doubles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="WTA">WTA Seoul, Korea Republic Women Doubles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="1l4rjwfnpv5om7v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:10 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:10 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg team-logo-group-2'><img
src='https://imgts.api-football.xyz/tennis/team/965mk4f8l7kr1ge/image/small'
class='lazy team-logo-0'
/><img
src='https://imgts.api-football.xyz/tennis/team/x7lm7nf58n2q2wd/image/small'
class='lazy team-logo-1'
/></div>
<div class="team-name-group">
<p>Maya Joint</p>
<p>Caty Mcnally</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="1l4rjwfnpv5om7v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg team-logo-group-2'><img
src='https://imgts.api-football.xyz/tennis/team/8yomojfz2ngq0j6/image/small'
class='lazy team-logo-0'
/><img
src='https://imgts.api-football.xyz/tennis/team/6ypq3pfzw55rd7o/image/small'
class='lazy team-logo-1'
/></div>
<div class="team-name-group">
<p>Giuliana Olmos</p>
<p>Aldila Sutjiadi</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Maya Joint/Caty Mcnally</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Giuliana Olmos/Aldila Sutjiadi</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-1l4rjwfnpv5om7v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-965mk4f8xk4er1g"
data-fid="965mk4f8xk4er1g"
data-sport-id="2"
data-hot=""
data-league="ATP Chengdu, China Men Singles"
data-runtime="1758265200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="2"
data-home-team-id="jw2r0jfyxddmz84"
data-away-team-id="l7oqdwf429jr510"
odds=""
>
<a
href="/truc-tiep/zhou-yi-vs-christopher-oconnell-luc-1400-ngay-19-09-2025/"
title="Zhou Yi vs Christopher O\&#039;Connell lúc 14:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/zhou-yi-vs-christopher-oconnell-luc-1400-ngay-19-09-2025/" title="Zhou Yi vs Christopher O\&#039;Connell lúc 14:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/9vjxm85fex0m6od/image/small" alt="ATP Chengdu, China Men Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="ATP">ATP Chengdu, China Men Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="965mk4f8xk4er1g">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="14:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>14:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/jw2r0jfyxddmz84/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Zhou Yi</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="965mk4f8xk4er1g">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/l7oqdwf429jr510/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Christopher O\'Connell</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Zhou Yi</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Christopher O\'Connell</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/zhou-yi-vs-christopher-oconnell-luc-1400-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#pattern965mk4f8xk4er1g_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="pattern965mk4f8xk4er1g_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_965mk4f8xk4er1g_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_965mk4f8xk4er1g_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2025/08/VIC1-removebg-preview.png"></image>
</defs>
</svg>
<span>VIC</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-965mk4f8xk4er1g"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-jw2r0jf5d8lymz8"
data-fid="jw2r0jf5d8lymz8"
data-sport-id="2"
data-hot=""
data-league="ATP Challenger Saint Tropez, France Men Singles"
data-runtime="1758283200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="2"
data-home-team-id="2y8m4vfznv6ml07"
data-away-team-id="y39mpyf9ex0mojx"
odds=""
>
<a
href="/truc-tiep/tom-paris-vs-dan-added-luc-1900-ngay-19-09-2025/"
title="Tom Paris vs Dan Added lúc 19:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/tom-paris-vs-dan-added-luc-1900-ngay-19-09-2025/" title="Tom Paris vs Dan Added lúc 19:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/dn1m12f4n1jqoep/image/small" alt="ATP Challenger Saint Tropez, France Men Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="ATP">ATP Challenger Saint Tropez, France Men Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="jw2r0jf5d8lymz8">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="19:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>19:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/2y8m4vfznv6ml07/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Tom Paris</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="jw2r0jf5d8lymz8">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/tennis/team/y39mpyf9ex0mojx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Dan Added</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Tom Paris</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Dan Added</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/tom-paris-vs-dan-added-luc-1900-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patternjw2r0jf5d8lymz8_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patternjw2r0jf5d8lymz8_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_jw2r0jf5d8lymz8_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_jw2r0jf5d8lymz8_04_4"
width="1960" height="1960"
xlink:href="https://cdn.lfastcdn.com/2025/08/VIC1-removebg-preview.png"></image>
</defs>
</svg>
<span>VIC</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-jw2r0jf5d8lymz8"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix mb-2 mt-4">
<a href="#" class="btn btn-custom btn-load-fixtures" data-page="1" data-number="20">Xem thêm<i class="fa fa-refresh" aria-hidden="true"></i></a>
</div>
</div>
<div
class="tab-pane fade "
id="badminton"
role="tabpanel"
aria-labelledby="badminton-tab"
>
<div class="grid-matches_wrapper">
<div class="grid-matches" id="grid-matches" aria-live="polite">
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dnm9wls545yzryo"
data-fid="dnm9wls545yzryo"
data-sport-id="3"
data-hot=""
data-league="China Masters, Singles"
data-runtime="1758256200"
data-day="20250919"
data-week="5"
data-status="24"
data-sport-id="3"
data-home-team-id="k82rek6sg289rep"
data-away-team-id="l7oqdepsg83yr51"
odds=""
>
<a
href="/truc-tiep/kunlavut-vitidsarn-vs-christo-popov-luc-1130-ngay-19-09-2025/"
title="Kunlavut Vitidsarn vs Christo Popov lúc 11:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/kunlavut-vitidsarn-vs-christo-popov-luc-1130-ngay-19-09-2025/" title="Kunlavut Vitidsarn vs Christo Popov lúc 11:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/4jwq2g9s44k7m0v/image/small" alt="China Masters, Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CHI">China Masters, Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dnm9wls545yzryo">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="11:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>11:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/badminton/team/k82rek6sg289rep/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Kunlavut Vitidsarn</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dnm9wls545yzryo">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/badminton/team/l7oqdepsg83yr51/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Christo Popov</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Kunlavut Vitidsarn</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Christo Popov</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dnm9wls545yzryo"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-54qllys4638nqvy"
data-fid="54qllys4638nqvy"
data-sport-id="3"
data-hot=""
data-league="Indonesia Masters I, Mixed Doubles"
data-runtime="1758263400"
data-day="20250919"
data-week="5"
data-status="51"
data-sport-id="3"
data-home-team-id="dnm9wlskk8g5ryo"
data-away-team-id="7lm7posk0px1m2w"
odds=""
>
<a
href="/truc-tiep/zaidan-arrafi-awal-nabawi-jessica-maya-rismawardani-vs-chan-yin-chak-ng-tsz-yau-luc-1330-ngay-19-09-2025/"
title="Zaidan Arrafi Awal Nabawi/Jessica Maya Rismawardani vs Chan Yin Chak/Ng Tsz Yau lúc 13:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/zaidan-arrafi-awal-nabawi-jessica-maya-rismawardani-vs-chan-yin-chak-ng-tsz-yau-luc-1330-ngay-19-09-2025/" title="Zaidan Arrafi Awal Nabawi/Jessica Maya Rismawardani vs Chan Yin Chak/Ng Tsz Yau lúc 13:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/l5ergp9so4wvr8k/image/small" alt="Indonesia Masters I, Mixed Doubles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND">Indonesia Masters I, Mixed Doubles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="54qllys4638nqvy">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg team-logo-group-2'><img
src='https://imgts.api-football.xyz/badminton/team/2y8m4znsoo44ql0/image/small'
class='lazy team-logo-0'
/><img
src='https://imgts.api-football.xyz/badminton/team/l7oqdepsje0gr51/image/small'
class='lazy team-logo-1'
/></div>
<div class="team-name-group">
<p>Zaidan Arrafi Awal Nabawi</p>
<p>Jessica Maya Rismawardani </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="54qllys4638nqvy">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg team-logo-group-2'><img
src='https://imgts.api-football.xyz/badminton/team/1l4rjn4s9k2em7v/image/small'
class='lazy team-logo-0'
/><img
src='https://imgts.api-football.xyz/badminton/team/dn1m1g9sl1x8moe/image/small'
class='lazy team-logo-1'
/></div>
<div class="team-name-group">
<p>Chan Yin Chak</p>
<p>Ng Tsz Yau</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Zaidan Arrafi Awal Nabawi/Jessica Maya Rismawardani </div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Chan Yin Chak/Ng Tsz Yau</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-54qllys4638nqvy"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-jwq2g9sgjgykm0v"
data-fid="jwq2g9sgjgykm0v"
data-sport-id="3"
data-hot=""
data-league="Indonesia Masters I, Women Singles"
data-runtime="1758263400"
data-day="20250919"
data-week="5"
data-status="51"
data-sport-id="3"
data-home-team-id="23xmvk8s66wjqg8"
data-away-team-id="y0or5jzs8345qwz"
odds=""
>
<a
href="/truc-tiep/nozomi-okuhara-vs-huang-yu-hsun-luc-1330-ngay-19-09-2025/"
title="Nozomi Okuhara vs Huang Yu-Hsun lúc 13:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nozomi-okuhara-vs-huang-yu-hsun-luc-1330-ngay-19-09-2025/" title="Nozomi Okuhara vs Huang Yu-Hsun lúc 13:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/jw2r09gslk2jrz8/image/small" alt="Indonesia Masters I, Women Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND">Indonesia Masters I, Women Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="jwq2g9sgjgykm0v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/badminton/team/23xmvk8s66wjqg8/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nozomi Okuhara</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="jwq2g9sgjgykm0v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/badminton/team/y0or5jzs8345qwz/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Huang Yu-Hsun</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nozomi Okuhara</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Huang Yu-Hsun</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-jwq2g9sgjgykm0v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-ypq3nlsko83dmd7"
data-fid="ypq3nlsko83dmd7"
data-sport-id="3"
data-hot=""
data-league="Indonesia Masters I, Women Singles"
data-runtime="1758263400"
data-day="20250919"
data-week="5"
data-status="51"
data-sport-id="3"
data-home-team-id="n54qllys3dveqvy"
data-away-team-id="7lm7poskgz44m2w"
odds=""
>
<a
href="/truc-tiep/tasnim-mir-vs-sakura-masuki-luc-1330-ngay-19-09-2025/"
title="Tasnim Mir vs Sakura Masuki lúc 13:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/tasnim-mir-vs-sakura-masuki-luc-1330-ngay-19-09-2025/" title="Tasnim Mir vs Sakura Masuki lúc 13:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/jw2r09gslk2jrz8/image/small" alt="Indonesia Masters I, Women Singles" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="IND">Indonesia Masters I, Women Singles</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="ypq3nlsko83dmd7">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/badminton/team/n54qllys3dveqvy/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Tasnim Mir</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="ypq3nlsko83dmd7">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo team-logo-group-bg'><img
src='https://imgts.api-football.xyz/badminton/team/7lm7poskgz44m2w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Sakura Masuki</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Tasnim Mir</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Sakura Masuki</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-ypq3nlsko83dmd7"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix mb-2 mt-4">
<a href="#" class="btn btn-custom btn-load-fixtures" data-page="1" data-number="20">Xem thêm<i class="fa fa-refresh" aria-hidden="true"></i></a>
</div>
</div>
<div
class="tab-pane fade "
id="volleyball"
role="tabpanel"
aria-labelledby="volleyball-tab"
>
<div class="grid-matches_wrapper">
<div class="grid-matches" id="grid-matches" aria-live="polite">
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-l7oqddhjg2jdq51"
data-fid="l7oqddhjg2jdq51"
data-sport-id="4"
data-hot=""
data-league="Russia Cup Women"
data-runtime="1758261600"
data-day="20250919"
data-week="5"
data-status="434"
data-sport-id="4"
data-home-team-id="3glrwjhv9onqdyj"
data-away-team-id="965mkdhd450r1ge"
odds=""
>
<a
href="/truc-tiep/mba-moscow-women-vs-anapa-women-luc-1300-ngay-19-09-2025/"
title="MBA Moscow Women vs Anapa Women lúc 13:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/mba-moscow-women-vs-anapa-women-luc-1300-ngay-19-09-2025/" title="MBA Moscow Women vs Anapa Women lúc 13:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/e4wyrn3he0zm86p/image/small" alt="Russia Cup Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="l7oqddhjg2jdq51">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/3glrwjhv9onqdyj/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>MBA Moscow Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="l7oqddhjg2jdq51">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/965mkdhd450r1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Anapa Women</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">MBA Moscow Women</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Anapa Women</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer ">
<!-- First BLV -->
<div class="extra-info_one int-blv">
<a href="/truc-tiep/mba-moscow-women-vs-anapa-women-luc-1300-ngay-19-09-2025/" class="d-flex align-items-center gap-1">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681Z"
fill="url(#patternl7oqddhjg2jdq51_0)"
stroke="#FFC107"></path>
<path
d="M8.76718 2.96682C10.6949 1.56627 13.3051 1.56627 15.2328 2.96681L19.5921 6.134C21.5198 7.53454 22.3264 10.0171 21.5901 12.2832L19.925 17.4078C19.1887 19.6739 17.0769 21.2082 14.6942 21.2082H9.30583C6.92309 21.2082 4.81133 19.6739 4.07502 17.4078L2.40993 12.2832C1.67363 10.0171 2.48025 7.53454 4.40793 6.134L8.76718 2.96682Z"
stroke="#FFC107"></path>
<defs>
<pattern id="patternl7oqddhjg2jdq51_0"
patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image_l7oqddhjg2jdq51_04_4"
transform="scale(0.000510204)"></use>
</pattern>
<image id="image_l7oqddhjg2jdq51_04_4"
width="1960" height="1960"
xlink:href="https://wp.api-football.xyz/wp-content/uploads/2024/09/ad-removebg-preview-1.png"></image>
</defs>
</svg>
<span>STEP</span>
</a>
</div>
<!-- Full BLV -->
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-l7oqddhjg2jdq51"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m1nh9zgoyqoe"
data-fid="dn1m1nh9zgoyqoe"
data-sport-id="4"
data-hot=""
data-league="KOVO Cup"
data-runtime="1758263400"
data-day="20250919"
data-week="5"
data-status="432"
data-sport-id="4"
data-home-team-id="l965mkdhv5zr1ge"
data-away-team-id="56ypq3xh9lvqd7o"
odds=""
>
<a
href="/truc-tiep/rush-cash-vs-suwon-kepco-vixtorm-luc-1330-ngay-19-09-2025/"
title="Rush &amp; Cash vs Suwon KEPCO Vixtorm lúc 13:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/rush-cash-vs-suwon-kepco-vixtorm-luc-1330-ngay-19-09-2025/" title="Rush &amp; Cash vs Suwon KEPCO Vixtorm lúc 13:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/4zp5rzdh70oq82w/image/small" alt="KOVO Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="KOV">KOVO Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m1nh9zgoyqoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="13:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>13:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/l965mkdhv5zr1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Rush & Cash</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m1nh9zgoyqoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/56ypq3xh9lvqd7o/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Suwon KEPCO Vixtorm</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Rush & Cash</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Suwon KEPCO Vixtorm</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m1nh9zgoyqoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-318q67h8gd37ro9"
data-fid="318q67h8gd37ro9"
data-sport-id="4"
data-hot=""
data-league="Czech Cup Women"
data-runtime="1758268800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="pxwrxdho717myk0"
data-away-team-id="9vjxm8lh6nvq6od"
odds=""
>
<a
href="/truc-tiep/prostejov-b-women-vs-kp-brno-women-luc-1500-ngay-19-09-2025/"
title="Prostejov B Women vs KP Brno Women lúc 15:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/prostejov-b-women-vs-kp-brno-women-luc-1500-ngay-19-09-2025/" title="Prostejov B Women vs KP Brno Women lúc 15:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gpxwrxdh1j9myk0/image/small" alt="Czech Cup Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CZE">Czech Cup Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="318q67h8gd37ro9">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="15:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>15:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/pxwrxdho717myk0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Prostejov B Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="318q67h8gd37ro9">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/9vjxm8lh6nvq6od/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>KP Brno Women</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Prostejov B Women</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">KP Brno Women</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-318q67h8gd37ro9"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dj2rydh7l474r1z"
data-fid="dj2rydh7l474r1z"
data-sport-id="4"
data-hot=""
data-league="Russia Cup Women"
data-runtime="1758272400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="2y8m4whvk0eql07"
data-away-team-id="l965mkdhdxor1ge"
odds=""
>
<a
href="/truc-tiep/primorochka-women-vs-tulitsa-women-luc-1600-ngay-19-09-2025/"
title="Primorochka Women vs Tulitsa Women lúc 16:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/primorochka-women-vs-tulitsa-women-luc-1600-ngay-19-09-2025/" title="Primorochka Women vs Tulitsa Women lúc 16:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/e4wyrn3he0zm86p/image/small" alt="Russia Cup Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dj2rydh7l474r1z">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/2y8m4whvk0eql07/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Primorochka Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dj2rydh7l474r1z">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/l965mkdhdxor1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Tulitsa Women</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Primorochka Women</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Tulitsa Women</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dj2rydh7l474r1z"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-l7oqddhjg28dq51"
data-fid="l7oqddhjg28dq51"
data-sport-id="4"
data-hot=""
data-league="Russia Cup"
data-runtime="1758274200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="vl7oqddhwzkq510"
data-away-team-id="kjw2r0nhyddqz84"
odds=""
>
<a
href="/truc-tiep/ask-n-novgorod-vs-orenburg-luc-1630-ngay-19-09-2025/"
title="ASK N. Novgorod vs Orenburg lúc 16:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/ask-n-novgorod-vs-orenburg-luc-1630-ngay-19-09-2025/" title="ASK N. Novgorod vs Orenburg lúc 16:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small" alt="Russia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="l7oqddhjg28dq51">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="16:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>16:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/vl7oqddhwzkq510/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>ASK N. Novgorod</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="l7oqddhjg28dq51">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/kjw2r0nhyddqz84/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Orenburg</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">ASK N. Novgorod</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Orenburg</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-l7oqddhjg28dq51"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-8yomoxhy1xggm0j"
data-fid="8yomoxhy1xggm0j"
data-sport-id="4"
data-hot=""
data-league="Russia Cup"
data-runtime="1758279600"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="56ypq3xhyd2qd7o"
data-away-team-id="9dn1m1nhy86qoep"
odds=""
>
<a
href="/truc-tiep/novyi-urengoy-vs-mgtu-moscow-luc-1800-ngay-19-09-2025/"
title="Novyi Urengoy vs MGTU Moscow lúc 18:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/novyi-urengoy-vs-mgtu-moscow-luc-1800-ngay-19-09-2025/" title="Novyi Urengoy vs MGTU Moscow lúc 18:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small" alt="Russia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="8yomoxhy1xggm0j">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="18:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>18:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/56ypq3xhyd2qd7o/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Novyi Urengoy</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="8yomoxhy1xggm0j">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/9dn1m1nhy86qoep/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>MGTU Moscow</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Novyi Urengoy</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">MGTU Moscow</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-8yomoxhy1xggm0j"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-2y8m4whv5xwpql0"
data-fid="2y8m4whv5xwpql0"
data-sport-id="4"
data-hot=""
data-league="Russia Cup"
data-runtime="1758283200"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="kdj2rydh636r1zp"
data-away-team-id="gx7lm75hyeoq2wd"
odds=""
>
<a
href="/truc-tiep/krasnoyarsk-vs-yaroslavl-luc-1900-ngay-19-09-2025/"
title="Krasnoyarsk vs Yaroslavl lúc 19:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/krasnoyarsk-vs-yaroslavl-luc-1900-ngay-19-09-2025/" title="Krasnoyarsk vs Yaroslavl lúc 19:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small" alt="Russia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="2y8m4whv5xwpql0">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="19:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>19:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/kdj2rydh636r1zp/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Krasnoyarsk</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="2y8m4whv5xwpql0">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/gx7lm75hyeoq2wd/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Yaroslavl</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Krasnoyarsk</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Yaroslavl</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-2y8m4whv5xwpql0"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-2y8m4whv5xvpql0"
data-fid="2y8m4whv5xvpql0"
data-sport-id="4"
data-hot=""
data-league="Russia Cup Women"
data-runtime="1758285000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="9k82redh7zlqepz"
data-away-team-id="8y39mpwh2vxqojx"
odds=""
>
<a
href="/truc-tiep/tyumen-women-vs-ufa-w-luc-1930-ngay-19-09-2025/"
title="Tyumen Women vs Ufa W lúc 19:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/tyumen-women-vs-ufa-w-luc-1930-ngay-19-09-2025/" title="Tyumen Women vs Ufa W lúc 19:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/e4wyrn3he0zm86p/image/small" alt="Russia Cup Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="2y8m4whv5xvpql0">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="19:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>19:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/9k82redh7zlqepz/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Tyumen Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="2y8m4whv5xvpql0">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/8y39mpwh2vxqojx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Ufa Women</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Tyumen Women</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Ufa Women</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-2y8m4whv5xvpql0"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-pxwrxdhlyexymyk"
data-fid="pxwrxdhlyexymyk"
data-sport-id="4"
data-hot=""
data-league="Russia Cup"
data-runtime="1758286800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="z318q67hej4ro9j"
data-away-team-id="x7lm75hk03j5q2w"
odds=""
>
<a
href="/truc-tiep/tyumen-vs-dinskaya-rcsp-luc-2000-ngay-19-09-2025/"
title="Tyumen vs Dinskaya-RCSP lúc 20:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/tyumen-vs-dinskaya-rcsp-luc-2000-ngay-19-09-2025/" title="Tyumen vs Dinskaya-RCSP lúc 20:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small" alt="Russia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="pxwrxdhlyexymyk">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="20:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>20:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/z318q67hej4ro9j/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Tyumen</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="pxwrxdhlyexymyk">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/x7lm75hk03j5q2w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Dinskaya-RCSP</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Tyumen</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Dinskaya-RCSP</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-pxwrxdhlyexymyk"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-flex d-lg-none ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dj2rydh7l4e4r1z"
data-fid="dj2rydh7l4e4r1z"
data-sport-id="4"
data-hot=""
data-league="Russia Cup"
data-runtime="1758286800"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="kn54qldhg68rvy9"
data-away-team-id="z318q67hydxro9j"
odds=""
>
<a
href="/truc-tiep/barnaul-vs-nizhnevartovsk-luc-2000-ngay-19-09-2025/"
title="Barnaul vs Nizhnevartovsk lúc 20:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/barnaul-vs-nizhnevartovsk-luc-2000-ngay-19-09-2025/" title="Barnaul vs Nizhnevartovsk lúc 20:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small" alt="Russia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dj2rydh7l4e4r1z">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="20:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>20:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/kn54qldhg68rvy9/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Barnaul</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dj2rydh7l4e4r1z">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/z318q67hydxro9j/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nizhnevartovsk</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Barnaul</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nizhnevartovsk</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dj2rydh7l4e4r1z"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-6ypq3xhkve73qd7"
data-fid="6ypq3xhkve73qd7"
data-sport-id="4"
data-hot=""
data-league="Russia Cup"
data-runtime="1758290400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="z8yomoxhp9jm0j6"
data-away-team-id="e4wyrn3hp9zm86p"
odds=""
>
<a
href="/truc-tiep/surgut-region-vs-novokuybyshevsk-luc-2100-ngay-19-09-2025/"
title="Surgut Region vs Novokuybyshevsk lúc 21:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/surgut-region-vs-novokuybyshevsk-luc-2100-ngay-19-09-2025/" title="Surgut Region vs Novokuybyshevsk lúc 21:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/8y39mpwh5klqojx/image/small" alt="Russia Cup" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="6ypq3xhkve73qd7">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="21:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>21:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/z8yomoxhp9jm0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Surgut Region</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="6ypq3xhkve73qd7">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/e4wyrn3hp9zm86p/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Novokuybyshevsk</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Surgut Region</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Novokuybyshevsk</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-6ypq3xhkve73qd7"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-zp5rzdh39w24q82"
data-fid="zp5rzdh39w24q82"
data-sport-id="4"
data-hot=""
data-league="Superliga"
data-runtime="1758290400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="vjxm8lh4vg1wq6o"
data-away-team-id="z8yomoxhdgnm0j6"
odds=""
>
<a
href="/truc-tiep/skenderbeu-vs-erzeni-luc-2100-ngay-19-09-2025/"
title="Skenderbeu vs Erzeni lúc 21:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/skenderbeu-vs-erzeni-luc-2100-ngay-19-09-2025/" title="Skenderbeu vs Erzeni lúc 21:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/dj2rydhk79dr1zp/image/small" alt="Superliga" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="SUP">Superliga</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="zp5rzdh39w24q82">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="21:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>21:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/vjxm8lh4vg1wq6o/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Skenderbeu</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="zp5rzdh39w24q82">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/z8yomoxhdgnm0j6/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Erzeni</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Skenderbeu</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Erzeni</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-zp5rzdh39w24q82"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-none d-lg-flex ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div id="match-child-1" class="col-12 col-lg-6 mb-3 matches-item data-hot d-none d-lg-flex ads-item"> <p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/ihadb4d-1.gif" alt="8XBET">
</a>
</p>
</div><div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-8yomoxhy1xygm0j"
data-fid="8yomoxhy1xygm0j"
data-sport-id="4"
data-hot=""
data-league="Russia Cup Women"
data-runtime="1758294000"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="ednm9vhy9xoqyox"
data-away-team-id="4zp5rzdhv91q82w"
odds=""
>
<a
href="/truc-tiep/murom-women-vs-saratov-women-luc-2200-ngay-19-09-2025/"
title="Murom Women vs Saratov Women lúc 22:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/murom-women-vs-saratov-women-luc-2200-ngay-19-09-2025/" title="Murom Women vs Saratov Women lúc 22:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/e4wyrn3he0zm86p/image/small" alt="Russia Cup Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="RUS">Russia Cup Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="8yomoxhy1xygm0j">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="22:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>22:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/ednm9vhy9xoqyox/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Murom Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="8yomoxhy1xygm0j">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/4zp5rzdhv91q82w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Saratov Women</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Murom Women</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Saratov Women</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-8yomoxhy1xygm0j"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-1l4rjdhndzzor7v"
data-fid="1l4rjdhndzzor7v"
data-sport-id="4"
data-hot=""
data-league="I. Liga"
data-runtime="1758297600"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="yl5ergdh6g1r8k0"
data-away-team-id="l965mkdhdwor1ge"
odds=""
>
<a
href="/truc-tiep/czarni-radom-vs-bielsko-biala-luc-2300-ngay-19-09-2025/"
title="Czarni Radom vs Bielsko-Biala lúc 23:00 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/czarni-radom-vs-bielsko-biala-luc-2300-ngay-19-09-2025/" title="Czarni Radom vs Bielsko-Biala lúc 23:00 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/kjw2r0nhnpnqz84/image/small" alt="I. Liga" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="I. ">I. Liga</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="1l4rjdhndzzor7v">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="23:00 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>23:00 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/yl5ergdh6g1r8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Czarni Radom</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="1l4rjdhndzzor7v">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/l965mkdhdwor1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Bielsko-Biala</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Czarni Radom</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Bielsko-Biala</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-1l4rjdhndzzor7v"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m1nh90dgkqoe"
data-fid="dn1m1nh90dgkqoe"
data-sport-id="4"
data-hot=""
data-league="Czech Cup Women"
data-runtime="1758299400"
data-day="20250919"
data-week="5"
data-status="1"
data-sport-id="4"
data-home-team-id="pxwrxdho717myk0"
data-away-team-id="4jwq23hyojer0ve"
odds=""
>
<a
href="/truc-tiep/prostejov-b-women-vs-ostrava-b-women-luc-2330-ngay-19-09-2025/"
title="Prostejov B Women vs Ostrava B Women lúc 23:30 ngày 19/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/prostejov-b-women-vs-ostrava-b-women-luc-2330-ngay-19-09-2025/" title="Prostejov B Women vs Ostrava B Women lúc 23:30 ngày 19/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/gpxwrxdh1j9myk0/image/small" alt="Czech Cup Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="CZE">Czech Cup Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m1nh90dgkqoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="23:30 Hôm nay" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>23:30 - 19/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/pxwrxdho717myk0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Prostejov B Women</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m1nh90dgkqoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/4jwq23hyojer0ve/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Ostrava B Women</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Prostejov B Women</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Ostrava B Women</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m1nh90dgkqoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-dn1m1nh9z0odqoe"
data-fid="dn1m1nh9z0odqoe"
data-sport-id="4"
data-hot=""
data-league="Superliga"
data-runtime="1758301200"
data-day="20250920"
data-week="6"
data-status="1"
data-sport-id="4"
data-home-team-id="l5ergdhz90dr8k0"
data-away-team-id="x7lm75hkgo63q2w"
odds=""
>
<a
href="/truc-tiep/studenti-tirana-vs-partizani-tirana-luc-0000-ngay-20-09-2025/"
title="Studenti Tirana vs Partizani Tirana lúc 00:00 ngày 20/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/studenti-tirana-vs-partizani-tirana-luc-0000-ngay-20-09-2025/" title="Studenti Tirana vs Partizani Tirana lúc 00:00 ngày 20/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/dj2rydhk79dr1zp/image/small" alt="Superliga" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="SUP">Superliga</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="dn1m1nh9z0odqoe">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="00:00 Ngày mai" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>00:00 - 20/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/l5ergdhz90dr8k0/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Studenti Tirana</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="dn1m1nh9z0odqoe">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/x7lm75hkgo63q2w/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Partizani Tirana</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Studenti Tirana</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Partizani Tirana</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-dn1m1nh9z0odqoe"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-ednm9vh5pnolqyo"
data-fid="ednm9vh5pnolqyo"
data-sport-id="4"
data-hot=""
data-league="Pan-American Cup Final Six Women"
data-runtime="1758319200"
data-day="20250920"
data-week="6"
data-status="1"
data-sport-id="4"
data-home-team-id="jednm9vh319qyox"
data-away-team-id="jednm9vh3j9qyox"
odds=""
>
<a
href="/truc-tiep/nu-canada-vs-nu-cuba-luc-0500-ngay-20-09-2025/"
title="Nữ Canada vs Nữ Cuba lúc 05:00 ngày 20/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-canada-vs-nu-cuba-luc-0500-ngay-20-09-2025/" title="Nữ Canada vs Nữ Cuba lúc 05:00 ngày 20/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/k82redhvxpxqepz/image/small" alt="Pan-American Cup Final Six Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="PAN">Pan-American Cup Final Six Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="ednm9vh5pnolqyo">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="05:00 Ngày mai" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>05:00 - 20/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/jednm9vh319qyox/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Canada </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="ednm9vh5pnolqyo">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/jednm9vh3j9qyox/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Cuba </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nữ Canada </div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nữ Cuba </div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-ednm9vh5pnolqyo"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-965mkdh80vwxr1g"
data-fid="965mkdh80vwxr1g"
data-sport-id="4"
data-hot=""
data-league="Pan-American Cup Final Six Women"
data-runtime="1758326400"
data-day="20250920"
data-week="6"
data-status="1"
data-sport-id="4"
data-home-team-id="p4jwq23h3l4r0ve"
data-away-team-id="l965mkdh66jr1ge"
odds=""
>
<a
href="/truc-tiep/nu-usa-vs-nu-puerto-rico-luc-0700-ngay-20-09-2025/"
title="Nữ USA vs Nữ Puerto Rico lúc 07:00 ngày 20/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-usa-vs-nu-puerto-rico-luc-0700-ngay-20-09-2025/" title="Nữ USA vs Nữ Puerto Rico lúc 07:00 ngày 20/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/k82redhvxpxqepz/image/small" alt="Pan-American Cup Final Six Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="PAN">Pan-American Cup Final Six Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="965mkdh80vwxr1g">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="07:00 Ngày mai" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>07:00 - 20/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/p4jwq23h3l4r0ve/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ USA</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="965mkdh80vwxr1g">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/l965mkdh66jr1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Puerto Rico </p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nữ USA</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nữ Puerto Rico </div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-965mkdh80vwxr1g"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-y39mpwhdelogqoj"
data-fid="y39mpwhdelogqoj"
data-sport-id="4"
data-hot=""
data-league="Pan-American Cup Final Six Women"
data-runtime="1758333600"
data-day="20250920"
data-week="6"
data-status="1"
data-sport-id="4"
data-home-team-id="jednm9vh333qyox"
data-away-team-id="p4jwq23h332r0ve"
odds=""
>
<a
href="/truc-tiep/nu-mexico-vs-nu-ch-dominican-luc-0900-ngay-20-09-2025/"
title="Nữ Mexico vs Nữ CH Dominican lúc 09:00 ngày 20/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/nu-mexico-vs-nu-ch-dominican-luc-0900-ngay-20-09-2025/" title="Nữ Mexico vs Nữ CH Dominican lúc 09:00 ngày 20/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/k82redhvxpxqepz/image/small" alt="Pan-American Cup Final Six Women" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="PAN">Pan-American Cup Final Six Women</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="y39mpwhdelogqoj">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="09:00 Ngày mai" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>09:00 - 20/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/jednm9vh333qyox/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ Mexico </p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="y39mpwhdelogqoj">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/p4jwq23h332r0ve/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Nữ CH Dominican</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nữ Mexico </div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Nữ CH Dominican</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-y39mpwhdelogqoj"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
<div class="main-grid-match data-upcoming-match grid-matches__item"
id="match-child-3glrwjh4nxxpqdy"
data-fid="3glrwjh4nxxpqdy"
data-sport-id="4"
data-hot=""
data-league="AVL"
data-runtime="1758337200"
data-day="20250920"
data-week="6"
data-status="99"
data-sport-id="4"
data-home-team-id="l965mkdhvozr1ge"
data-away-team-id="j1l4rjdh7lzr7vx"
odds=""
>
<a
href="/truc-tiep/adelaide-storm-vs-canberra-heat-luc-1000-ngay-20-09-2025/"
title="Adelaide Storm vs Canberra Heat lúc 10:00 ngày 20/09/2025"
class="redirectPopup"
rel="nofollow"
data-random-streams=""
></a>
<div href="/truc-tiep/adelaide-storm-vs-canberra-heat-luc-1000-ngay-20-09-2025/" title="Adelaide Storm vs Canberra Heat lúc 10:00 ngày 20/09/2025" aria-label="Đang đá" class="grid-match ">
<div class="gmd-tournament-header">
<div class="gmd-match-league">
<img src="https://imgts.api-football.xyz/football/competition/j1l4rjdh11er7vx/image/small" alt="AVL" class="gmd-comp_logo">
<span class="text-ellipsis" data-attr="AVL">AVL</span>
</div>
<div class="gmd-elapsed-time icon-haflt" data-fid="3glrwjh4nxxpqdy">
<p id="gmd_minutes" class="grid-match__status--normal gmd-e_minutes t_time time" data-time="10:00 Ngày mai" style="display:none;"></p>
<div class="progress-bar"></div>
</div>
<div class="grid-match__date gmd-match-date">
<span>10:00 - 20/09</span>
</div>
</div>
<div class="gmd-content_match">
<div class="gmd-team gmd-home_team text-center">
<div class='team-logo-group team-logo-group-home-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/l965mkdhvozr1ge/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Adelaide Storm</p>
</div>
</div>
<div class="gmd-mid_score text-center">
<div class="gmd-score-box grid-match__vs grid-match__status" data-fid="3glrwjh4nxxpqdy">
VS
</div>
</div>
<div class="gmd-team gmd-away_team text-center">
<div class='team-logo-group team-logo-group-away-logo'><img
src='https://imgts.api-football.xyz/volleyball/team/j1l4rjdh7lzr7vx/image/small'
class='lazy team-logo-0'
/></div>
<div class="team-name-group">
<p>Canberra Heat</p>
</div>
</div>
</div>
<!-- New footer -->
<div class="grid-match__footer-tennis">
<div class="t-incident-tennis">
<div class="tib-row tib-row-head">
<div class="tib-column-name">Bảng điểm</div>
<div class="tib-column-value tib-column-s1">S1</div>
<div class="tib-column-value tib-column-s2">S2</div>
<div class="tib-column-value tib-column-s3">S3</div>
<div class="tib-column-value tib-column-s4">S4</div>
<div class="tib-column-value tib-column-s5">S5</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Adelaide Storm</div>
<div class="tib-column-value tib-home-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-home-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-home-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-home-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-home-s5 tib-column-s5">
-
</div>
</div>
<div class="tib-row tib-row-team">
<div class="tib-column-name">Canberra Heat</div>
<div class="tib-column-value tib-away-s1 tib-column-s1">
-
</div>
<div class="tib-column-value tib-away-s2 tib-column-s2">
-
</div>
<div class="tib-column-value tib-away-s3 tib-column-s3">
-
</div>
<div class="tib-column-value tib-away-s4 tib-column-s4">
-
</div>
<div class="tib-column-value tib-away-s5 tib-column-s5">
-
</div>
</div>
</div>
<div class="grid-pt">
<div class="grid-pt-home"></div>
<div class="grid-pt-away"></div>
</div>
</div>
<div class="grid-match__footer">
<div class="grid-match__footer-center">
<div class="gmd-match-footer__streamer no-streamer ">
<button class="toggle-btn no-blv">
<img src="https://static.mitomzi.cc/images/home/blv.png" alt="streamer" width="14px" height="14px">
</button>
</div>
</div>
<div class="grid-match__footer-right d-flex align-items-center gap-3 justify-content-end">
<div class="grid-match__odds d-flex flex-column">
<div class="grid-match__odds-item grey d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
<div class="grid-match__odds-item d-flex">
<p>-</p>
<p>-</p>
<p>-</p>
</div>
</div>
<a
href="javascript:void(0)"
class="odds-comp"
target=""
rel="nofollow"
>
<img
data-url="https://mitomzi.cc"
src="https://static.mitomzi.cc/images/company/2.png"
alt="company"
>
</a>
</div>
</div>
<div
id="match-popup-3glrwjh4nxxpqdy"
class="match-popup d-none"
>
<div class="statics-popup"></div>
<div class="incident-popup d-none"></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix mb-2 mt-4">
<a href="#" class="btn btn-custom btn-load-fixtures" data-page="1" data-number="20">Xem thêm<i class="fa fa-refresh" aria-hidden="true"></i></a>
</div>
</div>
<!-- Tab livescore -->
<div class="tab-pane fade" id="livescore" role="tabpanel" aria-labelledby="livescore-tab">
<iframe data-src="https://embed.plcdn.xyz/embed/livescores?siteName=mitom" id="livescore_iframe" height="900px" width="100%" scrolling="no" border="0" frameborder="0"></iframe>
<script type="text/javascript">
window.addEventListener('message', function(event) {
if (event.data.iframeHeight) {
var iframe = document.getElementById('livescore_iframe');
iframe.style.height = event.data.iframeHeight + 'px';
}
}, false);
</script>
</div>
</div>
</div>
</div>
<script id="statisticsTemplate" type="text/template">
<div class="hpu-stats-home">
<ul class="hpu-nav-tabs nav nav-tabs">
{$tabList}
</ul>
<div class="tab-content">
{$tabContent}
</div>
</div>
</script>
<script id="statisticsContentTemplate" type="text/template">
<div id="{$id}" class="hpu-stats hpu-home-scrollable-content tab-pane {$class}">
<div class="hpu-stats__content">
{$listItem}
</div>
</div>
</script>
<script id="statisticsItemTemplate" type="text/template">
<div class="hpu-stats__line">
<span class="hpu-stats__value hpu-stats__value--home {$winHome}">{$home}</span>
<span class="hpu-stats__bar-wrapper hpu-stats__bar-wrapper--home {$winHome}">
<span
class="hpu-stats__bar hpu-stats__bar--home"
style="width: {$showHomePre}"
></span>
</span>
<span class="hpu-stats__title">{$type}</span>
<span class="hpu-stats__bar-wrapper hpu-stats__bar-wrapper--away {$winAway}">
<span
class="hpu-stats__bar hpu-stats__bar--away"
style="width: {$showAwayPre}"
></span>
</span>
<span class="hpu-stats__value hpu-stats__value--away {$winAway}">{$away}</span>
</div>
</script>
<script id="incidentsTemplate" type="text/template">
<div
class="hpu-summary-block d-flex flex-column hpu-home-scrollable-content"
>
{$incidentsList}
<div class="hpu-summary-block__start {$classIconStart}">
<svg
width="14"
height="14"
viewBox="0 0 14 14"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_406_2175)">
<path
d="M7 0C3.14027 0 0 3.14027 0 7C0 10.8597 3.14027 14 7 14C10.8597 14 14 10.8597 14 7C14 3.14027 10.8597 0 7 0ZM7 13.125C3.62262 13.125 0.875004 10.3774 0.875004 7C0.875004 3.62262 3.62262 0.875004 7 0.875004C10.3774 0.875004 13.125 3.62262 13.125 7C13.125 10.3774 10.3774 13.125 7 13.125Z"
fill="#FFB43A"
/>
<path
d="M7.4375 2.625H6.5625V7.18114L9.31567 9.93431L9.93433 9.31566L7.4375 6.81884V2.625Z"
fill="#FFB43A"
/>
</g>
<defs>
<clipPath id="clip0_406_2175">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
</div>
</div>
</script>
<script id="incidentsItemTemplate" type="text/template">
<div class="hpu-summary-block__event d-flex align-items-center">
<div class="hpu-summary-block__event-time d-flex align-items-center mr-1">
<div>{$displayTime}</div>
</div>
<div class="hpu-summary-block__event-detail d-flex flex-1 {$eventClass}">
<div class="hpu-summary-block__event-score d-flex flex-1">
<button class="{$scoreShowBtn}">
<span class="hpu-score-home">{$homeScore}</span> -
<span class="hpu-score-away">{$awayScore}</span>
</button>
</div>
<div class="hpu-summary-block__event-icon d-flex justify-content-center align-items-center">
<div class="hpu-summary-block__midfield {$scoreShow} {$scoreClass}">
<span>{$title}</span
><span>{$homeScore}</span
><span>:</span>
<span>{$awayScore}</span>
</div>
<div class="hpu-icon {$iconClass}">
<svg
aria-hidden="true"
type="{$type}"
width="{$iconWidth}"
height="{$iconHeight}"
class="hpu-summary-block__icon"
>
<use href="{$icon}"></use>
</svg>
</div>
</div>
<div class="hpu-summary-block__player d-flex flex-1">
<div class="hpu-summary-block__player-info d-flex align-items-center">
<div class="hpu-summary-block__player-logo cursor-pointer bg-white rounded-pill {$playerClass}">
<img
class="rounded-pill hpu-summary-block__player-logo--in hpu-player-avatar"
src="{$playerImage}"
alt="{$playerName}"
/>
</div>
<div class="cursor-pointer bg-white rounded-pill {$playerClassIn}">
<img
class="rounded-pill hpu-summary-block__player-logo--in hpu-player-avatar"
src="{$playerImageIn}"
alt="{$playerNameIn}"
/>
</div>
<div class="hpu-cursor-pointer hpu-bg-white rounded-pill {$playerClassOut}">
<img
class="hpu-rounded-pill hpu-summary-block__player-logo--out hpu-player-avatar"
src="{$playerImageOut}"
alt="{$playerNameOut}"
/>
</div>
</div>
<div class="hpu-summary-block__player-name d-flex flex-column">
<span>{$playerName1}</span>
<span class="hpu-summary-block__player-name--sub {$playerClassOut1}">{$playerNameOut}</span>
</div>
</div>
</div>
</div>
</script>
<svg aria-hidden="true" style="position: absolute; width: 0px; height: 0px; overflow: hidden;">
<symbol id="icon-jiangbeibeifen" viewBox="0 0 1024 1024">
<path d="M447.6928 843.229867h128.887467V563.746133H447.6928z" fill="#FFCC00"></path>
<path d="M586.205867 763.630933c0 4.5056-5.461333 8.123733-12.288 8.123734h-123.562667c-6.826667 0-12.288-3.618133-12.288-8.123734 0-4.437333 5.461333-8.055467 12.288-8.055466h123.562667c6.826667 0 12.288 3.618133 12.288 8.055466" fill="#FDC00F"></path>
<path d="M595.899733 779.810133c0 6.007467-6.280533 10.8544-13.994666 10.8544H442.368c-7.714133 0-13.9264-4.846933-13.9264-10.8544 0-5.9392 6.212267-10.786133 13.9264-10.786133h139.605333c7.714133 0 13.994667 4.846933 13.994667 10.786133" fill="#F9B233"></path>
<path d="M586.205867 628.736c0 4.5056-5.461333 8.123733-12.288 8.123733h-123.562667c-6.826667 0-12.288-3.618133-12.288-8.123733 0-4.437333 5.461333-8.055467 12.288-8.055467h123.562667c6.826667 0 12.288 3.618133 12.288 8.055467" fill="#FDC00F"></path>
<path d="M595.899733 612.5568c0 5.9392-6.280533 10.786133-13.994666 10.786133H442.368c-7.714133 0-13.9264-4.778667-13.9264-10.786133 0-5.9392 6.212267-10.786133 13.9264-10.786133h139.605333c7.714133 0 13.994667 4.846933 13.994667 10.786133" fill="#F9B233"></path>
<path d="M697.1392 872.721067c0 8.874667-8.6016 16.1792-19.319467 16.1792H360.174933c-10.717867 0-19.319467-7.236267-19.319466-16.1792v-67.7888c0-8.874667 8.6016-16.1792 19.319466-16.1792h317.6448c10.717867 0 19.319467 7.236267 19.319467 16.1792v67.7888z" fill="#FFCC00"></path>
<path d="M759.808 988.023467c0 8.874667-7.645867 16.1792-17.2032 16.1792H295.3216c-9.557333 0-17.2032-7.236267-17.2032-16.1792V874.7008C278.1184 865.826133 285.764267 858.5216 295.3216 858.5216h447.2832c9.557333 0 17.2032 7.236267 17.2032 16.1792v113.322667z" fill="#FF9D00"></path>
<path d="M253.610667 114.619733a19.524267 19.524267 0 1 1 6.212266 38.5024c-102.058667 16.452267-143.428267 42.530133-133.5296 85.538134 4.096 17.544533 21.7088 41.437867 52.087467 71.2704l19.933867 18.773333 20.8896 18.568533 65.399466 55.5008 17.476267 15.36 14.199467 13.175467a300.373333 300.373333 0 0 1 11.332266 11.537067 19.524267 19.524267 0 0 1-28.603733 26.555733l-4.778667-4.983467-11.605333-11.195733-14.7456-13.312-13.312-11.4688-48.7424-41.233067-23.483733-20.411733-20.0704-18.295467C119.944533 308.770133 95.095467 276.957867 88.2688 247.3984c-17.271467-75.025067 43.076267-113.0496 165.341867-132.778667z" fill="#FDC00F"></path>
<path d="M288.5632 452.744533c0 13.789867-13.858133 24.9856-30.993067 24.9856-17.066667 0-30.993067-11.195733-30.993066-24.9856 0-13.789867 13.9264-24.9856 30.993066-24.9856s30.993067 11.195733 30.993067 24.9856" fill="#FDC00F"></path>
<path d="M766.088533 114.414933l4.5056 0.2048c122.197333 19.729067 182.613333 57.7536 165.341867 132.778667-6.826667 29.559467-31.607467 61.371733-74.001067 101.102933l-20.0704 18.295467-33.860266 29.218133-42.939734 36.386134-16.520533 14.472533-13.1072 12.151467-10.24 10.376533a19.524267 19.524267 0 1 1-28.603733-26.555733l5.393066-5.597867 12.629334-12.288 15.7696-14.1312 74.615466-63.556267 20.957867-18.568533 9.284267-8.6016c36.864-34.679467 58.1632-61.917867 62.6688-81.442133 9.898667-43.008-31.402667-69.085867-133.5296-85.538134a19.524267 19.524267 0 0 1 1.706666-38.7072z" fill="#FDC00F"></path>
<path d="M797.627733 452.744533c0 13.789867-13.858133 24.9856-30.993066 24.9856-17.066667 0-30.993067-11.195733-30.993067-24.9856 0-13.789867 13.858133-24.9856 30.993067-24.9856 17.066667 0 30.993067 11.195733 30.993066 24.9856" fill="#FDC00F"></path>
<path d="M785.066667 27.784533l-30.651734 446.8736c0 85.128533-82.397867 127.112533-183.978666 127.112534H453.8368c-101.649067 0-184.046933-41.984-184.046933-127.112534L239.138133 27.784533" fill="#FFD633"></path>
<path d="M805.341867 63.556267c0 10.4448-11.0592 18.909867-24.712534 18.909866H243.643733c-13.653333 0-24.712533-8.465067-24.712533-18.909866 0-10.376533 11.0592-18.8416 24.712533-18.8416h536.9856c13.653333 0 24.712533 8.465067 24.712534 18.8416" fill="#FDC00F"></path>
<path d="M814.967467 25.8048c0 11.195733-11.400533 20.206933-25.531734 20.206933H234.837333c-14.062933 0-25.463467-9.0112-25.463466-20.206933 0-11.195733 11.400533-20.206933 25.463466-20.206933h554.666667c14.1312 0 25.531733 9.0112 25.531733 20.206933" fill="#F9B233"></path>
<path d="M510.429867 151.005867l45.738666 92.706133 102.263467 14.882133-74.001067 72.157867 17.476267 101.853867-91.477333-48.128-91.477334 48.128 17.408-101.853867-74.001066-72.157867 102.263466-14.882133z" fill="#FFB600"></path>
</symbol>
<symbol id="icon-esports" viewBox="0 0 1204 1024">
<path d="M352.015059 0c40.417882 0 78.004706 19.877647 100.773647 52.766118l5.421176 8.493176 28.310589 48.911059c7.408941 12.950588 20.419765 21.504 34.93647 23.491765l6.384941 0.421647h125.048471a47.826824 47.826824 0 0 0 37.827765-18.672941l3.493647-5.240471 28.190117-48.850824A122.578824 122.578824 0 0 1 818.597647 0.421647L828.596706 0h145.950118a200.161882 200.161882 0 0 1 199.740235 188.717176l0.301176 11.324236v616.929882a202.691765 202.691765 0 0 1-383.939764 90.593882l-5.059765-11.023058-38.008471-89.027765a32.346353 32.346353 0 0 0-24.214588-19.154824l-5.421176-0.481882H462.787765a32.346353 32.346353 0 0 0-27.105883 14.817882l-2.590117 4.818824-37.044706 86.859294a206.366118 206.366118 0 0 1-395.745883-69.692235L0 813.357176V200.041412A200.101647 200.101647 0 0 1 188.717176 0.301176L199.981176 0h151.973648z m0 90.352941H200.041412c-57.524706 0-104.749176 44.333176-109.327059 100.713412l-0.361412 9.035294v613.255529a115.952941 115.952941 0 0 0 218.654118 53.910589l3.915294-8.372706 37.044706-86.799059c17.950118-42.164706 57.825882-70.535529 103.002353-74.149647l9.818353-0.421647h255.156706c45.778824 0 87.521882 25.6 108.544 65.716706l4.21647 8.794353 38.008471 89.088a112.338824 112.338824 0 0 0 215.16047-35.358118l0.361412-8.794353V200.041412c0-57.524706-44.393412-104.749176-100.713412-109.327059l-9.035294-0.361412h-145.889882c-9.637647 0-18.612706 4.216471-24.696471 11.444706l-3.19247 4.698353-28.310589 48.911059a138.300235 138.300235 0 0 1-109.025882 68.608l-10.480941 0.421647H527.841882c-45.839059 0-88.425412-22.708706-114.025411-60.175059l-5.601883-8.854588-28.310588-48.911059a32.225882 32.225882 0 0 0-22.226824-15.661176L352.015059 90.352941z m465.01647 149.38353a30.117647 30.117647 0 0 1 29.57553 24.69647l0.481882 5.421177v121.554823h121.554824a30.117647 30.117647 0 0 1 5.421176 59.753412l-5.421176 0.481882h-121.554824v121.615059a30.117647 30.117647 0 0 1-59.753412 5.421177l-0.481882-5.421177V451.644235h-121.554823a30.117647 30.117647 0 0 1-5.421177-59.753411l5.421177-0.481883h121.554823V269.854118a30.117647 30.117647 0 0 1 30.117647-30.117647z m-446.042353 12.40847a165.647059 165.647059 0 1 1 0 331.294118 165.647059 165.647059 0 1 1 0-331.294118z m0 60.235294a105.411765 105.411765 0 1 0-0.12047 210.82353 105.411765 105.411765 0 0 0 0.12047-210.82353z"></path>
</symbol>
<symbol id="icon-dianjing_yixie" viewBox="0 0 1024 1024">
<path d="M524.873143 6.436571a24.722286 24.722286 0 0 1 8.265143 8.265143l277.211428 454.948572c34.011429 49.005714 53.613714 106.934857 53.613715 169.106285 0 175.908571-157.549714 318.610286-351.963429 318.610286-194.413714 0-352.036571-142.628571-352.036571-318.610286 0-62.390857 19.894857-120.685714 54.125714-169.764571L490.788571 14.774857a24.722286 24.722286 0 0 1 34.011429-8.338286zM326.948571 447.634286c-73.874286 124.928-91.721143 222.208-53.394285 291.84 57.490286 104.448 227.035429 154.916571 247.734857 94.208 20.699429-60.708571-82.797714-52.809143-155.794286-112.64-48.566857-40.009143-61.44-131.072-38.546286-273.408z"></path>
</symbol>
<symbol id="icon-dianjing_jinbi" viewBox="0 0 1303 1024">
<path d="M109.009455 673.792c68.887273 75.217455 227.421091 129.954909 420.398545 129.954909 63.953455 0 124.090182-6.050909 178.455273-16.756364a97.652364 97.652364 0 0 0-15.546182 55.296c0 34.071273 18.338909 64.046545 49.338182 88.064a909.777455 909.777455 0 0 1-212.247273 23.831273C281.320727 954.181818 81.454545 858.391273 81.454545 749.009455c0-27.368727 6.888727-54.737455 27.55491-75.217455z m1097.728 127.441455l8.564363 16.570181a54.923636 54.923636 0 0 1 6.516364 24.482909c0 63.394909-109.009455 111.895273-244.363637 111.895273-85.643636 0-160.861091-20.945455-204.520727-51.479273l-13.963636-11.077818-8.564364-8.750545-5.771636-7.261091-4.189091-6.702546-2.978909-6.050909-1.489455-3.909818-2.141091-8.192a59.950545 59.950545 0 0 1 8.378182-42.449454l5.957818-7.074909 8.564364 8.378181 10.146909 8.285091 11.636364 7.819637 9.681454 5.678545 17.594182 8.657455 14.242909 5.957818 15.453091 5.399273 18.338909 5.492363 25.6 5.864727 6.144 1.210182c28.206545 5.213091 59.112727 8.098909 91.880727 8.098909 105.192727 0 191.767273-29.789091 229.28291-70.842181z m0-134.330182l8.564363 16.570182a54.923636 54.923636 0 0 1 6.516364 24.482909c0 63.394909-109.009455 111.895273-244.363637 111.895272l-27.275636-0.744727-20.945454-1.489454-21.41091-2.513455-21.410909-3.537455-19.083636-4.002909-19.921455-5.306181a321.722182 321.722182 0 0 1-31.185454-10.891637l-9.681455-4.189091-13.591272-6.609454-8.843637-5.026909c-32.023273-18.990545-51.013818-42.635636-51.013818-67.584 0-14.894545 3.723636-26.065455 15.080727-40.96 28.858182 31.464727 86.574545 56.32 159.371637 66.187636l14.242909 1.768727 25.041454 1.954909c9.960727 0.558545 20.200727 0.930909 30.626909 0.930909l20.759273-0.465454c95.883636-3.630545 173.521455-32.116364 208.523637-70.469818zM109.009455 427.473455c68.887273 75.310545 227.421091 129.954909 420.398545 129.954909 60.695273 0 117.853091-5.399273 169.984-15.080728a89.088 89.088 0 0 0-6.981818 35.002182c0 19.269818 5.213091 37.050182 15.080727 53.154909l8.192 11.822546-7.447273 10.612363c-8.378182 13.405091-13.218909 26.624-15.080727 41.239273a948.596364 948.596364 0 0 1-163.653818 13.777455C281.320727 707.956364 81.454545 612.072727 81.454545 502.690909c0-27.368727 6.888727-47.941818 27.55491-75.310545zM977.454545 465.454545l18.245819 0.279273c126.789818 4.189091 226.117818 51.106909 226.117818 111.709091 0 40.96-45.149091 78.289455-120.273455 96.907636-75.217455 18.618182-169.239273 18.618182-244.363636 0a331.124364 331.124364 0 0 1-34.536727-10.053818l-6.981819-2.606545a218.391273 218.391273 0 0 1-31.930181-15.080727l12.381091 6.609454-8.564364-4.468364-13.218909-8.098909-12.753455-9.681454-9.774545-9.495273-6.516364-8.005818-5.306182-8.843636-3.816727-8.936728-1.675636-5.864727a56.040727 56.040727 0 0 1-1.396364-12.474182l0.744727-8.471273 2.048-7.912727 3.258182-7.726545 3.816727-6.702546 5.12-6.981818 8.285091-9.029818 1.768728-1.675636c27.648-25.506909 75.589818-45.893818 134.237091-56.22691l25.320727-3.723636 25.320727-2.327273 14.894546-0.744727L977.454545 465.454545zM529.408 58.181818c248.180364 0 448.046545 88.901818 448.046545 205.172364 0 75.217455-82.664727 143.639273-220.625454 177.803636-127.906909 31.837091-285.602909 34.071273-417.885091 6.795637l-30.068364-6.795637C164.119273 406.993455 81.454545 338.571636 81.454545 263.447273 81.454545 153.972364 281.320727 58.181818 529.501091 58.181818z"></path>
</symbol>
<symbol id="icon-dianjing_1qiang" viewBox="0 0 1331 1024">
<path d="M1177.6 460.8v511.1808l-104.0384 0.8192V562.0736H972.8V460.8h204.8z m131.8912-409.6v157.2864h-82.432l-22.4256 157.2864-445.6448-0.1024v131.1744a26.2144 26.2144 0 0 1-26.2144 26.2144H514.9696L409.7024 890.0608h34.7136v52.4288H51.2V758.9888l41.5744-0.1024 59.5968-207.6672c15.36-90.3168 16.2816-153.3952 2.7648-189.44l-4.096-9.1136c-15.4624-29.696-42.9056-50.176-82.2272-61.3376L51.2 287.1296V129.8432C51.2 86.4256 86.4256 51.2 129.8432 51.2h1179.648z"></path>
</symbol>
<symbol id="icon-dianjing_5qiang" viewBox="0 0 1024 1024">
<path d="M921.6 51.2a51.2 51.2 0 0 1 51.2 51.2v609.28a51.2 51.2 0 0 1-27.2384 45.056L538.2144 973.0048a51.2 51.2 0 0 1-47.8208 0.1024L78.6432 756.736A51.2 51.2 0 0 1 51.2 711.4752V102.4A51.2 51.2 0 0 1 102.4 51.2h819.2zM679.0144 199.68H340.6848l-7.168 292.4544h249.4464v109.6704H340.6848v93.184h349.7984V398.9504H450.3552l2.8672-106.0864h225.792v-93.184z"></path>
</symbol>
<symbol id="icon-dianjing_5sha" viewBox="0 0 1024 1024">
<path d="M921.002667 562.688v87.893333H742.4v90.026667h180.736v266.496H654.506667v-87.893333h178.602666V830.634667H652.373333v-267.946667h268.629334zM712.277333 31.232L914.773333 31.829333l-0.512 201.557334-522.069333 488.362666 67.328 67.413334-8.533333 42.24-41.984 8.277333-126.293334-126.293333-134.826666 134.741333-42.069334-8.533333-8.362666-41.984 134.741333-134.826667-126.293333-126.293333 8.362666-42.069334 42.069334-8.448 67.413333 67.413334L712.277333 31.232z"></path>
</symbol>
<symbol id="icon-dianjing_10sha" viewBox="0 0 1109 1024">
<path d="M746.069333 557.482667v445.184l-91.733333 0.682666V645.717333H565.418667V557.482667h180.650666z m358.4-0.682667v445.866667H834.901333V556.8h269.568zM1015.466667 645.717333h-91.050667v268.8h91.050667v-268.8zM640.085333 31.829333L843.349333 32.426667l-0.512 202.24-523.776 489.813333 67.584 67.669333-8.533333 42.410667-42.154667 8.277333-126.72-126.72L74.069333 851.285333l-42.24-8.533333-8.448-42.154667 135.168-135.168L31.829333 538.709333l8.448-42.24 42.24-8.448 67.669334 67.498667L640 31.829333z"></path>
</symbol>
<symbol id="icon-dianjing_16qiang" viewBox="0 0 1433 1024">
<path d="M1024.512 512.8192v510.3616L920.2688 1024V613.888H819.2v-101.0688h205.312zM1432.064 512v101.0688h-204.5952v103.5264H1433.6v306.5856h-308.0192V512h306.3808zM1309.3888 51.2v157.2864h-82.432l-22.4256 157.2864-445.6448-0.1024v131.1744a26.2144 26.2144 0 0 1-26.2144 26.2144H514.9696L409.7024 890.0608h34.7136v52.4288H51.2V758.9888l41.5744-0.1024 59.5968-207.6672c15.36-90.3168 16.2816-153.3952 2.7648-189.44l-4.096-9.1136c-15.4624-29.696-42.9056-50.176-82.2272-61.3376L51.2 287.1296V129.8432C51.2 86.4256 86.4256 51.2 129.8432 51.2h1179.648z m21.504 768.2048h-103.5264v102.7072h103.424V819.4048z"></path>
</symbol>
<symbol id="icon-dianjing_baozha" viewBox="0 0 1024 1024">
<path d="M450.104889 822.044444l-135.793778 128.682667 32.654222-155.306667L52.906667 943.616l214.926222-211.854222-199.452445-120.035556 214.926223-22.983111-202.865778-183.580444 271.587555 52.906666-96.256-264.817777 194.275556 169.528888L512 17.635556l61.895111 345.201777 194.275556-169.528889-96.256 264.874667 271.587555-52.963555-202.865778 183.580444 214.926223 22.983111-199.452445 120.035556 214.926222 211.854222-294.001777-148.309333 32.654222 155.363555-135.793778-128.739555L512 934.684444l-61.895111-112.64z"></path>
</symbol>
<symbol id="icon-dianjing_10qiang" viewBox="0 0 1024 1024">
<path d="M921.6 51.2a51.2 51.2 0 0 1 51.2 51.2v609.28a51.2 51.2 0 0 1-27.2384 45.056L538.2144 973.0048a51.2 51.2 0 0 1-47.8208 0.1024L78.6432 756.736A51.2 51.2 0 0 1 51.2 711.4752V102.4A51.2 51.2 0 0 1 102.4 51.2h819.2zM385.1264 199.68H187.2896l-7.168 99.6352h83.1488V701.44h121.856v-501.76z m433.664 0h-336.896l-10.752 501.76h358.4l-10.752-501.76z m-112.5376 93.184l6.4512 315.392H587.9808l6.4512-315.392h111.8208z"></path>
</symbol>
<symbol id="icon-dianjing_duyao" viewBox="0 0 1024 1024">
<path d="M504.832 1.084235a439.898353 439.898353 0 0 0-441.524706 441.524706c0 279.792941 78.305882 309.368471 194.740706 297.200941 0 0 41.682824 236.363294 114.688 236.363294H645.722353c67.764706 0 114.688-236.363294 114.688-236.363294 114.748235 12.167529 194.680471-17.408 194.680471-297.261176 0-241.543529-199.860706-441.524706-450.198589-441.524706zM259.794824 595.546353C198.957176 576.391529 169.381647 499.892706 193.716706 421.647059c24.335059-78.245647 92.16-123.422118 152.997647-104.267294 60.837647 19.094588 90.352941 95.593412 66.017882 173.778823-22.588235 74.752-92.16 123.422118-152.997647 104.32753z m252.02447 112.941176c-48.670118 0-90.352941 102.580706-90.352941-5.180235v-17.408c12.107294-48.670118 53.850353-126.855529 85.112471-126.855529 36.502588 0 90.352941 90.352941 90.352941 133.842823 0 0 0 5.180235 5.24047 12.16753 0 102.520471-48.670118 3.433412-90.352941 3.433411z m248.530824-114.688c-60.837647 19.094588-128.602353-27.828706-152.997647-104.327529-24.274824-78.185412 6.987294-154.684235 66.078117-173.778824 60.837647-19.154824 128.662588 27.768471 152.997647 104.267295 24.335059 78.245647-5.240471 154.684235-66.078117 173.839058z"></path>
</symbol>
<symbol id="icon-dianjing_jishi" viewBox="0 0 1024 1024">
<path d="M512 164.080941A411.286588 411.286588 0 1 1 512 986.654118 411.286588 411.286588 0 0 1 512 164.080941z m0 56.079059a355.207529 355.207529 0 1 0 0 710.354824A355.207529 355.207529 0 0 0 512 220.16z m18.672941 37.948235a317.801412 317.801412 0 1 1-50.838588 1.084236l13.492706-1.084236v284.912941a37.345882 37.345882 0 1 0 41.923765 3.011765l-4.517648-3.011765-0.060235-284.912941z m287.503059-81.438117l92.521412 92.521411-52.886588 52.826353-92.521412-92.521411 52.886588-52.826353z m-612.352 0l52.886588 52.826353-92.521412 92.521411L113.242353 269.251765l92.521412-92.521412zM661.564235 14.456471v130.891294H362.435765V14.456471h299.12847z"></path>
</symbol>
<symbol id="icon-dianjing_chaidan" viewBox="0 0 1024 1024">
<path d="M120.826242 15.419182c7.933521 3.96676 15.867042 5.950141 21.881162 9.98088 35.700843 25.783943 69.482287 57.582006 105.18313 81.382568 34.805123 24.312402 63.468166 53.231365 86.053109 89.316089l9.277101 15.931022c9.916901 19.833802 27.831303 29.750703 45.681724 37.748203 46.705405 21.945142 94.434489 22.073102 142.419494 19.385942l47.985005-2.8791 33.973383-1.2796 53.999125-2.49522c54.063105-2.04736 108.190191-1.02368 160.397876 20.985442 25.847923 9.916901 53.615245 23.800562 77.415807 41.714964 35.828803 23.800562 67.562887 51.631865 101.34433 77.415807 15.867042 11.900281 19.833802 33.781443 11.900281 51.631865-7.933521 17.914402-31.798063 29.814683-47.665104 19.833802a651.956264 651.956264 0 0 1-61.548766-39.667604c-59.565386-39.731584-123.097532-73.513027-192.579819-75.496407-35.828803-1.2796-71.529647 1.79144-107.23049 5.758201l-53.615246 6.20606-23.800562 2.30328c-35.700843 3.45492-71.145767 5.246361-105.24711-14.267541-14.587441-9.213121-23.032802-3.5189-29.302843 5.438301l-4.478601 7.16576-3.96676 7.293721c-3.96676 5.950141 0 21.817182 3.96676 29.750703l48.240925 68.138707 25.208123 35.125023c-7.933521-1.98338-15.867042-5.950141-27.767323-7.933521 2.94308 22.329022 8.189441 43.506404 11.452421 65.323587l2.43124 22.009122c9.916901 101.28035 37.748204 194.627179 101.28035 270.059606 11.900281 13.883661 24.824242 26.807623 37.940144 39.219744l39.475664 36.212683 7.74158 8.061481c7.357701 8.189441 12.923961 17.210622 11.516402 29.302843l-1.407561 6.398001c-3.96676 19.833802-9.916901 39.667604-31.734083 43.634364-7.933521 0-15.867042 0-21.881162-1.98338-133.014433-87.396689-218.363761-210.494221-234.294783-389.190378l-4.4786-52.271665a545.941393 545.941393 0 0 0-11.388441-76.776008c-2.62318-14.587441-10.556701-29.110903-19.130022-43.122524l-12.604061-20.473602-11.900282-18.426242c-17.850422-27.511403-37.044424-53.167385-69.546266-62.956326-26.807623-7.421681-47.985005-23.800562-68.650547-42.418744l-60.972946-56.302406L19.545892 186.181818c-2.36726-1.53552-3.8388-4.4786-4.926461-7.805561l-3.00706-10.876601a33.653483 33.653483 0 0 0-1.9194-5.1184c7.869541 0 15.867042-1.98338 19.833802 0 55.598625 21.817182 109.213871 45.681724 164.748516 71.465667a36.468604 36.468604 0 0 1 12.604061 13.563761l7.293721 12.284161c3.96676 5.950141 7.933521 15.867042 11.900281 15.867042 5.950141 0 15.867042-3.96676 19.833802-9.916901 7.485661-10.428741 12.668041-22.009122 18.170322-32.949703l5.69422-10.748641a12.732021 12.732021 0 0 0 2.431241-8.573321l-0.44786-3.32696c-18.554202 6.589941-29.110903-0.89572-38.260044-11.900282l-6.653921-8.829241-6.717901-9.08516L128.759763 43.250484a216.700281 216.700281 0 0 1-11.900282-21.881162c0-1.9194 1.98338-3.96676 3.966761-5.95014z m329.624992 434.872102l29.686723 18.362262c4.73452 3.00706 9.341081 6.142081 14.011621 9.405061-1.98338 1.98338-3.96676 3.96676-3.96676 7.9975l-29.750703-18.426241a332.823993 332.823993 0 0 1-13.947641-9.405061c1.9194-1.98338 1.9194-5.950141 3.96676-7.933521z m13.883661-23.800562l47.665105 19.833802c0 1.9194-1.98338 3.96676-1.98338 7.93352l-49.648485-17.914401c1.98338-3.90278 1.98338-7.869541 3.96676-9.852921z m15.867042-25.847923c15.931022 1.98338 33.781443 5.950141 49.648485 7.933521v9.916901l-49.648485-5.950141v-11.900281z"></path>
</symbol>
<symbol id="icon-dianjing_fangyuta" viewBox="0 0 1024 1024">
<path d="M864.597333 64h-157.866666v133.717333H580.949333V64H422.912v133.717333h-126.293333V64H138.666667v313.770667h94.72v429.226666H154.624v178.261334h694.869333v-178.346667h-78.933333V377.770667h94.72v-180.053334h-0.597333z"></path>
</symbol>
<symbol id="icon-Cricket_ball_2" viewBox="0 0 1024 1024">
<path d="M807.84 15.812a61.44 61.44 0 0 0-86.819 4.535l-500.29 555.732a61.44 61.44 0 0 0-15.58 47.323l7.168 70.435a61.44 61.44 0 0 1-15.433 47.323L40.582 914.726a15.36 15.36 0 0 0 1.17 21.723l9.509 8.558 19.821 17.846 9.509 8.631a15.36 15.36 0 0 0 21.796-1.17L258.618 796.82a61.44 61.44 0 0 1 45.494-20.406l70.729-0.22a61.44 61.44 0 0 0 45.494-20.333l500.364-555.733a61.44 61.44 0 0 0-4.535-86.819l-108.25-97.498z" fill="#999999"></path>
</symbol>
<symbol id="icon-Cricket_ball_3" viewBox="0 0 1024 1024">
<path d="M38.77 316.814A511.906 511.906 0 0 0 707.186 985.23L38.77 316.814z m169.407-216.698a515.898 515.898 0 0 0-122.526 128.36L795.524 938.35a514.26 514.26 0 0 0 128.462-122.526L208.177 100.116z m665.755 49.952a512.009 512.009 0 0 0-581.41-100.62l682.133 681.927a512.009 512.009 0 0 0-100.62-581.307z" fill="#999999"></path>
</symbol>
<symbol id="icon-AMfootball" viewBox="0 0 1024 1024">
<path d="M695.346875 356.91874999L895.90625001 557.478125a563.625 563.625 0 0 1-130.02187501 208.40625A563.625 563.625 0 0 1 557.309375 895.90625001L356.834375 695.346875l42.27187501-42.271875 56.53124999 56.3625a19.9125 19.9125 0 0 0 31.3875-23.9625l-3.20625001-4.21875001-56.53124999-56.3625L512 540.265625l56.446875 56.3625a19.9125 19.9125 0 0 0 31.3875-23.9625l-3.20625-4.21875L540.096875 512l84.7125-84.628125 56.44687501 56.44687501a19.9125 19.9125 0 0 0 31.47187499-23.9625l-3.290625-4.21875001-56.446875-56.446875 42.35625-42.27187501z m233.465625 64.12500002L779.975 272.290625 891.35 160.746875c35.015625 50.625 51.6375 149.68125001 37.4625 260.29687499zM272.121875 780.059375L420.959375 928.8125c-110.53125001 14.175-209.5875-2.446875-260.2125-37.378125l111.375-111.375zM95.1875 603.125l148.753125 148.8375-111.375 111.375C97.71874999 812.88125001 81.096875 713.65625001 95.1875 603.125zM602.95625001 95.1875C713.65625001 81.0125 812.796875 97.71874999 863.3375 132.65l-111.628125 111.375L602.95625001 95.1875zM258.115625 258.115625A563.625 563.625 0 0 1 466.521875 128.09374999l200.55937501 200.47500002-42.27187501 42.35624999-56.3625-56.3625a19.9125 19.9125 0 0 0-31.471875 23.9625l3.20624999 4.21874999 56.3625 56.3625L512 483.734375l-56.3625-56.3625a19.9125 19.9125 0 0 0-31.3875 23.9625l3.20625001 4.21875 56.3625 56.3625-84.62812501 84.62812499-56.3625-56.36249998a19.9125 19.9125 0 0 0-31.47187501 23.9625l3.29062501 4.21874999 56.3625 56.446875-42.35625 42.27187501L128.09374999 466.690625A563.625 563.625 0 0 1 258.115625 258.03124999z" fill="#B34134"></path>
</symbol>
<symbol id="icon-baseball_ball_1" viewBox="0 0 1024 1024">
<path d="M793.97692315 62.83076943a157.84615372 157.84615372 0 0 1 99.55384628 31.91538428l9.9 8.58461572 7.13076943 7.26923057c49.70769258 54.55384629 52.61538428 141.99230742 3.46153799 200.28461573l-8.16923057 9-185.67692313 186.09230742c-74.90769258 73.38461573-133.26923057 118.8-203.19230742 162.41538427l-76.63846202 46.38461573-21.46153798 13.91538427-16.89230831 11.83846201-34.40769169 27.69230742-7.26923145 6.8538463-18.34615371 18.20769257-39.04615372 40.15384542-22.01538427 23.33076943-0.06923145 3.11538515a83.49230742 83.49230742 0 0 1-12.2538454 38.35384542l-6.02307687 8.51538515-5.88461571 6.57692314a85.29230742 85.29230742 0 0 1-112.01538429 7.89230742l-7.26923144-6.23076943-48.18461484-45.96923057a83.97692315 83.97692315 0 0 1 48.32307685-144.06923056l6.71538428-0.55384629 25.89230742-24.92307685 19.17692315-19.10769258 31.43076943-31.98461485 7.26923057-8.03076943 3.80769257-3.6 28.38461573-33.92307686 19.59230742-26.1L300.63846113 546.61538427l42.50769259-63.48461484a1350.13846113 1350.13846113 0 0 1 155.35384628-188.51538515l20.63076943-20.97692315L685.63076943 106.58461572c27.96923057-28.17692315 67.43076943-43.2 108.34615372-43.75384629zM474.47692315 479.32307685l-12.11538429 15.71538429c-10.45384628 13.98461572-20.7 28.24615372-30.94615459 43.13076943l-60.23076855 89.23846201-11.56153887 15.92307685 12.66923057-8.30769258 12.66923144-8.1 13.70769171-8.4461537 63-37.93846201c24.50769258-15.3 47.42307685-30.80769258 70.2-47.90769171a121.56923057 121.56923057 0 0 1-51.50769171-43.54615371l-5.88461571-9.76153887z m320.95384628-312.6461537a57.11538427 57.11538427 0 0 0-30.87692315 8.79230742l-5.33076943 4.36153886-185.88461572 186.8538463c-28.73076943 29.63076943-52.75384629 56.14615372-74.49230742 82.17692313 9.69230742 29.49230742 34.82307685 52.06153887 65.76923057 58.08461485 25.96153887-21.32307685 52.82307685-45.69230742 82.79999999-75.04615371l18.34615459-18.27692315 166.5-167.05384628a49.98461572 49.98461572 0 0 0 4.36153799-62.58461484l-4.8461537-5.53846202-5.26153888-4.08461485a57.94615371 57.94615371 0 0 0-31.15384541-7.68461571z" fill="#C9A585"></path>
</symbol>
<symbol id="icon-baseball_ball_2" viewBox="0 0 1024 1024">
<path d="M504.15999969 66.32a437.92000031 437.92000031 0 1 1 0 875.76 437.92000031 437.92000031 0 0 1 0-875.76z m0 120c-66.88000031 0-129.04000031 20.64-180.24 55.99999969 6.96 9.84 13.44 20.16 19.52000062 30.96l36.24-19.2 18.96 35.68000031-36.80000062 19.51999969c9.6 21.12 17.76 43.44 24.32000062 66.64000031l34.08-10.39999969 11.91999938 38.55999938-36.39999938 11.20000031c5.04 25.36000031 8.32000031 51.6 9.6 78.48l33.51999938-3.04000031 3.76000031 40.24000031-36.79999969 3.43999969-0.08000062 5.28c-0.88000031 25.12000031-3.43999969 49.68-7.68 73.60000031l34.56 3.84-4.56 40.24000031-38.55999938-4.32a487.2 487.2 0 0 1-22.56 67.2l36.39999938 11.28-12 38.64-41.91999938-13.04000062-10.56 18.64000031c48.16000031 29.35999969 104.80000031 46.32 165.27999938 46.32 60.55999969 0 117.12-16.96000031 165.28000031-46.32a361.2 361.2 0 0 1-10.56-18.64000031l-41.83999969 13.04000062-12-38.64 36.39999938-11.28a487.2 487.2 0 0 1-22.63999969-67.2l-38.47999969 4.32-4.56-40.24000031 34.47999938-3.84c-5.20000031-29.83999969-7.99999969-60.79999969-7.99999969-92.64l0.24 13.75999969-36.79999969-3.43999969 3.84-40.24000031 33.43999969 3.04000031c1.27999969-26.88 4.56-53.11999969 9.67999969-78.40000031l-36.39999938-11.19999938 11.91999938-38.72000062 34.00000031 10.48000031c6.64000031-23.20000031 14.88-45.6 24.48-66.72l-36.88000031-19.44 18.96-35.76 36.16000031 19.2c6.07999969-10.63999969 12.55999969-21.04000031 19.44-30.96a315.84 315.84 0 0 0-180.16000031-55.99999969zM270.24000031 288.96000031l-6 6.63999938a316.63999969 316.63999969 0 0 0-77.92000031 208.56c0 73.75999969 25.12000031 141.67999969 67.2 195.6l4.32-13.59999938 41.28 12.79999969c7.60000031-17.04 14.08000031-35.20000031 19.36000031-54l-33.20000062-3.84 4.48000031-40.15999969 37.92 4.32c3.84-20.71999969 6.31999969-42.16000031 7.2-64.24000031l-32.32000031 2.95999969-3.75999938-40.23999938 36.15999938-3.36a463.92 463.92 0 0 0-7.2-64.24000031l-33.03999938 10.15999969-11.84000062-38.55999938 35.76-11.04a409.60000031 409.60000031 0 0 0-19.44-54.24l-35.19999938 18.72-18.96-35.68000031 35.91999938-19.2a347.76 347.76 0 0 0-10.71999938-17.35999969z m467.91999938 0l-10.71999938 17.35999969 35.91999938 19.2-18.96 35.68000031-35.19999938-18.72a409.60000031 409.60000031 0 0 0-19.44 54.24l35.76 11.04-11.92000031 38.55999938-32.95999969-10.15999969a463.92 463.92 0 0 0-7.2 64.24000031l36.15999938 3.36-3.75999938 40.23999938-32.4-2.95999969c0.96 22.08 3.36 43.51999969 7.2 64.24000031l37.92-4.32 4.56 40.15999969-33.28000031 3.84c5.35999969 18.88000031 11.83999969 36.96 19.36000031 54.07999969l41.35999969-12.87999938 4.32 13.59999938c42.07999969-54 67.2-121.84000031 67.2-195.6a316.8 316.8 0 0 0-84-215.19999938z" fill="#C9A585"></path>
</symbol>
<symbol id="icon-tabletennis_ball" viewBox="0 0 1024 1024">
<path d="M660.224 182.357333c34.133333 34.133333 61.525333 72.021333 82.090667 111.786667L307.456 729.002667a450.56 450.56 0 0 1-111.786667-82.090667C44.032 495.274667 25.088 268.373333 153.429333 140.032 281.6 11.861333 508.586667 30.72 660.309333 182.442667z" fill="#D26965"></path>
<path d="M770.304 362.666667c30.037333 97.194667 21.162667 198.4-28.672 277.504l158.72 141.653333a42.666667 42.666667 0 0 1 3.413333 60.16l-58.538666 58.624a42.666667 42.666667 0 0 1-54.357334 4.864l-6.826666-5.802667-145.237334-162.730666c-76.8 42.154667-171.52 48.298667-262.826666 20.053333L770.304 362.666667z" fill="#CBB292"></path>
</symbol>
<symbol id="icon-sport_volleyball" viewBox="0 0 1024 1024">
<path d="M823.301451 585.658307c64.094773 18.429807 122.865379 51.398684 171.704367 96.449322a512.348631 512.348631 0 0 1-557.399269 336.446363 561.699558 561.699558 0 0 0 163.718117-117.336437A1102.716777 1102.716777 0 0 0 823.199063 585.658307z m-297.231829-48.122274a1017.22295 1017.22295 0 0 1 247.778514 32.456938A1047.427356 1047.427356 0 0 1 566.205646 863.334063c-76.995638 74.128779-154.196051 119.793745-220.33858 133.104161a513.372509 513.372509 0 0 1-182.557476-109.554963A543.576914 543.576914 0 0 0 354.365255 758.693715 1062.171202 1062.171202 0 0 0 526.069622 537.536033zM130.545489 394.70503c32.764101 125.425074 87.336807 244.194941 161.26081 350.678269a428.083458 428.083458 0 0 1-168.120793 100.34006A510.096099 510.096099 0 0 1 0.001024 511.939079c0-119.99852 41.364678-230.372586 110.578841-317.709392a570.300134 570.300134 0 0 0 19.965624 200.475343z m246.857024-142.933391c23.037259 90.817993 57.951504 178.1548 103.821245 259.757889a1022.547117 1022.547117 0 0 1-150.714864 197.710872 1047.529744 1047.529744 0 0 1-149.895763-327.538623c-25.289791-101.875877-26.72322-190.543725-6.450432-254.53611A511.734304 511.734304 0 0 1 362.965831 22.01338a542.655424 542.655424 0 0 0 14.436682 229.758259z m413.032449 36.654838c99.82812 29.385303 177.950024 73.719227 223.819766 124.401197a510.812813 510.812813 0 0 1-3.071635 212.966656 542.143485 542.143485 0 0 0-206.516224-100.954386 1060.225833 1060.225833 0 0 0-276.447103-39.214533c-41.057514-72.388186-73.104901-149.486211-95.527832-229.655871a1010.158191 1010.158191 0 0 1 357.743028 32.456937zM511.940103 0a512.143855 512.143855 0 0 1 476.103344 323.545498 562.416272 562.416272 0 0 0-183.683742-84.162785 1066.164326 1066.164326 0 0 0-384.159085-33.583203C405.149611 130.646853 403.613794 63.173282 415.695556 9.010128 446.821452 3.071634 479.176002 0 511.940103 0z" fill="#4D8AE5"></path>
</symbol>
<symbol id="icon-badminton_ball" viewBox="0 0 1102 1024">
<path d="M988.553846 929.083077a170.692923 170.692923 0 0 0 0-241.348923l-47.340308-45.528616L699.549538 72.940308a36.076308 36.076308 0 0 0-16.856615-18.116923l-5.907692-2.363077c-58.919385-17.801846-112.718769-4.568615-155.963077 38.596923-32.295385 32.295385-49.703385 75.854769-53.011692 129.339077l-0.393847 8.585846-6.459077-0.157539c-47.182769 1.024-88.064 15.753846-121.462153 44.347077l-10.870154 10.082462a165.888 165.888 0 0 0-50.254769 119.808l0.315076 13.233231-8.349538 0.472615c-48.836923 4.332308-88.379077 18.510769-117.996308 43.559385l-9.452307 8.664615c-43.008 43.008-47.812923 104.999385-19.377231 180.066462a36.076308 36.076308 0 0 0 20.873846 20.952615L703.409231 883.790769l43.716923 45.292308a170.692923 170.692923 0 0 0 241.348923 0zM572.888615 345.245538l-40.408615-54.429538a35.84 35.84 0 0 0 7.955692-25.915077c-4.883692-57.501538 6.144-97.516308 31.428923-122.88 18.904615-18.825846 38.833231-26.860308 62.54277-24.733538l5.750153 0.94523 47.576616 112.246154-114.845539 114.766769zM699.470769 515.780923L601.954462 384.393846 708.135385 278.212923l68.214153 160.689231-76.878769 76.878769z m-277.031384-20.007385l-65.772308-47.655384-0.787692-5.356308c-10.791385-41.668923-5.356308-73.728 16.068923-99.879384l7.719384-8.585847c25.048615-24.969846 57.816615-36.076308 100.903385-32.768l57.974154 78.139077-116.105846 116.105846z m172.110769 125.00677L461.902769 524.445538l105.708308-105.708307 97.516308 131.387077-70.577231 70.656z m247.965538 87.670154l-113.979077-153.6 68.056616-68.135385 79.793231 187.785846-33.87077 33.870769z m-567.138461-65.536l-89.560616-34.264616-2.678153-9.216c-9.137231-33.870769-6.380308-57.737846 6.222769-74.121846l4.568615-5.198769c23.079385-23.158154 64.354462-34.658462 125.479385-32.295385a36.391385 36.391385 0 0 0 8.979692-0.787692l59.549539 43.244308-112.561231 112.64z m214.882461 82.156307L324.608 661.661538l102.793846-102.715076 132.568616 96.256-69.71077 69.789538z m298.614154 37.021539l-155.017846-112.64 60.258462-60.179693 113.900307 153.6-19.140923 19.219693z m-55.768615 55.768615l-193.614769-74.043077 59.864615-59.864615 155.017846 112.64-21.267692 21.267692z m69.710769 55.532308a49.939692 49.939692 0 0 1-9.688615-13.469539l126.030769-126.188307c4.962462 2.363077 9.452308 5.513846 13.627077 9.688615a91.923692 91.923692 0 1 1-129.969231 129.969231z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-handball_ball" viewBox="0 0 1024 1024">
<path d="M512 0a512 512 0 1 1 0 1024A512 512 0 0 1 512 0z m-43.52 854.698667l-124.672 9.813333 4.181333 52.138667a435.285333 435.285333 0 0 0 209.066667 29.610666l6.570667-41.386666-95.146667-50.176z m316.928-40.362667l-168.533333 82.432-6.485334 40.618667a435.797333 435.797333 0 0 0 207.36-113.834667l-32.341333-9.216z m-592.810667-47.530667l-25.856 12.373334c34.816 44.970667 78.250667 82.944 127.829334 111.445333l-3.413334-42.837333-98.56-80.981334z m481.877334-141.141333l-151.04 87.04-14.933334 105.130667 73.557334 38.912 178.346666-87.125334 20.48-104.106666-106.410666-39.850667z m-381.525334-39.765333L221.866667 615.253333v109.312l108.970666 89.6 127.829334-10.24 8.704-60.928-174.506667-157.184z m607.829334-39.082667L834.56 658.517333l-21.845333 110.250667 43.093333 12.288a434.432 434.432 0 0 0 88.661333-208.896l-43.690666-25.344z m-780.970667-31.317333l-43.946667 15.018666c3.072 75.093333 25.173333 145.237333 61.610667 205.909334L170.666667 720.554667V605.098667l-50.944-89.6zM411.989333 383.146667L335.36 555.264l140.117333 126.122667 163.242667-94.208-39.168-184.405334-187.562667-19.712z m317.013334-97.621334l-81.749334 95.744 41.557334 195.242667 110.336 41.301333 64.938666-109.482666-43.946666-163.84-91.136-58.965334z m-416.597334-3.413333l-106.325333 46.677333-46.677333 152.661334 48.042666 84.565333 82.346667-34.133333 78.506667-176.64-55.893334-73.130667z m594.944 44.629333l-34.645333 15.872 40.96 152.576 34.901333 20.138667V512c0-66.304-14.762667-129.109333-41.216-185.344zM76.885333 476.245333l34.133334-11.776 43.776-143.274666-21.077334-27.136A433.834667 433.834667 0 0 0 76.8 476.16z m348.330667-304.469333l-72.533333 78.762667 62.293333 81.408 189.952 19.968 82.346667-96.512-51.712-63.658667-210.346667-19.968z m264.533333-58.624l-20.138666 39.509333 63.488 77.909334 1.536-2.389334 109.824 70.997334 38.4-17.578667a438.357333 438.357333 0 0 0-193.024-168.448zM163.669333 249.002667l24.490667 31.658666 112.981333-49.493333 83.456-91.050667-19.968-39.168a437.589333 437.589333 0 0 0-200.96 148.053334zM512 75.434667c-33.536 0-66.133333 3.754667-97.450667 10.922666l17.749334 34.645334 186.88 17.92 22.442666-43.946667C600.661333 82.261333 557.141333 75.434667 512 75.434667z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-AMfootball_TD" viewBox="0 0 1024 1024">
<path d="M210.341148 213.638361c222.518627-222.912465 580.675156-279.231338 728.049439-131.69952 147.453051 147.689354 92.945833 504.27053-129.257723 726.789157-222.203556 222.518627-578.233358 277.262147-725.843945 129.494025-147.768122-148.083192-94.836257-502.380106 127.052229-724.583662zM99.908895 616.219848c-18.904237 107.596617-2.756868 204.402066 48.993481 256.309951 51.356511 51.435279 147.768122 67.267578 255.128436 48.36334L99.908895 616.219848z m435.900205-495.369785a660.781861 660.781861 0 0 0-259.933263 158.480523 649.675622 649.675622 0 0 0-155.172281 254.183224l365.954527 366.584668a654.480449 654.480449 0 0 0 256.782557-156.983937 655.898267 655.898267 0 0 0 156.747634-257.255163L535.887867 120.850063z m26.781003 182.110819l51.592814 51.829118 25.914559-25.993327a36.548192 36.548192 0 0 1 51.671582 51.829118l-25.835791 25.914558 51.671582 51.75035a36.62696 36.62696 0 1 1-51.671582 51.750349l-51.75035-51.750349-51.671582 51.750349 51.671582 51.829118a36.62696 36.62696 0 1 1-51.671582 51.750349l-51.671582-51.750349-51.671582 51.750349 51.671582 51.75035a36.62696 36.62696 0 1 1-51.671582 51.750349l-51.750349-51.750349-25.835791 25.993326a36.548192 36.548192 0 1 1-51.671582-51.829117l25.835791-25.993326-51.671582-51.671582a36.62696 36.62696 0 1 1 51.671582-51.829118l51.671582 51.829118 51.750349-51.829118-51.750349-51.750349a36.62696 36.62696 0 1 1 51.750349-51.75035l51.671582 51.75035 51.671582-51.75035-51.671582-51.750349a36.62696 36.62696 0 0 1 51.671582-51.829118z m55.925035-202.90548l302.467797 303.01917c18.904237-107.51785 3.150706-204.008228-48.205805-255.443506-50.962673-50.962673-147.059213-66.479901-254.34076-47.575664z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-AMfootball_2-PTCONV" viewBox="0 0 1024 1024">
<path d="M161.806994 0c73.728 0 126.390857 46.226286 126.390857 121.124571 0 35.84-12.434286 57.051429-35.401142 84.626286L127.283566 351.670857h160.914285v56.466286a565.394286 565.394286 0 0 1 62.171429-74.166857c175.323429-175.689143 457.654857-220.086857 573.805714-103.862857 116.297143 116.516571 73.216 397.531429-101.888 572.928-175.104 175.323429-455.68 218.404571-571.977143 102.034285-98.816-98.962286-83.894857-314.88 29.622858-484.937143H34.830994v-68.461714l155.648-180.809143c15.213714-18.139429 21.650286-31.012571 21.650286-50.322285 0-31.012571-18.139429-52.077714-50.322286-52.077715-23.259429 0-46.957714 10.971429-50.468571 44.397715l-0.438857 8.850285H34.830994C34.830994 45.641143 90.419566 0 161.806994 0z m101.522286 651.264c-14.921143 84.845714-2.194286 161.060571 38.619429 202.020571 40.448 40.521143 116.443429 52.955429 201.069714 38.034286L263.32928 651.337143zM606.808137 260.827429a520.777143 520.777143 0 0 0-204.8 124.928 512 512 0 0 0-122.441143 200.338285l288.475429 288.914286a515.803429 515.803429 0 0 0 202.459428-123.757714 516.973714 516.973714 0 0 0 123.538286-202.752L606.808137 260.827429zM628.019566 404.48l40.740571 40.740571 20.406857-20.406857a28.745143 28.745143 0 0 1 40.740572 40.813715l-20.48 20.48 40.813714 40.740571a28.891429 28.891429 0 1 1-40.740571 40.813714l-40.740572-40.813714-40.740571 40.813714 40.740571 40.813715a28.891429 28.891429 0 1 1-40.740571 40.813714l-40.740572-40.813714-40.740571 40.813714 40.740571 40.813714a28.891429 28.891429 0 1 1-40.740571 40.740572l-40.740572-40.740572-20.406857 20.406857a28.745143 28.745143 0 1 1-40.740571-40.813714l20.406857-20.48-40.740571-40.740571a28.891429 28.891429 0 1 1 40.740571-40.813715l40.740571 40.813715 40.740572-40.813715-40.740572-40.813714a28.891429 28.891429 0 1 1 40.740572-40.813714l40.740571 40.813714 40.740572-40.813714-40.740572-40.813715a28.891429 28.891429 0 0 1 40.740572-40.740571z m44.105143-159.963429l238.445714 238.811429c14.848-84.699429 2.413714-160.841143-38.034286-201.362286-40.155429-40.155429-115.931429-52.297143-200.411428-37.449143z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-AMfootball_FG" viewBox="0 0 1024 1024">
<path d="M102.4 49.664v605.110857l819.2-0.073143V49.664H1024v705.901714H563.2v214.893715H460.8V755.565714H0V49.737143h102.4z m645.705143-4.461714c81.334857 81.481143 51.2 278.235429-71.314286 400.969143-122.587429 122.806857-319.049143 152.868571-400.457143 71.460571-81.554286-81.700571-52.370286-277.211429 70.070857-399.798857 122.733714-122.88 320.365714-154.038857 401.700572-72.630857z m-462.628572 294.765714c-10.386286 59.318857-1.462857 112.786286 27.062858 141.385143 28.306286 28.379429 81.554286 37.083429 140.726857 26.697143L285.476571 339.968zM525.970286 66.706286c-53.906286 17.554286-102.985143 47.542857-143.36 87.405714A358.4 358.4 0 0 0 296.96 294.326857l201.874286 202.24a361.033143 361.033143 0 0 0 141.750857-86.601143c39.424-39.936 69.046857-88.502857 86.454857-141.897143L525.970286 66.633143z m14.774857 100.425143l28.525714 28.525714 14.262857-14.262857a20.114286 20.114286 0 0 1 28.525715 28.525714l-14.262858 14.336 28.525715 28.525714a20.187429 20.187429 0 1 1-28.525715 28.598857l-28.525714-28.525714-28.525714 28.525714 28.525714 28.525715a20.187429 20.187429 0 1 1-28.525714 28.598857l-28.525714-28.525714-28.525715 28.525714 28.525715 28.525714a20.187429 20.187429 0 1 1-28.525715 28.598857l-28.525714-28.525714-14.262857 14.262857a20.114286 20.114286 0 1 1-28.525714-28.525714l14.262857-14.336-28.525715-28.525714a20.187429 20.187429 0 1 1 28.525715-28.525715l28.525714 28.525715 28.525714-28.525715-28.525714-28.598857a20.187429 20.187429 0 1 1 28.525714-28.525714l28.525715 28.525714 28.525714-28.525714-28.525714-28.598857a20.187429 20.187429 0 0 1 28.525714-28.525715z m30.866286-111.908572l166.912 167.131429c10.386286-59.245714 1.682286-112.64-26.624-140.946286-28.086857-28.086857-81.188571-36.571429-140.288-26.185143z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-AMfootball_PAT" viewBox="0 0 1102 1024">
<path d="M606.523077 760.201846v231.424H496.246154V760.201846H0V0h110.276923v651.657846l882.215385-0.078769V0H1102.769231v760.280615z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-AMfootball_Safaty" viewBox="0 0 1024 1024">
<path d="M541.988571 245.76a366.153143 366.153143 0 0 1 227.693715 75.849143 373.028571 373.028571 0 0 1 132.534857 195.510857 62.683429 62.683429 0 0 1-51.565714 78.994286l-8.265143 0.512h-19.163429l12.653714 94.866285h120.393143c8.045714 0 15.798857 1.974857 22.674286 5.558858l6.656 4.169142 5.997714 5.193143a49.956571 49.956571 0 0 1 13.750857 27.794286l0.512 7.899429-1.609142 153.161142a50.176 50.176 0 0 1-42.276572 49.005715l-7.314286 0.585143h-98.304a49.737143 49.737143 0 0 1-47.689142-36.425143l-1.462858-7.314286-10.313142-77.824h-44.982858v9.801143c0 61.952-36.644571 116.955429-91.721142 140.873143l-11.264 4.388571-11.702858 3.510857a369.883429 369.883429 0 0 1-236.763428-18.578285 372.297143 372.297143 0 0 1-197.193143-201.874286 373.394286 373.394286 0 0 1-27.574857-147.236572 373.979429 373.979429 0 0 1 108.617143-259.657142A366.665143 366.665143 0 0 1 522.532571 246.491429l19.382858-0.731429z m0.512 79.140571l-17.334857 0.731429a288.182857 288.182857 0 0 0-185.051428 84.992 294.180571 294.180571 0 0 0-85.577143 204.580571 294.912 294.912 0 0 0 177.078857 275.163429c36.205714 15.652571 74.605714 23.625143 114.249143 23.625143 24.283429 0 48.347429-3.072 71.753143-8.996572a73.874286 73.874286 0 0 0 54.857143-63.488l0.438857-8.411428V579.291429c0-31.451429 23.478857-57.709714 53.833143-61.513143l7.68-0.512h84.626285l-5.632-14.482286a294.4 294.4 0 0 0-17.261714-34.011429l-10.24-16.091428a294.473143 294.473143 0 0 0-64.292571-68.022857 285.476571 285.476571 0 0 0-141.385143-57.709715l-19.309715-1.609142-18.432-0.438858z m25.6 425.545143a74.898286 74.898286 0 0 1 0 149.650286 74.898286 74.898286 0 0 1 0-149.650286z m380.708572 72.996572h-95.378286l8.630857 64.804571h86.089143l0.658286-64.804571z m-380.635429-32.182857a34.084571 34.084571 0 1 0 0 68.169142 34.084571 34.084571 0 0 0 0-68.242285z m381.44-43.154286H843.337143l2.486857 18.724571h103.570286l0.146285-18.651428z m-162.816 0h-34.889143v18.505143h37.302858l-2.413715-18.505143z m-20.187428-151.552h-14.701715v94.793143h27.355429l-12.653714-94.793143zM362.057143 0l77.531428 77.531429-362.057142 362.057142L0 362.057143 362.057143 0z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-fp" viewBox="0 0 1024 1024">
<path d="M808.96 429.397h-67.755V258.901A249.77 249.77 0 0 0 502.272 0a249.856 249.856 0 0 0-239.104 258.901v170.496h-67.584a61.44 61.44 0 0 0-59.05 63.83V960a61.44 61.44 0 0 0 59.05 64H808.96a61.44 61.44 0 0 0 59.05-64V493.227a61.44 61.44 0 0 0-59.135-63.83zM535.893 738.816v102.4a8.192 8.192 0 0 1-7.765 8.363h-51.2a8.192 8.192 0 0 1-7.765-8.363v-102.4A80.213 80.213 0 0 1 428.8 668.16a76.8 76.8 0 0 1 73.387-79.53 76.8 76.8 0 0 1 73.557 79.53 80.043 80.043 0 0 1-40.363 70.656h0.512z m113.664-309.419H355.072v-166.4a153.6 153.6 0 0 1 147.2-159.488 153.6 153.6 0 0 1 147.285 159.574v166.314z"></path>
</symbol>
<symbol id="icon-gamestart" viewBox="0 0 1024 1024">
<path d="M455.443692 425.668923v48.443077h80.777846v-48.443077H827.076923v80.777846l-214.961231 41.156923a161.595077 161.595077 0 0 1-309.090461 93.459693c-3.544615 1.181538-7.364923 1.969231-11.264 2.402461l-5.986462 0.315077h-32.295384a56.556308 56.556308 0 0 1-5.435077-112.836923l5.435077-0.275692h32.295384c6.065231 0 11.894154 0.945231 17.329231 2.717538a161.555692 161.555692 0 0 1 144.226462-107.52l0.039384-0.196923h8.073846z m-169.668923 137.334154h-32.295384a24.221538 24.221538 0 0 0-3.584 48.206769l3.544615 0.275692h32.334769c3.465846 0 6.695385-0.748308 9.688616-2.008615a163.052308 163.052308 0 0 1-0.07877-44.425846 22.843077 22.843077 0 0 0-9.609846-2.048z m110.434462-260.253539l32.295384 55.965539a20.204308 20.204308 0 1 1-34.973538 20.204308L361.235692 322.953846a20.204308 20.204308 0 0 1 34.973539-20.204308z m234.968615-7.404307c9.649231 5.592615 12.957538 17.92 7.364923 27.569231l-32.295384 56.004923a20.204308 20.204308 0 1 1-34.973539-20.204308l32.295385-55.965539a20.204308 20.204308 0 0 1 27.569231-7.404307zM499.869538 256c11.185231 0 20.204308 9.058462 20.204308 20.204308v64.590769a20.204308 20.204308 0 0 1-40.408615 0v-64.590769c0-11.145846 9.058462-20.204308 20.204307-20.204308z" fill="#0F80DA"></path>
<path d="M512 0c282.781538 0 512 229.218462 512 512s-229.218462 512-512 512S0 794.781538 0 512 229.218462 0 512 0z m0 118.153846C294.478769 118.153846 118.153846 294.478769 118.153846 512s176.324923 393.846154 393.846154 393.846154 393.846154-176.324923 393.846154-393.846154S729.521231 118.153846 512 118.153846z" fill="#000000" opacity=".05"></path>
</symbol>
<symbol id="icon-substitution1" viewBox="0 0 1024 1024">
<path d="M909.71428531 217.14285687L635.42857156 32v109.71428531H423.54285687A266.05714312 266.05714312 0 0 0 169.14285688 416 290.05714313 290.05714313 0 0 0 218.51428531 580.57142844l23.31428625 33.6 28.8-29.48571375 27.42857157-27.42857157 19.88571375-19.88571468L302.17142844 512a178.97142844 178.97142844 0 0 1-28.8-96 159.08571469 159.08571469 0 0 1 150.17142844-165.94285688H635.42857156V402.28571469z" fill="#009C5F"></path>
<path d="M812.34285688 448.22857156L786.28571469 420.11428531l-27.42857156 24-30.85714313 27.42857156-24 21.25714313 19.2 25.37142844a160.45714313 160.45714313 0 0 1 32.91428531 96.68571468A172.11428531 172.11428531 0 0 1 580.57142844 780.8H409.14285687V617.6l-274.28571375 187.2 274.28571376 187.2v-102.85714312H580.57142844a281.82857156 281.82857156 0 0 0 287.31428625-274.28571375 268.11428531 268.11428531 0 0 0-55.54285781-166.62857157z" fill="#E74C5B"></path>
</symbol>
<symbol id="icon-Hockey_goal" viewBox="0 0 1024 1024">
<path d="M315.904 915.968c54.272 54.345143 239.396571-18.139429 402.285714-180.955429 158.866286-158.939429 231.716571-339.017143 184.758857-398.116571l-3.803428-4.169143 60.342857-60.342857c101.302857 101.229714 11.629714 330.313143-180.955429 522.971429-188.635429 188.562286-412.233143 278.454857-516.461714 187.099428l-6.582857-6.144 60.416-60.342857z m-80.457143-663.698286C423.936 63.780571 647.314286-26.112 751.762286 65.024l6.582857 6.217143 201.142857 201.142857-60.342857 60.342857-102.692572-102.838857c-18.285714 108.909714-98.523429 243.712-219.062857 364.251429-120.539429 120.612571-255.414857 200.777143-364.251428 219.136l102.765714 102.692571-60.342857 60.342857-201.142857-201.142857-6.070857-6.436571C-43.154286 664.429714 46.811429 440.832 235.446857 252.269714z m60.342857 60.342857C132.900571 475.428571 60.489143 660.626286 114.761143 714.898286s239.396571-18.212571 402.285714-181.028572c162.816-162.889143 235.300571-348.013714 181.028572-402.285714s-239.469714 18.139429-402.285715 181.028571z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-Hockey_Miss" viewBox="0 0 1024 1024">
<path d="M751.762286 65.097143l6.582857 6.144 201.142857 201.142857c101.302857 101.229714 11.629714 330.313143-180.955429 522.971429-188.635429 188.562286-412.233143 278.454857-516.461714 187.099428l-6.582857-6.144-201.069714-201.142857C-46.811429 674.011429 42.861714 444.928 235.52 252.269714 423.936 63.853714 647.314286-26.038857 751.762286 65.097143z m44.690285 164.864c-18.285714 108.836571-98.523429 243.638857-219.062857 364.251428-120.612571 120.539429-255.414857 200.777143-364.251428 219.062858l102.765714 102.692571c54.272 54.345143 239.396571-18.139429 402.285714-180.955429 158.866286-158.939429 231.716571-339.017143 184.758857-398.116571l-3.803428-4.169143-102.692572-102.765714z m-500.662857 82.651428C132.900571 475.428571 60.489143 660.626286 114.761143 714.898286s239.396571-18.212571 402.285714-181.028572c162.816-162.889143 235.300571-348.013714 181.028572-402.285714s-239.469714 18.139429-402.285715 181.028571z" fill="#0F80DA"></path>
<path d="M637.44 728.868571a62.756571 62.756571 0 0 1-44.544-18.358857L499.492571 617.106286 406.162286 710.436571a62.537143 62.537143 0 0 1-44.544 18.432 62.464 62.464 0 0 1-44.470857-18.432 62.610286 62.610286 0 0 1 0-89.088l93.330285-93.330285-93.330285-93.403429a62.390857 62.390857 0 0 1-18.505143-44.544c0-16.822857 6.582857-32.548571 18.505143-44.544a62.756571 62.756571 0 0 1 89.014857 0L499.565714 438.930286l93.403429-93.403429a62.537143 62.537143 0 0 1 44.470857-18.432 62.756571 62.756571 0 0 1 44.544 107.52L588.580571 528.091429l93.403429 93.330285a62.756571 62.756571 0 0 1 0 89.088 62.756571 62.756571 0 0 1-44.544 18.432" fill="#E43434"></path>
<path d="M582.948571 720.530286l-83.456-83.382857-83.309714 83.382857a76.8 76.8 0 0 1-54.564571 22.528c-20.553143 0-39.936-8.045714-54.564572-22.528-14.555429-14.628571-22.674286-33.938286-22.674285-54.564572s8.045714-40.082286 22.674285-54.637714l83.382857-83.309714-83.382857-83.382857a76.946286 76.946286 0 0 1 54.491429-131.803429c20.699429 0 40.082286 8.045714 54.637714 22.674286l83.382857 83.309714 83.382857-83.382857c14.482286-14.555429 33.865143-22.528 54.491429-22.528s40.009143 8.045714 54.564571 22.601143c14.628571 14.628571 22.674286 34.011429 22.674286 54.637714s-8.118857 40.009143-22.674286 54.491429L608.694857 528.091429l83.309714 83.309714c14.628571 14.628571 22.674286 33.938286 22.674286 54.637714 0 20.553143-8.045714 39.936-22.674286 54.564572-14.628571 14.555429-33.938286 22.528-54.564571 22.528a76.8 76.8 0 0 1-54.564571-22.528z m88.941715-20.114286a48.713143 48.713143 0 0 0 0-68.973714L568.466286 528.091429l103.424-103.497143a48.64 48.64 0 1 0-68.900572-68.900572L499.565714 459.044571 396.141714 355.620571a48.566857 48.566857 0 0 0-68.973714 0 48.713143 48.713143 0 0 0 0 68.973715l103.424 103.424-103.424 103.424a48.64 48.64 0 1 0 68.973714 68.900571l103.350857-103.424 103.497143 103.497143a48.713143 48.713143 0 0 0 68.973715 0z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-iconwangqiu" viewBox="0 0 1024 1024">
<path d="M512 85.2992c51.2 0 100.352 9.0112 145.7152 25.6-32.1536 77.2096-101.5808 126.976-211.968 150.2208-224.256 47.4112-243.5072 347.8528-41.472 446.2592 85.8112 41.7792 166.1952 38.912 237.4656 1.536 47.616-25.088 83.5584-60.0064 114.5856-101.376 48.64-64.9216 108.6464-106.7008 182.0672-103.424L938.7008 512A426.7008 426.7008 0 1 1 512 85.2992z m207.872 53.9648a427.2128 427.2128 0 0 1 211.8656 295.5264c-93.7984-1.3312-170.496 52.4288-229.9904 131.7888-68.3008 91.0336-152.7808 135.3728-267.5712 79.4624-146.0224-71.0656-132.1984-284.672 25.6-318.0544 125.0304-26.4192 211.1488-85.504 254.7712-176.64z" fill="#87C31D"></path>
</symbol>
<symbol id="icon-a-wangqiuqiu" viewBox="0 0 1024 1024">
<path d="M914.688 434.6368c23.2448 131.6352-11.6224 267.2128-112.2816 367.872-158.8224 158.7712-422.144 158.7712-580.9152 0-158.7712-158.7712-158.7712-422.0928 0-580.9152C322.1504 120.9344 457.728 86.0672 589.312 109.312c-54.1696 116.224-120.0128 166.5024-166.5024 189.7472-65.8432 27.136-112.2816 89.088-120.064 151.04-11.6224 73.5744 11.6224 151.04 65.8432 205.2608 54.2208 54.2208 131.6864 77.4656 205.2608 65.8432 61.952-7.7824 123.904-54.272 151.04-120.064l10.8032-19.9168c27.0336-45.7216 78.2336-106.3424 178.944-146.5856z m-112.2816-212.992c50.3296 50.3296 85.1968 108.3904 100.6592 178.1248-3.8912-3.8912-7.7312 0-7.7312 0-115.712 50.5856-177.3568 121.4464-203.9808 174.7456l-5.12 11.1104c-23.2448 54.272-65.8432 89.088-120.064 96.8192-58.112 11.6224-123.904-7.68-170.3936-54.2208-42.5984-42.5984-62.464-101.4272-56.5248-161.6896l2.304-16.384c3.4816-45.824 35.84-88.3712 82.432-113.152l14.336-6.9632c54.272-23.2448 131.6864-77.4144 185.9072-209.1008 69.7344 15.4624 127.7952 50.3296 178.176 100.6592z"></path>
</symbol>
<symbol id="icon-bangqiu" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512S0 794.7776 0 512 229.2224 0 512 0z m0 76.8c-93.696 0-180.5312 29.6448-251.5456 80.0256 20.992 22.7328 39.8336 48.5376 56.2688 76.8l65.024-34.3552 24.0128 45.2096-65.6896 34.7648c10.24 22.8352 19.0464 46.8992 26.2144 71.9872l65.5872-17.92 13.4656 49.408-67.1744 18.2784c5.0688 26.4192 8.3968 53.6576 9.8304 81.5616l62.3104-5.2736 4.3008 50.9952-66.1504 5.632c-0.9216 29.184-3.9424 57.6512-8.8064 85.248l69.3248 9.0112-6.656 50.7904-73.8816-9.6256c-6.3488 23.3984-14.1312 45.9264-23.1424 67.4816l66.8672 23.3984-16.8448 48.3328-72.2944-25.2416a445.2864 445.2864 0 0 1-60.2112 85.504A432.9472 432.9472 0 0 0 512 947.2c92.672 0 178.6368-28.9792 249.2416-78.336a442.8288 442.8288 0 0 1-60.2624-85.5552l-72.2944 25.2416-16.896-48.3328 66.9184-23.3984c-9.0112-21.504-16.7936-44.0832-23.1424-67.4816l-73.9328 9.6256-6.656-50.7904 69.376-9.0112a599.6032 599.6032 0 0 1-8.8064-85.248l-66.1504-5.632 4.3008-50.9952 62.3104 5.2736c1.4336-27.904 4.7616-55.1424 9.8304-81.5616l-67.1744-18.2784 13.4656-49.408 65.536 17.92c7.2192-25.088 16.0256-49.152 26.2656-71.9872l-65.6896-34.7648 23.9616-45.2096 65.0752 34.4064a438.9888 438.9888 0 0 1 56.1664-76.8512A432.64 432.64 0 0 0 512 76.8zM220.416 188.928l-3.0208 2.7136A434.0224 434.0224 0 0 0 76.8 512c0 129.1776 56.32 245.248 145.664 324.9152a381.7984 381.7984 0 0 0 51.5072-70.7072l-55.808-19.456 16.8448-48.384 61.8496 21.6576a486.912 486.912 0 0 0 20.3264-57.4464l-60.0576-7.7824 6.656-50.7904 65.024 8.5504c4.352-24.0128 7.168-48.8448 8.2432-74.3424l-60.0576 5.12-4.3008-51.0464 64.2048-5.4784a546.9184 546.9184 0 0 0-8.2944-72.3456l-61.44 16.7936-13.4144-49.408 63.1808-17.2032a484.8128 484.8128 0 0 0-22.1696-61.44l-56.2176 29.8496-23.9616-45.2608 56.832-30.208a384.256 384.256 0 0 0-50.9952-68.6592z m583.2192 0l-3.584 3.7888c-17.5104 19.2512-33.4848 41.0112-47.5136 64.9216l56.832 30.208-23.9104 45.2096-56.2176-29.7984c-8.5504 19.456-16.0256 39.936-22.1696 61.3888l63.1808 17.2032-13.4656 49.408-61.44-16.7936c-4.2496 23.3472-7.0656 47.5648-8.2432 72.3456l64.2048 5.4784-4.3008 50.9952-60.0576-5.0688c1.0752 25.4976 3.8912 50.3296 8.192 74.3424l65.0752-8.5504 6.656 50.7904-60.0576 7.7824c5.6832 19.968 12.4928 39.1168 20.2752 57.344l61.9008-21.5552 16.896 48.3328-55.8592 19.456c15.0016 26.3168 32.256 50.0736 51.4048 70.8096A434.0224 434.0224 0 0 0 947.2 512a434.0736 434.0736 0 0 0-143.5648-323.072z"></path>
</symbol>
<symbol id="icon-ganlanqiu" viewBox="0 0 1024 1024">
<path d="M239.7696 239.104C479.744-0.8192 851.5072-18.0224 945.7664 76.1856c94.208 94.2592 77.0048 466.0736-162.9184 705.9968S173.824 1042.0736 76.8 945.1008C-20.1216 848.128-0.1536 479.0784 239.7696 239.104z m-124.8768 381.952c-30.4128 120.4224-25.2416 228.1984 16.2816 269.7216 41.472 41.5232 149.2992 46.6944 269.6192 16.2816l-285.9008-285.952z m451.6864-489.6256c-97.0752 32.256-196.864 86.3744-272.4864 161.9968-75.9296 75.9296-130.304 175.2064-162.7136 271.7696l325.376 325.4272c96.6144-32.4608 195.84-86.8352 271.7696-162.7648 75.6224-75.6224 129.6896-175.4112 161.9968-272.4864l-323.9424-323.9424z m-37.1712 180.1216a25.6 25.6 0 0 1 32.6656-2.9696l3.584 2.9696 54.272 54.272 36.1984-36.1984a25.6 25.6 0 0 1 39.168 32.6656l-2.9696 3.584-36.1984 36.1472 54.272 54.3232a25.6 25.6 0 0 1-32.6144 39.168l-3.584-2.9696-54.272-54.272-72.3968 72.3968 54.272 54.272a25.6 25.6 0 0 1-32.6656 39.168l-3.5328-2.9696-54.272-54.272-72.448 72.3968 54.3232 54.272a25.6 25.6 0 0 1-32.6656 39.2192l-3.584-2.9696-54.272-54.3232-36.1984 36.1984a25.6 25.6 0 0 1-39.168-32.6656l2.9696-3.5328 36.1984-36.1984-54.272-54.272a25.6 25.6 0 0 1 32.6144-39.2192l3.584 2.9696 54.272 54.272L475.136 510.72 420.864 456.3456a25.6 25.6 0 0 1 32.6656-39.168l3.5328 2.9696 54.272 54.272 72.448-72.3968-54.272-54.272a25.6 25.6 0 0 1 0-36.1984z m362.0352-181.0432c-40.5504-40.5504-148.3264-45.568-268.7488-15.36l284.16 284.16c30.1056-120.4736 25.1392-228.2496-15.36-268.8z"></path>
</symbol>
<symbol id="icon-paiqiu" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512S0 794.7776 0 512 229.2224 0 512 0z m239.616 514.816l-1.536 11.5712a743.168 743.168 0 0 1-208.2816 419.84 435.3536 435.3536 0 0 0 398.6432-357.376 459.6224 459.6224 0 0 0-188.8768-74.0864z m-211.6096 17.3056l-8.2944 2.8672a510.6688 510.6688 0 0 1-243.0976 350.6176 432.5888 432.5888 0 0 0 179.3536 59.392 690.8928 690.8928 0 0 0 232.6528-434.944 459.5712 459.5712 0 0 0-141.1584 16.2304l-19.456 5.8368z m-418.816-211.8144l-3.9424 8.192A433.5616 433.5616 0 0 0 76.8 512c0 138.24 64.4608 261.4272 164.9664 341.1456a459.776 459.776 0 0 0 143.104-116.736 743.0656 743.0656 0 0 1-258.816-396.1344l-4.864-19.968zM307.8656 127.488l-1.28 0.7168a437.248 437.248 0 0 0-145.6128 126.464 690.5344 690.5344 0 0 0 254.0032 440.2176 462.6944 462.6944 0 0 0 64.4096-158.5152 510.2592 510.2592 0 0 1-171.52-408.8832z m105.7792 222.8736l-9.3696 3.8912a462.2336 462.2336 0 0 0 100.352 135.9872 510.5664 510.5664 0 0 1 433.5104 36.7616l8.6016 5.12a433.92 433.92 0 0 0-32.1536-185.856 690.1248 690.1248 0 0 0-482.7136-2.816l-18.2272 6.912zM512 76.8a434.3296 434.3296 0 0 0-150.8864 26.88 460.0832 460.0832 0 0 0 23.3984 203.3152 742.912 742.912 0 0 1 496.2304-26.2144A434.7904 434.7904 0 0 0 512 76.8z"></path>
</symbol>
<symbol id="icon-bingqiu" viewBox="0 0 1024 1024">
<path d="M657.152 46.6944l9.0624 0.7168c33.8944 1.1264 63.7952 10.1888 87.9616 27.9552l1.1776-1.1264 201.1648 201.1648c98.8672 98.8672 10.0864 325.7856-181.0432 516.9152-187.392 187.392-409.088 276.3776-510.976 186.624l-5.9392-5.632L71.168 785.92l-0.1024 0.1536-2.9184-3.1232-10.6496-10.752 0.8704-0.8704c-18.432-25.088-27.4944-56.3712-28.0576-91.9552-5.8368-66.3552 22.6816-152.1664 77.824-241.2544l7.9872-12.5952 15.4624-23.1936c32.1536-46.3872 71.168-93.184 115.968-137.9328 38.4-38.4 78.2336-72.5504 118.0672-101.7856l19.9168-14.1824 23.1936-15.5136c85.8112-55.296 169.2672-86.4768 236.1344-86.528l12.3392 0.3584z m124.8256 162.7136c-11.1616 106.6496-91.2384 247.296-216.6784 372.736S299.264 787.6096 192.6656 798.72L312.832 919.04c56.6272 56.6272 243.968-16.6912 408.32-181.0432 160.6656-160.6656 234.2912-343.3472 184.576-404.3264l-3.584-3.9936-120.2176-120.32z m-475.648 113.9712c-160.6656 160.7168-234.3424 343.3984-184.576 404.3264l1.4336 1.6384 17.152 17.152c84.5312 18.8416 245.6576-57.4976 388.7616-200.6016 143.104-143.0528 219.392-304.1792 200.5504-388.7616l-14.8992-14.8992-0.1024 0.1536c-56.6272-56.6272-243.968 16.6912-408.32 180.992z"></path>
</symbol>
<symbol id="icon-pingpangqiu" viewBox="0 0 1024 1024">
<path d="M924.483187 156.823427c-144.282137-144.282137-395.189796-123.407274-560.756106 42.210199-125.402666 125.402666-170.017568 302.787832-115.988512 446.046691l-132.872592 116.193168a141.826271 141.826271 0 1 0 187.413286 212.995225l6.293157-5.93501 6.446649-6.855959 114.351268-130.621382c144.128645 58.071002 325.351102 14.325886 452.90265-113.276826 165.617474-165.56631 186.492336-416.473969 42.2102-560.756106z m-481.298603 476.335707l3.632635 4.144274 3.17216 4.502421 1.279097 2.251211c7.77691 14.684033 7.162943 32.744882-2.097719 46.917276l-3.888454 5.116388-87.285577 99.667235h0.051164l-100.79284 115.118726-2.916341 3.223324a65.131617 65.131617 0 0 1-87.132085 4.451258l-4.962896-4.451258-2.967505-3.17216a65.131617 65.131617 0 0 1 1.330261-87.234413l4.809404-4.604749 214.837125-188.027252a46.04749 46.04749 0 0 1 58.787297-1.534917l4.09311 3.632636zM366.182947 316.147744l398.924759 398.873595c-81.504058 54.591858-176.054905 75.415557-259.503191 58.83846l-13.046789-2.967505-8.697859-2.353538 20.158568-23.177237 5.628027-7.060615 5.730354-8.493204 3.939619-6.958288 3.888454-8.18622 2.711686-6.651304 2.302374-7.009452 2.916341-11.870019 1.074442-6.651305 1.023277-11.153725 0.102328-6.907124-0.358147-8.083892-0.972114-8.749024-1.227933-6.855959-1.944227-8.083893-1.330261-4.400094-2.353538-6.753632-3.837291-8.851351-3.786127-7.26527-5.321043-8.595532-4.093111-5.628026-5.116388-6.241994-5.628026-5.986173-6.139666-5.730355a122.793308 122.793308 0 0 0-155.026551-5.167551l-6.548976 5.269879-18.930635 16.577097-1.637244-6.497813c-19.544602-85.341349 0.869786-183.269012 57.098888-267.228936zM260.785358 45.439664a142.849548 142.849548 0 1 0-201.994992 201.994991A142.849548 142.849548 0 0 0 260.785358 45.439664z m-54.233711 54.233711a66.103731 66.103731 0 1 1-93.476406 93.476405A66.103731 66.103731 0 0 1 206.551647 99.673375zM870.147148 211.108302c112.151221 112.100057 95.267141 314.760179-42.210199 452.186356a423.585748 423.585748 0 0 1-21.846977 20.363224L397.648732 275.165477l10.437431-11.6142 9.874629-10.232776c137.477341-137.477341 340.137463-154.361421 452.288684-42.210199z"></path>
</symbol>
<symbol id="icon-zuqiu" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512S0 794.7776 0 512 229.2224 0 512 0z m0 76.8c-33.9456 0-67.0208 3.8912-98.7136 11.264l21.8624 58.4704-111.616 92.5184-91.136-60.5696A434.2784 434.2784 0 0 0 76.8 512a434.3296 434.3296 0 0 0 157.696 335.2576l73.1136-33.3312 96.1024 109.312-5.12 9.0624a435.4048 435.4048 0 0 0 531.968-300.9024l-48.896-13.4144-7.5264-146.944 67.84-26.624A435.3024 435.3024 0 0 0 512 76.8z m179.0464 563.0464l101.5296 103.936-65.1776 131.072-141.8752-22.9888-22.4768-145.2544 128-66.7648zM268.032 393.8816l130.2016 62.1568-17.5104 146.0224-141.0048 28.0576-69.632-128.6656 97.9456-107.52z m446.7712-184.7808l62.976 132.1984-103.3728 102.1952-126.8224-69.0688 24.9344-144.8448 142.2848-20.48z"></path>
</symbol>
<symbol id="icon-yumaoqiu" viewBox="0 0 1024 1024">
<path d="M938.496 945.1008a178.176 178.176 0 0 0 12.9024-237.312l-6.2464-7.4752-6.656-7.0144-45.5168-45.4144L633.6 36.9152A38.4 38.4 0 0 0 619.52 19.968l-4.864-2.7648-5.2224-2.048C554.5984-1.4336 503.7056 7.2192 460.288 41.3184l-8.6016 7.168-8.0896 7.68c-31.5904 31.5904-49.8176 73.1648-55.296 123.7504l-1.1264 12.8-0.512 10.0864H378.88c-46.7968 1.1776-87.808 15.104-121.856 41.9328l-9.1648 7.6288-8.7552 8.2944a176.5376 176.5376 0 0 0-53.504 129.024l0.3584 12.288-13.1584 1.024c-46.4384 4.7104-84.736 18.0224-114.4832 40.5504l-8.704 7.0656-8.0896 7.6288c-40.7552 40.704-49.3056 97.792-28.928 166.8608l3.9424 12.288 4.1472 11.6736a38.4 38.4 0 0 0 17.408 20.5824l5.0688 2.3552 599.7056 229.2736 43.8272 43.8272a178.0736 178.0736 0 0 0 237.3632 12.9536l7.3216-6.2464 7.1168-6.7072zM511.232 314.3168l-47.104-63.488a38.656 38.656 0 0 0 0.3584-9.728c-4.864-56.832 4.9152-97.5872 27.1872-124.0064l5.376-5.8368 6.3488-5.9904c15.872-14.0288 32.6144-21.1456 51.6608-21.504l8.2944 0.256 7.168 0.8704 50.688 119.4496-109.9776 109.9776z m-209.1008 209.1008L182.4768 643.072l-95.1808-36.352-1.28-4.096c-10.9568-36.864-9.472-62.976 2.56-81.2032l3.5328-4.8128 3.6864-4.096c24.576-24.576 68.4544-36.864 133.4784-34.304a38.7072 38.7072 0 0 0 9.6256-0.768l63.232 45.9776z m172.544-172.4928L338.7904 486.7072l-69.8368-50.7392-0.3584-2.816-0.6144-2.8672c-12.6464-49.2032-4.096-85.8624 25.344-115.3536 28.16-28.1088 65.4336-39.68 115.2-34.1504l11.6736 1.536c1.28 0.256 2.56 0.3584 3.7888 0.4608l50.5856 68.1472z m10.5472 305.408l-74.1376 74.1376-176.2304-67.3792 109.2608-109.2608 141.1072 102.5024z m160.6144-160.6144L542.0544 355.84l100.7616-100.7616 72.6016 171.008-69.5808 69.5808z m-36.608 36.608l-87.3472 87.3472L380.7744 517.12l124.7232-124.672 103.7312 139.776z m88.2688 278.2208l-21.248 21.248-212.7872-81.3056 63.6416-63.6416 170.3936 123.6992z m127.1808-127.1296l-22.7328 22.7328-125.2864-168.8576 60.3136-60.3136 87.7056 206.4384z m-59.2896 59.2896l-32.4096 32.4096 0.9728-1.4336-170.1376-123.5456 76.288-76.288 125.2864 168.8576z m118.784 148.0704a101.2224 101.2224 0 0 1-137.6256 5.12l-5.5296-5.12-25.7024-25.6 143.2064-143.2064 24.8832 24.832 5.0176 5.3248c35.3792 39.936 33.6896 100.7616-4.2496 138.6496z"></path>
</symbol>
<symbol id="icon-lanqiu" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512S0 794.7776 0 512 229.2224 0 512 0zM434.4832 665.7024l-8.0384 2.2016a373.5552 373.5552 0 0 0-210.7392 162.7648A433.2032 433.2032 0 0 0 512 947.2a434.432 434.432 0 0 0 146.5856-25.2928 489.6256 489.6256 0 0 1-224.1024-256.2048z m98.4576-13.312c-16.0768 0-31.8976 1.024-47.4624 2.9696a437.8624 437.8624 0 0 0 234.1376 239.2064 436.736 436.736 0 0 0 113.664-89.088 371.1488 371.1488 0 0 0-300.3392-153.088zM184.4736 225.3824l-0.9216 1.024A433.5104 433.5104 0 0 0 76.8 512c0 106.9056 38.5536 204.8 102.5024 280.576a424.1408 424.1408 0 0 1 239.5136-175.7696 493.312 493.312 0 0 1-6.0416-225.1776 424.192 424.192 0 0 1-228.3008-166.1952z m676.7616 26.88l-1.024 1.3824a421.888 421.888 0 0 1-397.5168 149.504 440.4736 440.4736 0 0 0 6.2464 202.8032 422.0928 422.0928 0 0 1 397.568 158.3616A432.4864 432.4864 0 0 0 947.2 512a433.2544 433.2544 0 0 0-85.9648-259.6864zM676.864 109.056l-11.6736 6.8608a438.3744 438.3744 0 0 0-189.3376 237.4656 371.0464 371.0464 0 0 0 351.744-141.056 434.944 434.944 0 0 0-150.7328-103.2704zM512 76.8a433.6128 433.6128 0 0 0-290.816 111.4112A373.0432 373.0432 0 0 0 425.7792 342.016a489.7792 489.7792 0 0 1 187.5456-253.44A439.296 439.296 0 0 0 512 76.8z"></path>
</symbol>
<symbol id="icon-shuiqiu" viewBox="0 0 1075 1024">
<path d="M879.6672 857.6c63.0272 0 124.672 25.9584 184.4224 76.288l11.9296 10.3936-51.4048 57.0368c-50.2784-45.2608-98.4576-66.9184-144.9472-66.9184-21.504 0-31.8976 4.4544-52.4288 22.1696l-7.2192 6.3488c-38.4 34.6112-63.7952 48.2816-111.0528 48.2816-43.6224 0-68.608-11.6736-102.4-40.6528l-8.6016-7.6288c-25.6-23.04-35.84-28.5184-59.648-28.5184-21.504 0-31.8976 4.4544-52.3776 22.1696l-7.2704 6.3488c-38.4 34.6112-63.744 48.2816-111.0016 48.2816-43.6224 0-68.608-11.6736-102.4-40.6528l-8.6528-7.6288c-25.6-23.04-35.7888-28.5184-59.648-28.5184-43.2128 0-87.7568 18.688-134.1952 57.6l-10.752 9.3184-51.4048-57.0368c63.488-57.1392 129.1264-86.6816 196.352-86.6816 43.6224 0 68.608 11.6736 102.4 40.6528l8.6528 7.6288c25.6 23.04 35.7888 28.5184 59.648 28.5184 21.4528 0 31.8464-4.4544 52.3776-22.1696l7.2704-6.3488c38.4-34.6112 63.744-48.2816 111.0016-48.2816 43.6224 0 68.608 11.6736 102.4 40.6528l8.6016 7.6288c25.6 23.04 35.84 28.5184 59.648 28.5184 21.504 0 31.8976-4.4544 52.4288-22.1696l7.2192-6.3488c38.4-34.6112 63.7952-48.2816 111.0528-48.2816zM702.7712 61.7472a429.1072 429.1072 0 0 1 183.04 642.4064l-6.144-0.1536c63.0272 0 124.672 25.9584 184.4224 76.288l11.9296 10.3936-51.4048 57.0368c-50.2784-45.2608-98.4576-66.9184-144.9472-66.9184-21.504 0-31.8976 4.4544-52.4288 22.1696l-7.2192 6.3488c-38.4 34.6112-63.7952 48.2816-111.0528 48.2816-43.6224 0-68.608-11.6736-102.4-40.6528l-8.6016-7.6288c-25.6-23.04-35.84-28.5184-59.648-28.5184-21.504 0-31.8976 4.4544-52.3776 22.1696l-7.2704 6.3488c-38.4 34.6112-63.744 48.2816-111.0016 48.2816-43.6224 0-68.608-11.6736-102.4-40.6528l-8.6528-7.6288c-25.6-23.04-35.7888-28.5184-59.648-28.5184-43.2128 0-87.7568 18.688-134.1952 57.6l-10.752 9.3184-51.4048-57.0368c59.5456-53.6064 121.0368-82.944 183.9104-86.3232a429.1072 429.1072 0 0 1 518.2464-642.56z m16.2304 475.648a625.2032 625.2032 0 0 1-144.9984 170.1888c24.064 5.2224 43.264 16.9984 66.7136 37.0688l8.6016 7.6288c14.336 12.9024 23.9104 20.2752 33.6896 24.32a351.488 351.488 0 0 0 149.8624-131.3792 385.2288 385.2288 0 0 0-113.8688-107.8272z m-176.2304-56.5248a427.7248 427.7248 0 0 1-288.3584 188.928 349.696 349.696 0 0 0 121.1392 101.12c20.0704-7.168 39.6288-15.36 58.5728-24.576l-6.8096 5.9392c27.136-24.4736 47.7696-38.4512 74.1888-44.544a580.352 580.352 0 0 0 179.7632-190.6688 385.5872 385.5872 0 0 0-138.496-36.1984zM293.2224 200.3968l-7.6288 7.4752a351.3344 351.3344 0 0 0-74.8032 111.2576 351.744 351.744 0 0 0 17.5616 310.9376l2.0992-0.2048a385.3312 385.3312 0 0 0 133.12-41.5744 622.592 622.592 0 0 1-70.3488-387.8912z m210.432 99.3792c2.3552 47.872 13.6704 94.6176 32.8704 137.8816a427.7248 427.7248 0 0 1 318.8736 165.6832l3.9936-8.9088a351.0784 351.0784 0 0 0 28.0576-145.2032 578.816 578.816 0 0 0-383.744-149.4528z m-6.2464-193.3824a354.048 354.048 0 0 0-146.7904 50.176l-6.2976 3.9936a578.9184 578.9184 0 0 0 55.9616 405.504A385.6384 385.6384 0 0 0 501.9648 464.9472a427.7248 427.7248 0 0 1-7.4752-351.744l2.9696-6.8096z m48.5376-1.8944l-3.84 7.5264a385.5872 385.5872 0 0 0-38.2464 144.9472c134.5536 1.024 267.5712 45.568 376.7296 130.4064a352 352 0 0 0-207.872-254.9248 351.4368 351.4368 0 0 0-126.7712-27.9552z"></path>
</symbol>
<symbol id="icon-wangqiu" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512S0 794.7776 0 512 229.2224 0 512 0z m430.3872 447.1808l-19.4048 25.088c-11.1104 14.08-21.8624 27.2384-32.4096 39.5776-55.7056 65.2288-103.168 105.0624-146.8416 116.8896-63.1808 17.0496-103.168 20.992-168.704 19.6096l-44.3392-1.1776c-49.3568-0.7168-81.9712 2.816-128.3584 15.6672-93.7472 25.9584-155.2896 99.7888-159.3344 191.232a435.2 435.2 0 0 0 699.392-406.9376z m-402.0224-369.4592l-0.6144 4.0448C509.44 285.952 383.488 439.2448 189.0304 471.04c-36.352 5.9392-73.3184 4.096-109.8752-4.096a433.7152 433.7152 0 0 0 117.504 345.0368c19.0976-94.9248 90.4704-170.3936 192-198.5024 51.5584-14.2848 88.576-18.2784 142.1824-17.5104l18.5344 0.4608 26.112 0.7168c61.3376 1.3312 97.024-2.2016 154.88-17.8688 30.6688-8.2432 71.936-42.9056 121.344-100.7104 10.0864-11.8272 20.48-24.5248 31.232-38.1952l10.9056-14.08 22.8864-30.208 10.5984-14.4384a435.5072 435.5072 0 0 0-386.9696-303.9232z m-51.712-0.256l-2.6624 0.1024A435.456 435.456 0 0 0 87.3472 416.256c31.3856 7.4752 62.8736 9.216 93.44 4.2496 169.0624-27.648 279.8592-161.024 307.9168-343.04z"></path>
</symbol>
<symbol id="icon-shouqiu" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512S0 794.7776 0 512 229.2224 0 512 0z m-43.4176 854.6816l-124.7744 9.8816 4.096 50.7904a434.0736 434.0736 0 0 0 209.3568 29.6448l6.4-40.0384-95.0784-50.2784z m316.928-40.3456l-168.6528 82.432-6.2464 39.3216a434.5344 434.5344 0 0 0 205.824-112.9472l-30.976-8.8064z m-592.896-47.4624l-24.7808 11.776a437.504 437.504 0 0 0 126.6176 110.4896l-3.328-41.2672-98.5088-80.9984z m492.4416-137.216l-163.1232 94.208-13.4144 94.0032 73.6256 38.912 178.2272-87.1424 20.5824-104.0896-95.8976-35.8912z m-380.1088-48.7424l-82.944 34.4576-0.0512 109.312 108.9536 89.6 127.8464-10.1888 10.752-75.0592-164.5568-148.1216z m595.8144-34.048l-66.2528 111.616-21.8112 110.3872 41.8304 11.776a433.2544 433.2544 0 0 0 88.7808-209.152l-42.496-24.6272z m-780.8-31.3344l-42.9056 14.6944a432.896 432.896 0 0 0 61.5424 205.6192l32.1536-15.2576v-115.456l-50.8416-89.6z m309.76-132.5056l-76.7488 172.1856 140.1344 126.1568 163.2256-94.208-39.2192-184.4224-187.392-19.712z m299.264-97.5872l-67.584 79.2064 46.4896 218.9312 91.2896 34.1504 64.9728-109.568-43.9808-163.7376-91.136-58.9824z m-416.5632-3.3792l-106.3424 46.6432-46.6944 152.6784 48.0768 84.5824 90.8288-37.6832 5.12 12.4416 76.1344-170.9568-67.072-87.7056z m593.7664 45.056l-33.536 15.4112 41.0112 152.6272 33.6384 19.456V512c0-59.4944-11.9296-116.224-33.536-167.8848l-7.5776-17.0496z m-828.0064 148.48l32.8704-11.1616 43.7248-143.1552-20.2752-26.2144a432.4352 432.4352 0 0 0-54.272 161.0752l-2.048 19.456z m346.9824-303.8208L352.768 250.5216l60.7232 79.36 192.9216 20.2752 80.896-94.72-51.712-63.6416-210.432-20.0192z m263.5264-57.7536l-19.456 38.0416 63.744 78.4896 1.6384-2.4064 109.824 71.0144 37.2736-17.1008a437.248 437.248 0 0 0-177.2032-160.6144l-15.8208-7.424zM164.352 249.9584l23.7568 30.72 113.0496-49.5616 83.456-90.9312-19.456-38.0928A436.3776 436.3776 0 0 0 164.352 249.9584zM512 76.6976a436.736 436.736 0 0 0-96.768 10.752l17.0496 33.536 186.2144 17.7664 21.9648-42.8032A435.2 435.2 0 0 0 512 76.6976z"></path>
</symbol>
<symbol id="icon-siluoke" viewBox="0 0 1024 1024">
<path d="M387.328 103.6288a140.8 140.8 0 0 1 244.0192-9.216l5.3248 9.216 368.1792 701.3376a140.8 140.8 0 0 1-113.3056 205.7728l-11.3664 0.4608H143.872a140.8 140.8 0 0 1-129.536-195.9936l4.864-10.24L387.328 103.6288z m154.4192 8.8064a64 64 0 0 0-82.8416 20.8896l-3.584 6.0416-368.128 701.2864a64 64 0 0 0 50.0736 93.44l6.5536 0.3072H880.128a64 64 0 0 0 59.5968-87.3984l-2.9184-6.3488-368.1792-701.2864a64 64 0 0 0-26.9312-26.9312zM256 691.2A115.2 115.2 0 1 1 256 921.6a115.2 115.2 0 0 1 0-230.4z m256 0a115.2 115.2 0 1 1 0 230.4 115.2 115.2 0 0 1 0-230.4z m256 0a115.2 115.2 0 1 1 0 230.4 115.2 115.2 0 0 1 0-230.4z m-512 51.2A64 64 0 1 0 256 870.4a64 64 0 0 0 0-128z m256 0a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m256 0a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m-384-307.2a115.2 115.2 0 1 1 0 230.4 115.2 115.2 0 0 1 0-230.4z m256 0a115.2 115.2 0 1 1 0 230.4 115.2 115.2 0 0 1 0-230.4z m-256 51.2a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m256 0a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m-128-307.2A115.2 115.2 0 1 1 512 409.6a115.2 115.2 0 0 1 0-230.4z m0 51.2A64 64 0 1 0 512 358.4a64 64 0 0 0 0-128z"></path>
</symbol>
<symbol id="icon-banqiu" viewBox="0 0 1024 1024">
<path d="M966.912 161.9968c37.3248 37.376 35.84 99.328-3.328 138.496l-208.7424 208.7936a256 256 0 1 1-247.7056 247.7568l-22.1184 22.016c-36.1472 36.1472-91.7504 40.192-129.4848 11.264l-195.5328 195.4816c-19.5584 19.5584-50.5344 20.3264-69.2224 1.6384l-67.584-67.584c-18.6368-18.6368-17.92-49.664 1.6896-69.2224l195.4816-195.4816c-28.9792-37.7344-24.9344-93.3376 11.264-129.536L710.144 47.104c39.168-39.1168 101.1712-40.6016 138.496-3.2768l118.272 118.272z m-54.272 54.3232l-118.272-118.272c-5.9392-5.888-16.896-6.3488-26.112 0.1024l-3.7888 3.2256-478.5664 478.5664c-8.96 8.96-9.984 21.4016-4.608 28.3648a76.8 76.8 0 0 1-1.792 95.8464l-4.8128 5.2736-176.64 176.64 26.5216 26.5728 176.64-176.64a76.8 76.8 0 0 1 95.232-10.7008l5.888 4.096c6.144 4.7104 16.384 4.5056 24.8832-1.6384l3.4816-2.9696 478.6176-478.6176c8.4992-8.4992 9.7792-19.8144 5.4784-27.0336l-2.2016-2.816z m-69.7344 737.4336l-266.24-266.3424-5.3248 5.3248a204.9024 204.9024 0 0 0 39.7824 209.8176l7.0144 7.424a204.8512 204.8512 0 0 0 224.768 43.776z m81.8688-62.976l-275.712-275.7632-36.1984 36.1984 275.6608 275.7632c4.096-3.1744 7.9872-6.4512 11.8272-9.9328l7.424-7.0656 8.8576-9.4208 8.1408-9.8304z m-16.9984-270.4384a204.8 204.8 0 0 0-217.2416-46.7968l-5.2736 5.2736 266.2912 266.2912a204.9024 204.9024 0 0 0-36.7104-217.344l-7.0656-7.424z"></path>
</symbol>
<symbol id="icon-nodata" viewBox="0 0 1024 1024">
<path d="M43.489882 43.489882a60.235294 60.235294 0 0 1 85.172706 0L512 426.767059 895.337412 43.489882a60.235294 60.235294 0 1 1 85.172706 85.172706L597.172706 512l383.337412 383.337412a60.235294 60.235294 0 0 1 3.523764 81.347764l-3.523764 3.824942a60.235294 60.235294 0 0 1-85.172706 0L512 597.172706 128.662588 980.510118a60.235294 60.235294 0 1 1-85.172706-85.172706L426.767059 512 43.489882 128.662588a60.235294 60.235294 0 0 1-3.523764-81.347764l3.523764-3.824942z"></path>
</symbol>
<symbol id="icon-thesports" viewBox="0 0 7325 1024">
<path d="M2685.886622 820.460308v-615.187693h207.950769V96.886154h-545.398154v108.465231h209.132308v615.108923h128.393846z m443.628307 0V440.950154c45.371077-44.189538 76.406154-67.426462 123.904-67.426462 59.785846 0 85.228308 33.083077 85.228308 122.801231v324.135385H3465.859545V479.704615c0-137.216-50.884923-215.748923-166.99077-215.748923-74.200615 0-128.393846 38.754462-173.764923 81.92l4.411077-105.156923V39.384615h-127.212307v781.075693h127.212307z m722.471385 13.23323c68.529231 0 133.828923-24.339692 185.895384-58.604307l-43.244307-79.635693c-39.778462 25.442462-79.556923 39.778462-126.030769 39.778462-87.433846 0-149.425231-55.296-160.452924-153.757538h345.16677c3.308308-13.312 5.513846-35.446154 5.513846-59.707077 0-151.630769-77.430154-257.811692-224.571077-257.811693-127.212308 0-250.013538 108.465231-250.013539 285.459693 0 179.2 117.208615 284.356923 267.736616 284.356923z m96.177231-332.957538h-241.112616c11.027692-90.742154 66.323692-138.318769 130.520616-138.318769 74.121846 0 110.592 51.987692 110.592 138.318769z m456.940307 332.957538c171.480615 0 271.044923-103.975385 271.044923-223.468307 0-101.769846-55.296-160.374154-142.729846-195.820308l-91.766154-37.572923c-63.094154-25.442462-110.670769-40.96-110.670769-85.228308 0-40.96 36.548923-65.220923 91.844923-65.220923 57.501538 0 102.872615 20.952615 150.449231 57.501539l81.92-102.872616c-61.991385-61.991385-149.425231-95.153231-232.369231-95.15323-149.346462 0-256.708923 95.153231-256.708923 214.646153 0 105.078154 70.892308 166.990769 146.038154 196.923077l92.947692 39.778462c63.015385 26.545231 103.975385 40.96 103.975385 86.331077 0 43.086769-33.161846 69.710769-100.667077 69.710769-59.707077 0-126.030769-31.035077-176.994462-75.224615l-94.050461 111.694769a399.753846 399.753846 0 0 0 267.815385 103.975384zM4947.193698 1024v-160.452923l-5.513846-87.433846c38.675692 36.548923 82.944 57.580308 130.520616 57.580307 118.390154 0 231.266462-108.386462 231.266461-296.487384 0-169.275077-81.92-278.843077-214.646154-278.843077-57.501538 0-112.876308 28.829538-155.963077 67.584h-4.489846l-11.027692-54.272H4784.456468V1024h162.658461z m87.433847-323.032615c-27.648 0-58.683077-8.822154-87.433847-35.446154V441.107692c32.059077-34.343385 60.888615-49.860923 94.050462-49.860923 65.299692 0 95.153231 49.782154 95.153231 148.243693 0 112.876308-45.371077 161.476923-101.769846 161.476923z m619.52 132.726153c138.24 0 266.633846-105.078154 266.633846-287.586461 0-182.587077-128.393846-287.665231-266.633846-287.665231-139.421538 0-267.815385 105.078154-267.815385 287.665231 0 182.508308 128.393846 287.586462 267.815385 287.586461z m0-131.623384c-67.505231 0-100.667077-60.888615-100.667077-155.963077 0-95.153231 33.161846-155.963077 100.667077-155.963077 66.323692 0 100.667077 60.809846 100.667077 155.963077 0 95.074462-34.343385 155.963077-100.667077 155.963077z m540.987077 118.390154V501.76c28.750769-74.121846 79.635692-100.667077 120.516923-100.667077 23.315692 0 39.857231 3.308308 59.864615 8.822154l26.466462-140.524308c-15.438769-6.616615-34.264615-11.027692-65.220924-11.027692-56.477538 0-116.184615 35.446154-155.963076 109.489231h-4.489847l-11.027692-96.256h-132.804923v548.78523h162.658462z m488.999384 13.23323c53.090462 0 92.947692-11.027692 121.698462-19.928615l-25.442462-118.311385c-14.414769 5.513846-34.343385 11.027692-51.987692 11.027693-43.165538 0-70.892308-25.442462-70.892308-87.433846V399.044923h131.702154V271.675077H6657.588775V125.715692h-135.010461l-18.825846 145.959385-84.04677 6.695385v120.516923h75.224616v222.444307c0 127.212308 53.090462 212.361846 189.203692 212.361846z m373.917539 0c147.140923 0 225.673846-77.430154 225.673846-176.994461 0-100.667077-78.532923-139.421538-148.243693-164.864-56.398769-20.952615-107.283692-34.264615-107.283692-69.632 0-27.726769 19.849846-43.165538 61.912616-43.165539 38.754462 0 76.406154 17.723077 116.184615 46.473847l73.019077-97.35877c-47.576615-35.446154-109.489231-69.710769-193.614769-69.710769-127.212308 0-210.235077 69.710769-210.235077 171.480616 0 90.742154 78.611692 136.034462 144.935384 161.476923 56.477538 22.134154 111.773538 38.754462 111.773539 75.224615 0 28.829538-21.031385 46.473846-69.710769 46.473846-46.473846 0-91.844923-19.849846-141.627077-57.501538l-73.019077 101.769846c55.374769 45.371077 138.318769 76.406154 210.235077 76.406154z" fill="#FFFFFF"></path>
<path d="M0.013391 218.348308C0.486006 32.216615 30.182006 2.363077 216.15616 1.181538c208.738462-1.339077 245.444923 30.72 249.147077 217.403077 4.726154 239.300923 217.560615 365.725538 435.987692 243.633231 55.689846-31.192615 100.509538-136.585846 96.019693-204.484923C978.721083-18.904615 1091.203545-13.784615 1344.60416 10.633846c41.747692 3.938462 91.136 68.923077 110.749538 116.027077 19.692308 47.182769 5.277538 107.362462 7.798154 161.792 6.301538 136.664615 58.919385 188.573538 195.66277 194.56 14.020923 0.630154 28.120615 1.260308 41.984 0.078769 291.682462-25.127385 290.264615 122.564923 247.965538 353.437539-27.726769 151.079385-186.919385 100.352-296.723692 101.139692-91.214769 0.551385-148.086154-48.836923-145.250462-146.038154 0.393846-13.548308-1.024-27.254154 0-40.802461 23.630769-339.416615-161.083077-326.892308-428.819692-286.247385-122.88 18.589538-119.099077 144.935385-119.414154 247.335385-0.787692 200.073846-31.507692 229.376-234.180923 228.509538-187.155692-0.787692-223.940923-37.494154-225.673846-225.910154-1.969231-222.286769-39.384615-258.520615-269.233231-260.489846C32.466314 452.450462-0.459225 418.579692 0.013391 218.348308" fill="#FF0100"></path>
</symbol>
<symbol id="icon-dataapi" viewBox="0 0 1024 1024">
<path d="M0.515258 374.272c0.232727-100.817455 15.685818-117.015273 112.407273-117.620364 108.497455-0.744727 127.627636 16.616727 129.582545 117.76 2.420364 129.582545 113.105455 198.097455 226.676364 131.956364 28.951273-16.896 52.270545-74.007273 49.896727-110.778182-9.634909-149.829818 48.872727-147.083636 180.596364-133.864727 21.736727 2.187636 47.476364 37.376 57.669818 62.882909 10.24 25.553455 2.746182 58.181818 4.049455 87.645091 3.258182 74.007273 30.626909 102.167273 101.748363 105.378909 7.261091 0.325818 14.615273 0.698182 21.829818 0.046545 151.691636-13.591273 150.946909 66.373818 128.93091 191.441455-14.429091 81.826909-97.186909 54.365091-154.298182 54.784-47.429818 0.325818-77.032727-26.484364-75.496728-79.127273 0.186182-7.307636-0.558545-14.754909-0.046545-22.062545 12.288-183.854545-83.781818-177.058909-222.952727-155.089455-63.860364 10.100364-61.905455 78.522182-62.091637 133.957818-0.372364 108.404364-16.384 124.276364-121.809454 123.81091-97.28-0.418909-116.410182-20.293818-117.294546-122.414546-1.070545-120.366545-20.526545-139.962182-140.055272-141.032727C17.411258 501.015273 0.235985 482.676364 0.515258 374.272l943.895273 288.442182" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-iconmobile" viewBox="0 0 1024 1024">
<path d="M793.6 0a102.4 102.4 0 0 1 102.4 102.4v819.2a102.4 102.4 0 0 1-102.4 102.4h-563.2a102.4 102.4 0 0 1-102.4-102.4V102.4a102.4 102.4 0 0 1 102.4-102.4h563.2zM512 857.6a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m281.6-771.072h-563.2a15.872 15.872 0 0 0-15.4624 12.2368L214.528 102.4l-0.0512 716.8H809.472V102.4a15.872 15.872 0 0 0-12.2368-15.4624L793.6 86.528z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-PenaltySaved" viewBox="0 0 1024 1024">
<path d="M786.863158 102.4a161.684211 161.684211 0 0 1 161.414737 152.198737l0.269473 9.485474v388.042105h-64.673684V264.084211a97.010526 97.010526 0 0 0-89.034105-96.687158L786.863158 167.073684H237.136842a97.010526 97.010526 0 0 0-96.687158 89.034105L140.126316 264.084211v388.042105H75.452632V264.084211a161.684211 161.684211 0 0 1 152.198736-161.414737L237.136842 102.4h549.726316z" fill="#64B78D"></path>
<path d="M398.821053 167.073684v129.293474h226.357894V167.073684h32.336842v129.293474l226.357895 0.053895v32.336842l-226.357895-0.053895v129.347368l226.357895 0.053895v32.336842l-226.357895-0.053894V652.126316h-32.336842V490.388211H398.821053V652.126316h-32.336842V490.388211L140.126316 490.442105v-32.336842l226.357895-0.053895v-129.347368L140.126316 328.757895v-32.336842l226.357895-0.053895V167.073684h32.336842z m226.357894 161.630316H398.821053v129.347368h226.357894v-129.347368z" fill="#E2E2E2"></path>
<path d="M512 377.263158a269.473684 269.473684 0 1 1 0 538.947368A269.473684 269.473684 0 0 1 512 377.263158z m79.602526 158.342737L512.215579 614.938947 432.774737 535.605895l-31.797895 31.744L480.525474 646.736842l-79.386948 79.386947 31.744 31.797895 79.386948-79.440842 79.386947 79.386947 31.797895-31.744L543.905684 646.736842l79.386948-79.386947-31.744-31.797895z" fill="#E74C5B"></path>
</symbol>
<symbol id="icon-substitution-up" viewBox="0 0 1024 1024">
<path d="M586.24 801.393778c0 25.941333-31.857778 51.939556-79.701333 51.939555-47.786667 0-79.701333-20.764444-79.701334-51.939555V520.817778H267.377778C243.484444 520.817778 227.555556 505.173333 227.555556 494.819556c0-5.176889 0-10.353778 7.964444-15.587556l239.160889-296.163556c7.964444-10.353778 31.857778-15.587556 47.786667-10.353777 7.964444 0 15.928889 5.176889 15.928888 10.353777l239.160889 296.163556c7.964444 10.410667 0 25.998222-15.928889 36.408889-7.964444 0-15.928889 5.12-15.928888 5.12h-159.459556v280.632889z" fill="#5DB400"></path>
</symbol>
<symbol id="icon-substitution-down" viewBox="0 0 1024 1024">
<path d="M586.24 222.606222c0-25.941333-31.857778-51.939556-79.701333-51.939555-47.786667 0-79.701333 20.764444-79.701334 51.939555v280.576H267.377778c-23.893333 0-39.879111 15.587556-39.879111 25.998222 0 5.176889 0 10.353778 7.964444 15.587556l239.160889 296.163556c7.964444 10.353778 31.857778 15.587556 47.786667 10.353777 7.964444 0 15.928889-5.176889 15.928889-10.353777l239.160888-296.163556c7.964444-10.410667 0-25.998222-15.928888-36.408889-7.964444 0-15.928889-5.12-15.928889-5.12h-159.459556V222.549333z" fill="#E43434"></path>
</symbol>
<symbol id="icon-substitution" width="15" height="18" viewBox="0 0 15 18" fill="none">
<path d="M6.78239 14.1141C6.84108 13.9994 6.93563 13.942 7.06605 13.942L9.25708 13.942L9.25708 5.76812C9.25708 5.68357 9.28643 5.61413 9.34512 5.55978C9.40381 5.50543 9.4788 5.47826 9.57009 5.47826L11.4481 5.47826C11.5394 5.47826 11.6144 5.50543 11.6731 5.55978C11.7318 5.61413 11.7611 5.68357 11.7611 5.76812L11.7611 13.942L13.9522 13.942C14.0891 13.942 14.1836 13.9994 14.2358 14.1141C14.288 14.2289 14.2717 14.3345 14.1869 14.4312L10.7634 17.9094C10.6982 17.9698 10.6232 18 10.5384 18C10.4472 18 10.3689 17.9698 10.3037 17.9094L6.8313 14.4312C6.74652 14.3345 6.73022 14.2289 6.78239 14.1141Z" fill="#E11D23"/>
<path d="M7.48323 3.88587C7.42455 4.0006 7.32999 4.05797 7.19957 4.05797H5.00854V12.2319C5.00854 12.3164 4.9792 12.3859 4.92051 12.4402C4.86182 12.4946 4.78683 12.5217 4.69554 12.5217H2.81751C2.72621 12.5217 2.65122 12.4946 2.59254 12.4402C2.53385 12.3859 2.5045 12.3164 2.5045 12.2319V4.05797H0.313471C0.17653 4.05797 0.081978 4.0006 0.0298101 3.88587C-0.0223575 3.77113 -0.00605533 3.66546 0.0787173 3.56884L3.50221 0.0905798C3.56742 0.0301929 3.64241 0 3.72718 0C3.81847 0 3.89672 0.0301929 3.96193 0.0905798L7.43433 3.56884C7.5191 3.66546 7.5354 3.77113 7.48323 3.88587Z" fill="#2187E5"/>
</symbol>
<symbol id="icon-assist" viewBox="0 0 1024 1024">
<path d="M711.111111 90.851556a55.296 55.296 0 0 1 43.633778-1.934223c14.279111 5.347556 25.827556 16.042667 32.199111 30.094223l174.705778 381.383111c6.542222 14.108444 7.224889 29.752889 1.991111 44.373333a57.571556 57.571556 0 0 1-29.582222 32.824889l-749.226667 355.612444a55.978667 55.978667 0 0 1-24.120889 5.461334c-21.504 0-42.154667-12.458667-51.882667-33.564445l-38.570666-84.195555c-33.223111-72.647111-2.275556-159.288889 69.063111-193.080889l87.950222-41.756445L341.902222 283.875556a57.457778 57.457778 0 0 1 29.127111-31.687112l32.881778-15.587555a56.206222 56.206222 0 0 1 58.936889 6.599111l9.500444 7.452444c39.594667 31.175111 86.755556 37.546667 126.065778 17.180445 39.480889-20.48 62.350222-63.431111 60.871111-114.915556a56.433778 56.433778 0 0 1 31.857778-52.565333z m173.511111 378.766222L135.111111 825.400889l25.372445 55.239111 749.454222-355.726222-25.315556-55.296z m-149.390222-326.087111l-18.773333 9.102222c0.967111 36.807111-7.395556 71.68-24.064 101.091555-16.099556 28.444444-39.651556 51.370667-67.925334 65.991112a162.759111 162.759111 0 0 1-91.932444 17.123555 186.026667 186.026667 0 0 1-95.004445-39.992889l-9.500444-7.395555-32.881778 15.530666-30.264889 79.587556 94.435556 35.043555c13.084444 4.835556 20.593778 18.545778 18.318222 32.142223l-1.308444 5.063111a28.558222 28.558222 0 0 1-26.851556 19.171555 25.315556 25.315556 0 0 1-9.671111-1.877333l-95.459556-35.384889-24.519111 64.625778 63.772445 23.665778c13.084444 4.892444 20.593778 18.545778 18.318222 32.142222l-1.308444 5.12a28.558222 28.558222 0 0 1-26.851556 19.114667 25.315556 25.315556 0 0 1-9.671111-1.820445L299.235556 557.454222l-19.285334 50.972445-0.455111 1.137777a57.571556 57.571556 0 0 1-28.216889 29.411556l-88.007111 41.642667c-34.702222 16.497778-53.475556 53.703111-48.753778 90.453333l745.927111-354.133333-125.269333-273.408z" fill="#3B939E"></path>
</symbol>
<symbol id="icon-Penalty" viewBox="0 0 1024 1024">
<path d="M802.133333 108.088889a170.666667 170.666667 0 0 1 170.382223 160.654222l0.284444 10.012445v409.6h-68.266667V278.755556a102.4 102.4 0 0 0-93.980444-102.058667L802.133333 176.355556H221.866667a102.4 102.4 0 0 0-102.058667 93.980444L119.466667 278.755556v409.6H51.2V278.755556a170.666667 170.666667 0 0 1 160.654222-170.382223L221.866667 108.088889h580.266666z" fill="#64B78D"></path>
<path d="M392.533333 176.355556v136.533333h238.933334V176.355556h34.133333v136.533333h238.933333v34.133333h-238.933333v136.533334h238.933333v34.133333h-238.933333v170.666667h-34.133333v-170.666667H392.533333v170.666667h-34.133333v-170.666667H119.466667v-34.133333h238.933333V347.022222H119.466667v-34.133333h238.933333V176.355556h34.133333z m238.933334 170.666666H392.533333v136.533334h238.933334V347.022222z" fill="#E2E2E2"></path>
<path d="M512 398.222222a284.444444 284.444444 0 1 1 0 568.888889A284.444444 284.444444 0 0 1 512 398.222222z m0 52.110222c-20.081778 0-39.537778 2.56-58.083556 7.338667l10.296889 27.648-61.895111 51.825778-43.52-29.127111 9.272889-7.736889A231.879111 231.879111 0 0 0 279.665778 682.666667c0 68.608 29.752889 130.275556 77.027555 172.771555l44.145778-24.120889 53.304889 61.212445-7.338667 13.198222a232.391111 232.391111 0 0 0 167.537778-14.449778l-66.730667-11.036444-12.515555-81.351111 70.997333-37.376 56.32 58.254222-30.321778 61.838222a232.96 232.96 0 0 0 100.693334-126.464l-20.935111-5.859555-4.152889-82.204445 34.816-13.767111A232.391111 232.391111 0 0 0 512 450.332444z m-140.458667 173.511112l72.248889 34.816-9.728 81.692444-78.222222 15.758222-38.627556-72.021333 54.328889-60.302222z m247.751111-103.480889l34.929778 74.012444-57.287111 57.230222-70.371555-38.684444L540.444444 531.911111l78.904889-11.491555z" fill="#64B78D"></path>
</symbol>
<symbol id="icon-own-goal" viewBox="0 0 1024 1024">
<path d="M512 85.333333a426.666667 426.666667 0 1 1 0 853.333334 426.666667 426.666667 0 0 1 0-853.333334z m0 63.203556c-30.094222 0-59.278222 3.640889-87.267556 10.524444l5.176889 12.970667-104.96 81.578667-40.391111-25.144889-2.56 2.104889A362.723556 362.723556 0 0 0 148.48 512c0 117.816889 56.092444 222.549333 142.961778 288.995556l-12.686222-10.24a365.511111 365.511111 0 0 1-12.970667-11.377778l44.145778-18.830222 90.396444 96.369777-0.568889 0.910223 11.548445 3.527111a363.576889 363.576889 0 0 0 455.224889-269.312l-16.668445-4.323556-7.054222-129.479111 27.022222-9.955556 2.161778 13.880889A363.52 363.52 0 0 0 512 148.536889z m158.606222 458.467555l95.573334 91.704889-61.383112 115.541334-133.404444-20.252445-21.162667-128.113778 120.376889-58.88zM272.782222 390.144l122.424889 54.840889-16.497778 128.682667-132.551111 24.746666-65.536-113.436444 92.16-94.833778z m420.181334-162.929778l59.164444 116.622222-97.109333 90.055112-119.296-60.871112 23.438222-127.715555 133.802667-18.090667z" fill="#E43434"></path>
</symbol>
<symbol id="icon-goal" width="25" height="25" viewBox="0 0 25 25" fill="none">
<g clip-path="url(#clip0_406_2221)">
<path d="M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25Z" fill="#60BB46"/>
<path opacity="0.64" d="M13.2812 20.3125C17.1645 20.3125 20.3125 17.1645 20.3125 13.2812C20.3125 9.398 17.1645 6.25 13.2812 6.25C9.398 6.25 6.25 9.398 6.25 13.2812C6.25 17.1645 9.398 20.3125 13.2812 20.3125Z" fill="#60BB46"/>
<path d="M19.5312 12.4998C19.5312 16.383 16.3832 19.531 12.5 19.531C8.6168 19.531 5.46875 16.383 5.46875 12.4998C5.46875 12.3787 5.46875 12.2596 5.46875 12.1404C5.67344 8.26249 8.98281 5.28476 12.8607 5.48944C16.4525 5.6789 19.3223 8.54862 19.5117 12.1404C19.5312 12.2596 19.5312 12.3787 19.5312 12.4998Z" fill="white"/>
<path d="M15.7813 16.4882H18.291C17.4059 17.7738 16.1182 18.7281 14.6309 19.2011C14.6336 19.1802 14.6396 19.1597 14.6484 19.1406L15.4297 16.6835L13.7754 14.6484H11.2246L9.57031 16.6835L10.3516 19.1406C10.3568 19.157 10.3602 19.1742 10.3613 19.1914C8.87832 18.7193 7.59375 17.7687 6.70898 16.4882H9.21875L10.9102 14.4179L10.1836 11.8789L7.39844 10.7421L5.46875 12.1406C5.54062 10.7097 6.0498 9.3353 6.92773 8.20308L7.64258 10.3964C7.64258 10.3964 7.64258 10.4101 7.64258 10.4179L10.3223 11.4902L12.3047 10.0566V7.32222L10.2539 5.83394C11.7117 5.34702 13.2883 5.34702 14.7461 5.83394L12.6953 7.32612V10.0605L14.6758 11.5019L17.3555 10.4296C17.3555 10.4296 17.3555 10.416 17.3555 10.4082L18.0723 8.20308C18.9502 9.3353 19.4594 10.7097 19.5312 12.1406L17.6016 10.7421L14.8105 11.8652L14.084 14.4042L15.7754 16.4746C15.7754 16.4746 15.7793 16.4843 15.7813 16.4882Z" fill="black"/>
<path opacity="0.24" d="M17.2695 7.88086C18.9576 11.3779 17.491 15.5814 13.9939 17.2695C12.0629 18.2016 9.81191 18.2016 7.88086 17.2695C10.5344 19.8012 14.7379 19.7025 17.2695 17.049C19.7176 14.4832 19.7176 10.4467 17.2695 7.88086Z" fill="url(#paint0_linear_406_2221)"/>
</g>
<defs>
<linearGradient id="paint0_linear_406_2221" x1="17.2753" y1="17.1153" x2="12.4917" y2="12.4946" gradientUnits="userSpaceOnUse">
<stop stop-color="#60BB46"/>
<stop offset="1" stop-color="#60BB46" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_406_2221">
<rect width="25" height="25" fill="white"/>
</clipPath>
</defs>
</symbol>
<symbol id="icon-goal-blue" width="25" height="25" viewBox="0 0 25 25" fill="none"><g clip-path="url(#clip0_99_2598)"><path d="M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25Z" fill="#2858D0"></path><path opacity="0.64" d="M13.2812 20.3125C17.1645 20.3125 20.3125 17.1645 20.3125 13.2812C20.3125 9.398 17.1645 6.25 13.2812 6.25C9.398 6.25 6.25 9.398 6.25 13.2812C6.25 17.1645 9.398 20.3125 13.2812 20.3125Z" fill="#60BB46"></path><path d="M19.5312 12.4998C19.5312 16.383 16.3832 19.531 12.5 19.531C8.6168 19.531 5.46875 16.383 5.46875 12.4998C5.46875 12.3787 5.46875 12.2596 5.46875 12.1404C5.67344 8.26249 8.98281 5.28476 12.8607 5.48944C16.4525 5.6789 19.3223 8.54862 19.5117 12.1404C19.5312 12.2596 19.5312 12.3787 19.5312 12.4998Z" fill="white"></path><path d="M15.7813 16.4882H18.291C17.4059 17.7738 16.1182 18.7281 14.6309 19.2011C14.6336 19.1802 14.6396 19.1597 14.6484 19.1406L15.4297 16.6835L13.7754 14.6484H11.2246L9.57031 16.6835L10.3516 19.1406C10.3568 19.157 10.3602 19.1742 10.3613 19.1914C8.87832 18.7193 7.59375 17.7687 6.70898 16.4882H9.21875L10.9102 14.4179L10.1836 11.8789L7.39844 10.7421L5.46875 12.1406C5.54062 10.7097 6.0498 9.3353 6.92773 8.20308L7.64258 10.3964C7.64258 10.3964 7.64258 10.4101 7.64258 10.4179L10.3223 11.4902L12.3047 10.0566V7.32222L10.2539 5.83394C11.7117 5.34702 13.2883 5.34702 14.7461 5.83394L12.6953 7.32612V10.0605L14.6758 11.5019L17.3555 10.4296C17.3555 10.4296 17.3555 10.416 17.3555 10.4082L18.0723 8.20308C18.9502 9.3353 19.4594 10.7097 19.5312 12.1406L17.6016 10.7421L14.8105 11.8652L14.084 14.4042L15.7754 16.4746C15.7754 16.4746 15.7793 16.4843 15.7813 16.4882Z" fill="black"></path><path opacity="0.24" d="M17.2695 7.88086C18.9576 11.3779 17.491 15.5814 13.9939 17.2695C12.0629 18.2016 9.81191 18.2016 7.88086 17.2695C10.5344 19.8012 14.7379 19.7025 17.2695 17.049C19.7176 14.4832 19.7176 10.4467 17.2695 7.88086Z" fill="url(#paint0_linear_406_2221)"></path></g><defs><linearGradient id="paint0_linear_99_2598" x1="17.2753" y1="17.1153" x2="12.4917" y2="12.4946" gradientUnits="userSpaceOnUse"><stop stop-color="#60BB46"></stop><stop offset="1" stop-color="#60BB46" stop-opacity="0"></stop></linearGradient><clipPath id="clip0_99_2598"><rect width="25" height="25" fill="white"></rect></clipPath></defs></symbol>
<symbol id="icon-goal-yellow" width="25" height="25" viewBox="0 0 25 25" fill="none"><g clip-path="url(#clip0_1_754)"><path d="M12.5 25C19.4036 25 25 19.4036 25 12.5C25 5.59644 19.4036 0 12.5 0C5.59644 0 0 5.59644 0 12.5C0 19.4036 5.59644 25 12.5 25Z" fill="#D88908"></path><path opacity="0.64" d="M13.2812 20.3125C17.1645 20.3125 20.3125 17.1645 20.3125 13.2812C20.3125 9.398 17.1645 6.25 13.2812 6.25C9.398 6.25 6.25 9.398 6.25 13.2812C6.25 17.1645 9.398 20.3125 13.2812 20.3125Z" fill="#60BB46"></path><path d="M19.5312 12.5C19.5312 16.3832 16.3832 19.5312 12.5 19.5312C8.6168 19.5312 5.46875 16.3832 5.46875 12.5C5.46875 12.3789 5.46875 12.2598 5.46875 12.1406C5.67344 8.2627 8.98281 5.28496 12.8607 5.48965C16.4525 5.6791 19.3223 8.54883 19.5117 12.1406C19.5312 12.2598 19.5312 12.3789 19.5312 12.5Z" fill="white"></path><path d="M15.7813 16.4883H18.291C17.4059 17.7738 16.1182 18.7281 14.6309 19.2012C14.6336 19.1803 14.6396 19.1598 14.6484 19.1406L15.4297 16.6836L13.7754 14.6484H11.2246L9.57031 16.6836L10.3516 19.1406C10.3568 19.157 10.3602 19.1742 10.3613 19.1914C8.87832 18.7193 7.59375 17.7688 6.70898 16.4883H9.21875L10.9102 14.418L10.1836 11.8789L7.39844 10.7422L5.46875 12.1406C5.54062 10.7098 6.0498 9.33536 6.92773 8.20314L7.64258 10.3965C7.64258 10.3965 7.64258 10.4102 7.64258 10.418L10.3223 11.4902L12.3047 10.0567V7.32228L10.2539 5.834C11.7117 5.34708 13.2883 5.34708 14.7461 5.834L12.6953 7.32618V10.0606L14.6758 11.502L17.3555 10.4297C17.3555 10.4297 17.3555 10.416 17.3555 10.4082L18.0723 8.20314C18.9502 9.33536 19.4594 10.7098 19.5312 12.1406L17.6016 10.7422L14.8105 11.8652L14.084 14.4043L15.7754 16.4746C15.7754 16.4746 15.7793 16.4844 15.7813 16.4883Z" fill="black"></path><path opacity="0.24" d="M17.2695 7.88087C18.9576 11.3779 17.491 15.5815 13.9939 17.2695C12.0628 18.2016 9.81185 18.2016 7.8808 17.2695C10.5343 19.8012 14.7378 19.7026 17.2695 17.049C19.7175 14.4832 19.7175 10.4467 17.2695 7.88087Z" fill="url(#paint0_linear_1_754)"></path></g><defs><linearGradient id="paint0_linear_1_754" x1="17.2753" y1="17.1153" x2="12.4917" y2="12.4946" gradientUnits="userSpaceOnUse"><stop stop-color="#60BB46"></stop><stop offset="1" stop-color="#60BB46" stop-opacity="0"></stop></linearGradient><clipPath id="clip0_1_754"><rect width="25" height="25" fill="white"></rect></clipPath></defs></symbol>
<symbol id="icon-Injured" viewBox="0 0 1024 1024">
<path d="M670.492444 113.777778l212.48 145.066666-212.48 145.066667V312.547556h-278.186666a158.947556 158.947556 0 0 0-128.796445 252.188444l20.650667 28.444444-87.210667 81.237334-26.567111-35.100445a278.186667 278.186667 0 0 1 221.866667-446.008889h278.186667V113.777778z" fill="#0A6AFF"></path>
<path d="M826.026667 348.046222l26.624 35.100445a278.186667 278.186667 0 0 1-221.866667 446.008889l-278.243556-0.056889v79.530666l-212.48-145.066666 212.48-145.066667v91.420444h278.186667a158.947556 158.947556 0 0 0 128.796445-252.188444l-20.650667-28.444444 87.210667-81.237334z m-274.773334 4.209778v99.328h99.384889v99.384889L551.253333 550.912v99.384889H451.925333l-0.056889-99.384889H352.540444V451.640889h99.328V352.256H551.253333z" fill="#E74C5B"></path>
</symbol>
<symbol id="icon-yellow-card" width="11" height="13" viewBox="0 0 11 13" fill="none">
<rect width="11" height="13" rx="1" fill="#FFBA00"/>
</symbol>
<symbol id="icon-twoyellow-red" viewBox="0 0 1024 1024">
<path d="M550.4 151.210667l295.708444 77.198222a56.888889 56.888889 0 0 1 40.504889 70.144l-132.949333 483.726222a56.888889 56.888889 0 0 1-69.233778 39.992889l-295.708444-77.255111a56.888889 56.888889 0 0 1-40.448-70.144L481.166222 191.146667a56.888889 56.888889 0 0 1 69.233778-39.936z" fill="#E43434"></path>
<path d="M124.700444 226.133333m56.888889 0l306.346667 0q56.888889 0 56.888889 56.888889l0 500.622222q0 56.888889-56.888889 56.888889l-306.346667 0q-56.888889 0-56.888889-56.888889l0-500.622222q0-56.888889 56.888889-56.888889Z" fill="#FEBD33"></path>
</symbol>
<symbol id="icon-red-card" width="11" height="13" viewBox="0 0 11 13" fill="none">
<rect width="11" height="13" rx="1" fill="#E43434"/>
</symbol>
<symbol id="icon-go-top" viewBox="0 0 1024 1024">
<path d="M512 202.386286l419.949714 414.464-71.899428 72.886857-296.850286-292.937143V1002.057143h-102.4V396.8l-296.850286 292.937143-71.899428-72.886857L512 202.386286zM1024 0v102.4H0V0h1024z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-football1" viewBox="0 0 1024 1024">
<path d="M512 25.486222c272.308148 0 493.037037 220.728889 493.037037 493.037037s-220.728889 493.037037-493.037037 493.037037-493.037037-220.728889-493.037037-493.037037 220.728889-493.037037 493.037037-493.037037z m0 37.925926c-33.147259 0-65.460148 3.527111-96.597333 10.24l-17.066667 4.058074 20.062815 53.285926-121.287111 100.162371-84.119704-55.751112A454.049185 454.049185 0 0 0 56.888889 518.523259c0 144.877037 67.735704 274.014815 173.283555 357.338074l49.682963-22.603852 84.574815 95.914667c46.26963 15.853037 95.914667 24.462222 147.569778 24.462222 78.885926 0 153.031111-20.100741 217.694815-55.371851l-147.911111-23.969186-24.424297-157.202963 139.036445-72.248889 110.326518 112.564149-67.697777 135.623111a456.476444 456.476444 0 0 0 204.269037-248.869926l3.602963-11.112296-43.38726-11.870815-8.154074-158.90963 67.508148-26.396444C932.257185 234.154667 742.058667 63.412148 512 63.412148z m-275.152593 335.265185l141.463704 67.280593-19.038815 157.999407-153.182815 30.340741-75.662222-139.188148 106.420148-116.432593z m485.338074-199.907555l68.418371 143.056592-112.260741 110.554074-137.784889-74.714074 27.117037-156.747851 154.510222-22.148741z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-sousuo" viewBox="0 0 1025 1024">
<path d="M116.370091 134.485333a395.946667 395.946667 0 0 1 611.464533 496.64 62.327467 62.327467 0 0 1 6.280533 5.461334l212.445867 212.445866a68.266667 68.266667 0 0 1-96.597333 96.529067l-212.309334-212.3776-2.594133-2.730667a396.014933 396.014933 0 0 1-518.690133-595.968z m96.529066 96.529067a259.413333 259.413333 0 1 0 366.865067 366.865067 259.413333 259.413333 0 0 0-366.865067-366.865067z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-AiScorelogo" viewBox="0 0 3891 1024">
<path d="M5.68888889 0m153.6 0l706.56 0q153.6 0 153.6 153.6l0 706.56q0 153.6-153.6 153.6l-706.56 0q-153.6 0-153.6-153.6l0-706.56q0-153.6 153.6-153.6Z" fill="#FFFFFF"></path>
<path d="M489.99992889 119.6032c-24.576 1.26976-49.02912 4.95616-72.9088 11.0592l72.9088 45.21984V119.64416z" fill="#0F80DA"></path>
<path d="M641.10136889 700.2112l-0.90112-1.2288h-106.78272v188.12928a372.57216 372.57216 0 0 0 225.56672-89.088 320.79872 320.79872 0 0 1-117.88288-97.81248zM700.86200889 527.1552l-40.26368 123.94496a257.88416 257.88416 0 0 0 4.5056 7.3728 283.56608 283.56608 0 0 0 127.75424 107.64288 372.89984 372.89984 0 0 0 102.15424-238.96064h-194.1504z" fill="#E62F2B"></path>
<path d="M209.34200889 372.85888l-14.70464-88.30976a372.24448 372.24448 0 0 0-67.09248 195.05152l71.14752-71.14752 14.21312-14.17216-3.56352-21.42208zM351.22744889 787.98848L350.57208889 786.432H249.40088889c39.3216 36.864 86.13888 64.83968 137.25696 81.92l-35.4304-80.36352z" fill="#0F80DA"></path>
<path d="M533.37656889 119.52128v190.0544l14.25408 10.36288 58.1632 42.31168a320.63488 320.63488 0 0 1 149.7088-156.54912 372.5312 372.5312 0 0 0-222.12608-86.17984z" fill="#E62F2B"></path>
<path d="M365.48152889 655.85152l-52.75648-162.36544-10.4448-32.11264-5.03808-2.21184-62.17728-27.0336-106.61888 106.61888a372.49024 372.49024 0 0 0 82.65728 204.5952h129.88416l29.24544-50.66752 4.62848-7.9872-9.37984-28.83584z" fill="#0F80DA"></path>
<path d="M789.74520889 237.1584a283.48416 283.48416 0 0 0-148.23424 151.7568l50.176 36.4544 31.37536 22.77376-10.15808 31.25248h182.0672a372.89984 372.89984 0 0 0-105.22624-242.19648z" fill="#E62F2B"></path>
<path d="M423.89048889 698.94144h-3.39968l-6.51264 11.30496-30.02368 51.97824 52.18304 118.1696c17.57184 3.4816 35.38944 5.69344 53.248 6.63552v-188.08832H423.89048889zM481.68504889 219.25888l-118.784-73.728a374.9888 374.9888 0 0 0-137.33888 94.74048l19.37408 116.16256 4.66944 28.18048 13.39392 5.81632 24.08448 10.48576 44.76928 19.456 0.32768 0.16384-0.08192-0.32768 149.58592-108.70784V219.25888zM619.10584889 432.08704l-31.82592-23.1424-76.1856-55.296-151.87968 110.30528-4.99712 3.6864-0.53248 0.32768 1.6384 4.99712 56.5248 173.99808 1.67936 5.20192 0.28672 0.8192h194.56l0.28672-0.8192 1.2288-3.76832 17.08032-52.59264 32.80896-100.9664 3.23584-9.95328 5.48864-16.91648z" fill="#0F80DA"></path>
<path d="M520.55608889 568.5248l-6.59456-20.11136h-40.01792l-6.79936 20.15232h-22.9376l40.96-113.95072h17.24416l41.08288 113.95072h-22.9376z m-26.2144-80.2816l-14.21312 41.45152h27.97568l-13.76256-41.45152zM555.61784889 470.95808v-16.95744h21.01248v16.95744h-21.01248z m0.32768 97.60768v-83.39456h20.52096v83.39456h-20.52096z" fill="#FFFFFF"></path>
<path d="M1779.37976889 777.4208L1597.84504889 248.13568h-129.024L1285.68888889 777.4208h121.0368l27.8528-89.66144h195.91168l27.8528 89.7024h121.0368z m-246.82496-400.71168l69.2224 221.3888h-138.52672l69.30432-221.3888z m348.7744-30.18752c35.84 0 59.71968-21.42208 59.71968-53.94432 0-34.11968-23.87968-56.36096-59.71968-56.36096-37.43744 0-62.13632 22.24128-62.13632 56.36096 0 32.52224 24.69888 53.94432 62.13632 53.94432z m50.13504 430.8992V409.1904H1828.81848889v368.2304h102.68672z m277.95456 11.8784c121.856 0 191.8976-61.0304 191.8976-166.62528 0-73.76896-50.176-126.976-150.48704-157.9008l-54.14912-15.85152c-42.1888-13.5168-63.73376-33.34144-63.73376-58.73664 0-31.744 28.672-51.56864 76.43136-51.56864a287.58016 287.58016 0 0 1 131.39968 35.71712l43.008-89.7024c-65.29024-33.30048-126.60736-49.9712-183.9104-49.9712-54.96832 0-98.79552 14.29504-132.21888 42.84416a139.18208 139.18208 0 0 0-49.3568 111.12448c0 79.33952 49.3568 132.5056 132.95616 157.9008l53.37088 15.85152c53.32992 16.62976 79.62624 33.34144 79.62624 64.3072 0 35.67616-27.07456 56.32-74.05568 56.32-56.5248 0-114.688-17.44896-173.58848-52.4288l-43.8272 96.82944c72.4992 41.28768 144.95744 61.93152 216.59648 61.93152z m417.25952 0a278.3232 278.3232 0 0 0 144.91648-42.02496l-37.43744-79.33952a185.71264 185.71264 0 0 1-93.184 28.54912c-62.8736 0-104.32512-42.06592-104.32512-103.13728 0-62.6688 41.41056-103.13728 104.32512-103.13728a185.71264 185.71264 0 0 1 93.184 28.59008l37.43744-79.38048a278.3232 278.3232 0 0 0-144.91648-42.02496c-58.1632 0-105.14432 18.2272-140.94336 53.94432-35.06176 35.71712-52.59264 82.5344-52.59264 142.04928 0 59.51488 17.53088 107.1104 52.59264 142.82752 35.79904 35.6352 82.7392 53.12512 140.9024 53.12512z m503.27552-53.94432c35.79904-35.67616 53.32992-83.31264 53.32992-142.00832 0-58.73664-17.53088-106.33216-53.32992-142.04928-35.84-35.71712-82.04288-53.98528-140.16512-53.98528-58.1632 0-104.32512 18.26816-140.16512 53.98528-35.79904 35.71712-53.37088 83.31264-53.37088 142.00832 0 58.65472 17.53088 106.33216 53.37088 142.00832 35.79904 35.71712 82.00192 53.98528 140.12416 53.98528 58.1632 0 104.32512-18.2272 140.16512-53.94432z m-47.02208-141.23008c0 60.29312-39.03488 100.7616-93.96224 100.7616-54.96832 0-93.96224-40.46848-93.184-100.7616 0-62.6688 38.21568-102.4 93.184-102.4 54.92736 0 93.96224 39.7312 93.96224 102.4zM3454.80760889 397.312c-50.176 0-87.61344 19.8656-112.31232 60.33408L3333.77080889 397.312l-90.80832 11.8784v368.2304h102.72768v-169.00096c0-66.68288 39.03488-104.77568 103.50592-104.77568 11.4688 0.4096 22.9376 1.72032 34.2016 3.97312l9.58464-106.33216a171.2128 171.2128 0 0 0-38.17472-3.97312z m253.99296 0c-58.1632 0-104.32512 18.26816-140.12416 53.98528-35.06176 35.71712-52.59264 82.5344-52.59264 141.23008 0 60.33408 19.08736 107.9296 56.5248 143.64672 37.43744 35.71712 85.1968 53.16608 143.36 53.16608a290.44736 290.44736 0 0 0 157.65504-47.63648l-31.86688-65.86368a211.84512 211.84512 0 0 1-115.46624 35.71712c-58.12224 0-101.90848-30.96576-113.8688-84.91008h273.94048c7.168-68.23936-4.79232-123.78112-36.6592-165.84704-31.86688-42.06592-78.76608-63.488-140.9024-63.488z m-96.33792 161.87392c11.91936-47.59552 46.98112-77.0048 94.74048-77.0048 50.176 0 84.41856 30.96576 84.41856 77.824l-179.15904-0.8192z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-logo" viewBox="0 0 1024 1024">
<path d="M32 32m144 0l662.4 0q144 0 144 144l0 662.4q0 144-144 144l-662.4 0q-144 0-144-144l0-662.4q0-144 144-144Z" fill="#FFFFFF"></path>
<path d="M486.05333375 144.15999969a349.86666656 349.86666656 0 0 0-68.37333375 10.32l68.37333375 42.40000031V144.18666688z" fill="#0F80DA"></path>
<path d="M627.73333344 688.45333344l-0.88000032-1.17333375h-100.07999999v176.4a349.27999969 349.27999969 0 0 0 211.43999999-83.52 300.72 300.72 0 0 1-110.50666687-91.70666625zM683.73333313 526.18666625l-37.75999969 116.24000062c1.22666625 2.02666688 2.45333344 4.02666656 3.73333312 6.02666625l0.53333344 0.85333313a265.84000031 265.84000031 0 0 0 119.73333375 100.93333406 349.60000031 349.60000031 0 0 0 95.73333281-224.05333406H683.73333313z" fill="#E62F2B"></path>
<path d="M222.93333312 381.54666687l-13.78666687-82.79999999a348.96 348.96 0 0 0-62.9333325 182.87999999l66.72-66.69333374 13.33333313-13.33333313-3.33333375-20.05333312zM355.94666656 770.74666625l-0.61333312-1.44H260.48a350.64 350.64 0 0 0 128.69333344 76.77333375l-33.22666688-75.33333375z" fill="#0F80DA"></path>
<path d="M526.69333344 144.05333375v178.21333312l13.36000031 9.67999969 54.55999969 39.65333344a300.61333312 300.61333312 0 0 1 140.32000031-146.74666687 349.25333344 349.25333344 0 0 0-208.24000031-80.79999938z" fill="#E62F2B"></path>
<path d="M369.33333313 646.85333375l-49.46666625-152.21333344-9.78666657-30.10666687-4.72000031-2.05333313-58.32-25.38666656-99.97333312 99.97333313a349.2 349.2 0 0 0 77.52 191.83999968h121.75999968l27.41333344-47.52 4.32-7.49333343-8.77333312-27.03999938z" fill="#0F80DA"></path>
<path d="M767.06666656 254.34666687a265.75999969 265.75999969 0 0 0-138.96 142.23999938l47.04 34.18666688 29.38666688 21.33333375-9.54666656 29.33333343h170.71999968a349.60000031 349.60000031 0 0 0-98.66666625-227.09333344z" fill="#E62F2B"></path>
<path d="M424.08000031 687.27999969h-3.20000062l-6.10666594 10.56-28.13333344 48.72 48.87999938 110.82666656c16.50666656 3.25333313 33.19999969 5.33333344 49.97333343 6.1866675v-176.29333406h-61.41333281zM478.26666687 237.54666687l-111.36-69.12A351.54666656 351.54666656 0 0 0 238.13333375 257.25333312l18.13333313 108.88000032 4.37333343 26.45333343 12.58666594 5.46666657 22.56 9.81333281 41.9466675 18.24 0.34666594 0.13333406-0.10666594-0.29333344 140.26666594-101.92000031V237.54666687zM607.06666625 437.06666656l-29.83999969-21.67999968-71.41333312-51.86666719-142.39999969 103.46666719-4.66666688 3.38666625-0.48 0.34666687 1.49333344 4.66666688 53.01333281 163.11999937 1.60000032 4.90666687 0.26666625 0.80000063h182.4l0.26666718-0.80000062 1.11999938-3.54666657 16.00000031-49.27999968 30.77333344-94.66666688 3.04000031-9.33333375 5.14666594-15.86666625z" fill="#0F80DA"></path>
<path d="M514.71999969 565.01333375l-6.24-18.88000031h-37.49333344l-6.37333313 18.88000031h-21.46666687l38.4-106.8h16.13333344l38.53333406 106.8h-21.49333406z m-24.58666594-75.3066675l-13.33333406 38.88h26.21333344l-12.87999938-38.88zM547.54666625 473.49333312v-15.86666625h19.70666719v15.86666625h-19.73333344z m0.29333344 91.52000063v-78.13333406h19.28000062v78.13333406h-19.28000062z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-people" viewBox="0 0 1024 1024">
<path d="M932.937143 809.837714a451.730286 451.730286 0 0 0-97.28-144.310857A453.705143 453.705143 0 0 0 691.2 568.32l-1.462857-0.731429a299.52 299.52 0 1 0-350.793143 0.146286c-0.438857 0.292571-0.950857 0.365714-1.462857 0.658286A449.828571 449.828571 0 0 0 193.316571 665.6a453.705143 453.705143 0 0 0-97.28 144.384 449.024 449.024 0 0 0-35.693714 166.765714 9.654857 9.654857 0 0 0 9.435429 9.947429h72.704c5.339429 0 9.508571-4.242286 9.654857-9.435429a360.082286 360.082286 0 0 1 106.057143-246.710857 359.936 359.936 0 0 1 256.292571-106.203428c96.914286 0 187.830857 37.668571 256.365714 106.203428a360.082286 360.082286 0 0 1 106.057143 246.710857 9.508571 9.508571 0 0 0 9.654857 9.435429h72.411429c5.339429 0 9.654857-4.388571 9.654857-9.654857v-0.219429a450.194286 450.194286 0 0 0-35.620571-166.985143zM514.413714 532.553143a206.409143 206.409143 0 0 1-146.870857-60.854857 206.409143 206.409143 0 0 1-60.854857-146.870857c0-55.442286 21.650286-107.666286 60.854857-146.870858A206.409143 206.409143 0 0 1 514.413714 117.028571c55.442286 0 107.666286 21.650286 146.870857 60.928 39.277714 39.204571 60.928 91.428571 60.928 146.870858s-21.650286 107.593143-60.928 146.870857a206.409143 206.409143 0 0 1-146.870857 60.854857z" fill="#AFAFAF"></path>
</symbol>
<symbol id="icon-close" viewBox="0 0 1024 1024">
<path d="M43.489882 43.489882a60.235294 60.235294 0 0 1 85.172706 0L512 426.767059 895.337412 43.489882a60.235294 60.235294 0 1 1 85.172706 85.172706L597.172706 512l383.337412 383.337412a60.235294 60.235294 0 0 1 3.523764 81.347764l-3.523764 3.824942a60.235294 60.235294 0 0 1-85.172706 0L512 597.172706 128.662588 980.510118a60.235294 60.235294 0 1 1-85.172706-85.172706L426.767059 512 43.489882 128.662588a60.235294 60.235294 0 0 1-3.523764-81.347764l3.523764-3.824942z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-loudou" viewBox="0 0 1024 1024">
<path d="M942.545455 0a34.909091 34.909091 0 1 1 0 69.818182h-24.855273c-13.824 202.100364-116.596364 371.851636-258.792727 442.228363 142.196364 70.283636 244.968727 240.034909 258.792727 442.088728l24.855273 0.046545a34.909091 34.909091 0 1 1 0 69.818182H81.454545a34.909091 34.909091 0 1 1 0-69.818182h24.855273c13.824-202.100364 116.596364-371.851636 258.792727-442.228363-142.196364-70.283636-244.968727-240.034909-258.792727-442.088728L81.454545 69.818182a34.909091 34.909091 0 0 1 0-69.818182h861.09091zM512 546.909091c-169.006545 0-313.250909 170.402909-334.661818 395.636364h669.323636c-21.410909-225.233455-165.655273-395.636364-334.661818-395.636364z m334.661818-465.454546H177.338182c21.410909 225.233455 165.655273 395.636364 334.661818 395.636364 169.006545 0 313.250909-170.402909 334.661818-395.636364z" fill="#1081DB"></path>
</symbol>
<symbol id="icon-basketball1" viewBox="0 0 1024 1024">
<path d="M529.472 33.472a480 480 0 1 1 0 960 480 480 0 0 1 0-960z m-71.168 632.96l-5.696 0.64A351.232 351.232 0 0 0 225.92 798.08a415.168 415.168 0 0 0 303.552 131.392c40.768 0 80.128-5.824 117.376-16.768a481.28 481.28 0 0 1-188.544-246.336z m67.52-2.048l3.52 9.088a417.6 417.6 0 0 0 192 209.152c28.416-14.72 54.784-32.64 78.72-53.184a351.04 351.04 0 0 0-274.24-165.056z m349.12-382.72a445.824 445.824 0 0 1-370.752 157.12 415.552 415.552 0 0 0 2.176 160.896l-4.288-0.064A415.04 415.04 0 0 1 846.4 782.848a413.696 413.696 0 0 0 99.072-269.376 414.08 414.08 0 0 0-70.528-231.808z m-686.784-6.016l-5.568 8.192a414.08 414.08 0 0 0-69.12 229.632 414.08 414.08 0 0 0 71.68 233.536 414.72 414.72 0 0 1 256.768-143.04 483.584 483.584 0 0 1-1.216-174.08 446.976 446.976 0 0 1-252.544-154.24z m533.248-131.264l-1.792 0.96a417.472 417.472 0 0 0-198.72 230.144A382.528 382.528 0 0 0 834.304 230.4c-32.32-34.752-70.4-64-112.896-86.08z m-192-46.912c-117.696 0-224 48.96-299.648 127.552a383.488 383.488 0 0 0 226.304 142.784 480.64 480.64 0 0 1 190.72-253.44 413.184 413.184 0 0 0-117.312-16.896z" fill="#999999"></path>
</symbol>
<symbol id="icon-oddstime" viewBox="0 0 1024 1024">
<path d="M512 32a480 480 0 1 1 0 960 480 480 0 0 1 0-960z m0 64a416 416 0 1 0 0 832 416 416 0 0 0 0-832z m0 96a32 32 0 0 1 32 32v274.752l177.152 177.152a32 32 0 0 1-45.248 45.248L494.848 540.096l-2.432-2.816A32 32 0 0 1 480 512V224a32 32 0 0 1 32-32z" fill="#999999"></path>
</symbol>
<symbol id="icon-basketball_animation" viewBox="0 0 1280 1024">
<path d="M1109.333333 42.666667A128 128 0 0 1 1237.333333 170.666667v682.666666a128 128 0 0 1-128 128H170.666667A128 128 0 0 1 42.666667 853.333333V170.666667A128 128 0 0 1 170.666667 42.666667h938.666666zM640 170.666667a42.666667 42.666667 0 0 0-41.984 34.986666L597.333333 213.333333v133.376a170.666667 170.666667 0 0 0-12.8 326.826667l12.8 3.754667V810.666667a42.666667 42.666667 0 0 0 84.650667 7.68L682.666667 810.666667l0.085333-133.376a170.666667 170.666667 0 0 0 12.8-326.741334L682.666667 346.709333 682.666667 213.333333a42.666667 42.666667 0 0 0-42.666667-42.666666zM1194.666667 298.666667a213.333333 213.333333 0 1 0 0 426.666666v-85.333333a128 128 0 0 1 0-256v-85.333333z m-1109.333334 0v85.333333a128 128 0 0 1 0 256v85.333333a213.333333 213.333333 0 1 0 0-426.666666zM640 426.666667a85.333333 85.333333 0 0 1 9.984 170.069333L640 597.333333l-9.984-0.597333A85.333333 85.333333 0 0 1 640 426.666667z" fill="#FFA830"></path>
</symbol>
<symbol id="icon-breadcrumb-more" viewBox="0 0 1024 1024">
<path d="M199.168 846.506667a85.333333 85.333333 0 1 0 113.834667 127.317333L768 566.442667a85.333333 85.333333 0 0 0 0-127.146667L333.482667 50.176a85.333333 85.333333 0 1 0-113.834667 127.146667l363.52 325.461333-384 343.893333z" fill="#919BB0"></path>
</symbol>
<symbol id="icon-basketball" viewBox="0 0 1024 1024">
<path d="M512 0c282.88 0 512 229.376 512 512s-229.12 512-512 512S0 794.624 0 512 229.12 0 512 0zM404.3776 644.4544l-2.9696 1.1264a358.0416 358.0416 0 0 0-186.1632 170.1888A422.912 422.912 0 0 0 512 936.8576c37.0688 0 73.0112-4.7616 107.3152-13.7216a515.2768 515.2768 0 0 1-214.9376-278.6816z m128.8704-24.064c-12.8 0-25.4464 0.6656-37.888 1.9456a421.7344 421.7344 0 0 0 234.752 254.208 426.752 426.752 0 0 0 105.0624-89.088 356.3008 356.3008 0 0 0-301.9264-167.0656z m-356.352-369.1008l-4.608 5.9392A423.2192 423.2192 0 0 0 87.552 512c0 82.944 23.7568 160.3072 64.768 225.6896a451.6864 451.6864 0 0 1 232.0384-185.088 517.376 517.376 0 0 1 3.2768-150.1696 450.2016 450.2016 0 0 1-210.7392-151.1424z m689.8176 27.2896a448.512 448.512 0 0 1-387.7888 144.7424 420.8128 420.8128 0 0 0-3.072 107.7248 449.1264 449.1264 0 0 1 414.72 172.9536A421.888 421.888 0 0 0 936.448 512c0-86.2208-25.6512-166.4-69.7344-233.472z m-181.9136-154.7264l-2.2016 1.28A422.144 422.144 0 0 0 503.808 332.3904a355.584 355.584 0 0 0 302.592-126.3616 424.96 424.96 0 0 0-121.6-82.176zM512 87.1424a422.5024 422.5024 0 0 0-269.312 96.4096A357.632 357.632 0 0 0 411.648 312.32a514.5088 514.5088 0 0 1 157.3888-221.184A414.976 414.976 0 0 0 512 87.0912z" fill="#055493"></path>
</symbol>
<symbol id="icon-football" viewBox="0 0 1024 1024">
<path d="M493.958095 6.339048c269.360762 0 487.619048 218.35581 487.619048 487.619047 0 269.360762-218.258286 487.619048-487.619048 487.619048-269.263238 0-487.619048-218.258286-487.619047-487.619048 0-269.263238 218.35581-487.619048 487.619047-487.619047z m0 83.382857a405.211429 405.211429 0 0 0-96.060952 11.507809l12.970667 31.061334-107.76381 89.331809-63.195429-42.081524a403.456 403.456 0 0 0-150.186666 314.465524 403.358476 403.358476 0 0 0 142.384762 307.980191l55.686095-25.6 92.745143 105.472c35.888762 10.727619 74.020571 16.384 113.468952 16.384a404.431238 404.431238 0 0 0 390.339048-298.812953l-42.617905-12.190476-7.216762-141.702095 57.295238-23.747048a404.382476 404.382476 0 0 0-397.799619-332.068571z m163.84 518.631619l98.011429 100.352-62.951619 126.488381-136.923429-22.235429-21.650286-140.190476 123.465143-64.414476zM249.563429 371.029333l125.610666 59.977143-16.871619 140.921905-136.045714 27.062857L155.062857 474.843429 249.660952 371.029333z m431.055238-178.273523l60.757333 127.561142-99.669333 98.596572-122.392381-66.657524 24.088381-139.751619 137.216-19.748571z" fill="#055493"></path>
</symbol>
<symbol id="icon-tennis" viewBox="0 0 1024 1024">
<path d="M512 0c282.88 0 512 229.376 512 512s-229.12 512-512 512S0 794.624 0 512 229.12 0 512 0z m424.0384 493.312l-0.4096 0.512c-8.192 10.24-16.2816 19.9168-24.2688 29.184-59.0336 68.8128-109.6192 111.104-159.1296 124.416-72.192 19.456-115.968 22.6304-195.7888 20.0704l-8.8064-0.3072c-58.2656-1.7408-91.3408 0.8704-141.2096 14.6432-85.6064 23.6032-141.7728 89.5488-146.1248 172.2368A422.0928 422.0928 0 0 0 512 936.8576c234.4448 0 424.448-190.208 424.448-424.8576 0-6.2464-0.1024-12.4928-0.4096-18.688z m-377.1392-403.6096l-0.512 3.2768c-35.6864 207.2064-168.0384 362.9568-370.2784 395.8272a307.4048 307.4048 0 0 1-99.8912-0.6144l-0.512 10.8032L87.552 512c0 100.352 34.7136 192.512 92.8256 265.216 28.928-88.4736 101.888-157.5936 201.1136-184.9856 60.3648-16.64 102.1952-19.968 168.96-17.92l8.96 0.256c71.424 2.2528 106.8032-0.256 168.448-16.896 25.8048-6.912 65.024-39.7312 112.5376-95.0784 22.1184-25.7536 45.568-55.6544 72.0384-91.5456a424.704 424.704 0 0 0-353.536-281.344z m-94.8224 0.1536l-3.3792 0.3584A424.96 424.96 0 0 0 103.424 396.4928c23.5008 3.8912 46.848 4.2496 69.632 0.5632 154.7776-25.1904 258.816-143.0528 291.0208-307.2z" fill="#055493"></path>
</symbol>
<symbol id="icon-time" viewBox="0 0 1024 1024">
<path d="M512 1024A512 512 0 1 0 512 0a512 512 0 0 0 0 1024z m0-128a384 384 0 1 1 0-768 384 384 0 0 1 0 768z" fill="#E74C5B"></path>
<path d="M576 258.048a64 64 0 1 0-128 0v255.268571c0 20.187429 9.508571 39.204571 25.746286 51.273143l195.803428 145.92A64 64 0 0 0 746.057143 607.817143L576 481.133714v-223.085714z" fill="#E74C5B"></path>
</symbol>
<symbol id="icon-Whistle" viewBox="0 0 1024 1024">
<path d="M540.611765 641.204706a121.916235 121.916235 0 0 1 158.539294-67.343059 121.916235 121.916235 0 0 1 67.282823 158.539294 121.916235 121.916235 0 0 1-158.539294 67.343059 121.916235 121.916235 0 0 1-67.282823-158.539294z m169.381647 68.427294a61.138824 61.138824 0 0 0-33.67153-79.269647 61.138824 61.138824 0 0 0-79.269647 33.611294 61.138824 61.138824 0 0 0 33.67153 79.269647 61.138824 61.138824 0 0 0 79.269647-33.611294z" fill="#0F80DA"></path>
<path d="M179.802353 172.574118l0.421647-0.963765 586.691765 237.025882c153.901176 62.162824 228.231529 238.170353 166.128941 392.011294a301.357176 301.357176 0 0 1-391.770353 166.369883 300.995765 300.995765 0 0 1-166.369882-391.469177c7.951059-19.696941 20.178824-36.683294 33.249882-52.404706L90.895059 394.962824a30.840471 30.840471 0 0 1-17.046588-15.841883 29.515294 29.515294 0 0 1-0.783059-22.64847l67.584-167.273412a30.298353 30.298353 0 0 1 16.143059-16.444235c7.288471-3.072 23.009882-0.180706 23.009882-0.180706z m-39.273412 177.573647L463.631059 480.677647a30.72 30.72 0 0 1 10.902588 48.609882A238.652235 238.652235 0 0 0 430.682353 598.136471a239.616 239.616 0 0 0 1.746823 184.139294 239.917176 239.917176 0 0 0 131.312942 129.204706 239.977412 239.977412 0 0 0 184.139294-1.686589 240.760471 240.760471 0 0 0 127.578353-315.753411 240.218353 240.218353 0 0 0-131.132236-129.626353L185.584941 238.652235l-45.056 111.49553zM750.110118 46.200471a30.117647 30.117647 0 0 1 16.685176 39.152941l-45.056 111.555764a30.117647 30.117647 0 0 1-55.838118-22.588235l45.056-111.495529a30.117647 30.117647 0 0 1 39.152942-16.624941z m-213.052236 18.432l47.104 110.71247a30.057412 30.057412 0 0 1-55.41647 23.491765l-46.98353-110.712471a30.057412 30.057412 0 1 1 55.296-23.491764z m394.541177 159.382588a30.057412 30.057412 0 0 1-15.902118 39.454117l-110.772706 46.98353a30.117647 30.117647 0 0 1-23.491764-55.416471l110.772705-46.983529a30.117647 30.117647 0 0 1 39.454118 15.962353z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-arrow-tow-right" viewBox="0 0 1024 1024">
<path d="M290.909091 983.272727a29.090909 29.090909 0 0 1-20.596364-49.570909L689.92 512l-418.909091-421.701818a29.090909 29.090909 0 0 1 41.309091-40.96l439.505455 442.181818a29.090909 29.090909 0 0 1 0 40.96l-439.505455 442.181818a28.974545 28.974545 0 0 1-21.410909 8.610909z" fill=""></path>
</symbol>
<symbol id="icon-arrow-tow-down" viewBox="0 0 1024 1024">
<path d="M40.727273 290.909091a29.090909 29.090909 0 0 1 49.570909-20.596364L512 689.92l421.701818-418.909091a29.090909 29.090909 0 0 1 40.96 41.309091l-442.181818 439.505455a29.090909 29.090909 0 0 1-40.96 0l-442.181818-439.505455a28.974545 28.974545 0 0 1-8.610909-21.410909z" fill=""></path>
</symbol>
<symbol id="icon-arrow-tow-top" viewBox="0 0 1024 1024">
<path d="M983.272727 733.090909a29.090909 29.090909 0 0 1-49.570909 20.596364L512 334.08l-421.701818 418.909091a29.090909 29.090909 0 0 1-40.96-41.309091l442.181818-439.505455a29.090909 29.090909 0 0 1 40.96 0l442.181818 439.505455a28.974545 28.974545 0 0 1 8.610909 21.410909z" fill=""></path>
</symbol>
<symbol id="icon-arrow-tow-left" viewBox="0 0 1024 1024">
<path d="M733.090909 40.727273a29.090909 29.090909 0 0 1 20.596364 49.570909L334.08 512l418.909091 421.701818a29.090909 29.090909 0 0 1-41.309091 40.96l-439.505455-442.181818a29.090909 29.090909 0 0 1 0-40.96l439.505455-442.181818a28.974545 28.974545 0 0 1 21.410909-8.610909z" fill=""></path>
</symbol>
<symbol id="icon-arrow-down" viewBox="0 0 1638 1024">
<path d="M768.0988524 207.0583528l-385.85186004 482.31482505A65.17767906 65.17767906 0 0 0 433.08558202 795.22172865L1204.78930211 795.22172865a65.17767906 65.17767906 0 0 0 50.83858967-105.8485508l-385.85186005-482.31482506a65.17767906 65.17767906 0 0 0-101.67717933 1e-8z" fill="#7F97AB"></path>
</symbol>
<symbol id="icon-arrow-right" viewBox="0 0 1024 1024">
<path d="M739.36049097 556.07087086l-418.10825906 334.48660693A56.50111596 56.50111596 0 0 1 229.49441942 846.48660692V177.51339308a56.50111596 56.50111596 0 0 1 91.75781249-44.07087086l418.10825906 334.48660692a56.50111596 56.50111596 0 0 1 0 88.14174172z" fill="#CCCCCC"></path>
</symbol>
<symbol id="icon-arrow-left" viewBox="0 0 1024 1024">
<path d="M284.63950904 556.07087086l418.10825904 334.48660693a56.50111596 56.50111596 0 0 0 91.7578125-44.07087087V177.51339308a56.50111596 56.50111596 0 0 0-91.7578125-44.07087086l-418.10825904 334.48660692a56.50111596 56.50111596 0 0 0 0 88.14174172z" fill="#7F97AB"></path>
</symbol>
<symbol id="icon-first" viewBox="0 0 1024 1024">
<path d="M417.792 74.9568L517.051733 166.570667a29.2864 29.2864 0 0 0 39.7312 0L655.36 75.434667c31.402667-29.013333 78.0288-34.133333 115.029333-12.6976l207.940267 120.4224c39.936 23.210667 55.978667 72.704 37.341867 114.8928l-43.485867 98.440533a90.453333 90.453333 0 0 1-117.76 46.830933l-7.9872-3.345066v472.405333c0 49.902933-40.482133 90.453333-90.453333 90.453333H529.681067a34.338133 34.338133 0 0 1-6.075734-0.546133H317.166933a90.453333 90.453333 0 0 1-90.453333-90.5216V439.432533l-7.9872 3.413334A90.453333 90.453333 0 0 1 101.034667 395.946667L57.480533 297.506133a90.453333 90.453333 0 0 1 37.410134-114.824533L302.762667 62.122667a97.553067 97.553067 0 0 1 115.0976 12.765866zM616.448 443.733333c-13.585067 0-25.258667 2.730667-34.952533 8.055467a61.44 61.44 0 0 0-23.7568 24.234667c-6.144 10.922667-10.581333 24.1664-13.380267 39.867733a319.488 319.488 0 0 0-4.232533 55.5008c0 20.616533 1.365333 38.912 4.096 54.8864 2.730667 16.042667 7.168 29.354667 13.243733 40.1408a61.8496 61.8496 0 0 0 23.688533 24.3712c9.693867 5.461333 21.504 8.192 35.293867 8.192 13.994667 0 25.8048-2.730667 35.362133-8.123733a62.941867 62.941867 0 0 0 23.552-24.098134 123.562667 123.562667 0 0 0 13.1072-40.1408c2.798933-16.315733 4.232533-34.816 4.232534-55.432533 0-20.616533-1.365333-38.843733-4.096-54.613333a124.7232 124.7232 0 0 0-13.1072-39.7312 63.351467 63.351467 0 0 0-23.552-24.7808 69.905067 69.905067 0 0 0-35.498667-8.328534z m-152.439467 4.3008h-40.96a42.325333 42.325333 0 0 1-3.754666 16.452267 26.2144 26.2144 0 0 1-9.6256 10.717867 36.864 36.864 0 0 1-13.653334 4.846933 101.034667 101.034667 0 0 1-17.066666 1.365333v40.072534h38.912v129.6384h-38.912v42.8032h123.0848v-42.8032h-38.024534V448.034133z m152.439467 40.96c10.103467 0 17.408 6.3488 21.777067 18.909867 4.369067 12.561067 6.5536 33.655467 6.5536 63.2832 0 29.354667-2.2528 50.449067-6.690134 63.2832-4.437333 12.834133-11.6736 19.2512-21.640533 19.2512-10.0352 0-17.271467-6.417067-21.7088-19.2512-4.437333-12.834133-6.690133-33.860267-6.690133-62.941867 0-29.832533 2.184533-51.063467 6.5536-63.624533 4.369067-12.561067 11.605333-18.909867 21.845333-18.909867z" fill="#4E8DDF"></path>
</symbol>
<symbol id="icon-live" viewBox="0 0 1280 1024">
<path d="M1109.333333 42.666667A128 128 0 0 1 1237.333333 170.666667v682.666666a128 128 0 0 1-128 128H170.666667A128 128 0 0 1 42.666667 853.333333V170.666667A128 128 0 0 1 170.666667 42.666667h938.666666zM640 170.666667a42.666667 42.666667 0 0 0-41.984 34.986666L597.333333 213.333333v133.376a170.666667 170.666667 0 0 0-12.8 326.826667l12.8 3.754667V810.666667a42.666667 42.666667 0 0 0 84.650667 7.68L682.666667 810.666667l0.085333-133.376a170.666667 170.666667 0 0 0 12.8-326.741334L682.666667 346.709333 682.666667 213.333333a42.666667 42.666667 0 0 0-42.666667-42.666666z m-426.666667 213.333333a42.666667 42.666667 0 0 0-41.984 34.986667L170.666667 426.666667v170.666666a42.666667 42.666667 0 0 0 84.650666 7.68L256 597.333333V426.666667a42.666667 42.666667 0 0 0-42.666667-42.666667z m853.333334 0a42.666667 42.666667 0 0 0-42.666667 42.666667v170.666666a42.666667 42.666667 0 1 0 85.333333 0V426.666667a42.666667 42.666667 0 0 0-42.666666-42.666667z m-426.666667 42.666667a85.333333 85.333333 0 0 1 9.984 170.069333L640 597.333333l-9.984-0.597333A85.333333 85.333333 0 0 1 640 426.666667z" fill="#38903F"></path>
</symbol>
<symbol id="icon-video" viewBox="0 0 1280 1024">
<path d="M1109.333333 42.666667A128 128 0 0 1 1237.333333 170.666667v682.666666a128 128 0 0 1-128 128H170.666667A128 128 0 0 1 42.666667 853.333333V170.666667A128 128 0 0 1 170.666667 42.666667h938.666666zM545.621333 341.504A36.693333 36.693333 0 0 0 512 378.026667v287.061333a36.693333 36.693333 0 0 0 54.613333 32.085333L824.32 553.813333a36.693333 36.693333 0 0 0 0-64.170666L566.613333 346.026667a36.693333 36.693333 0 0 0-13.909333-4.522667z" fill="#DF4E59"></path>
</symbol>
<symbol id="icon-jiantou" viewBox="0 0 1024 1024">
<path d="M172.590545 525.591273a46.545455 46.545455 0 1 0-65.908363 65.908363l372.363636 372.363637a46.545455 46.545455 0 0 0 65.908364 0l372.363636-372.363637a46.545455 46.545455 0 1 0-65.908363-65.908363L512 865.093818 172.590545 525.591273z" fill="#0F80DA"></path>
<path d="M512 399.639273L172.590545 60.136727a46.545455 46.545455 0 0 0-65.908363 65.908364l372.363636 372.363636a46.545455 46.545455 0 0 0 65.908364 0l372.363636-372.363636a46.545455 46.545455 0 1 0-65.908363-65.908364L512 399.639273z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-avatar" viewBox="0 0 1024 1024">
<path d="M512 1024a512 512 0 1 0 0-1024 512 512 0 0 0 0 1024z m0-53.894737a458.105263 458.105263 0 1 1 0-916.210526 458.105263 458.105263 0 0 1 0 916.210526z" fill="#FFFFFF"></path>
<path d="M629.652211 649.431579a172.463158 172.463158 0 0 1 172.463157 172.463158v44.624842A456.218947 456.218947 0 0 1 512 970.105263a456.218947 456.218947 0 0 1-290.169263-103.639579v-44.570947a172.463158 172.463158 0 0 1 172.463158-172.463158h235.358316zM512 267.695158a167.989895 167.989895 0 1 1 0 335.925895 167.989895 167.989895 0 0 1 0-335.925895z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-camera" viewBox="0 0 1280 1024">
<path d="M1195.136 152.512h-228.864C892.8 152.512 863.872 0 788.224 0H457.728c-50.88 0-76.352 152.512-152.512 152.512H76.352C34.24 152.512 0 186.752 0 228.864v661.248c0 42.112 34.24 76.352 76.352 76.352h1118.976c42.112 0 76.288-34.24 76.288-76.352V228.864a76.544 76.544 0 0 0-76.48-76.352z m-559.36 686.72a305.088 305.088 0 0 1-305.28-305.152 305.088 305.088 0 0 1 305.28-305.28 305.088 305.088 0 0 1 305.152 305.28 305.28 305.28 0 0 1-305.216 305.152z m368.768-534.016a38.08 38.08 0 1 1-0.064-76.16 38.08 38.08 0 0 1 0 76.16zM254.208 76.352a25.472 25.472 0 0 0-25.536-25.536H152.32a25.472 25.472 0 0 0-25.472 25.536v25.472h127.168c0.192-0.128 0.192-11.52 0.192-25.472z m381.504 228.864a228.928 228.928 0 0 0 0 457.728 228.928 228.928 0 0 0 0-457.728z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-facebook" viewBox="0 0 1024 1024">
<path d="M0 0m73.142857 0l877.714286 0q73.142857 0 73.142857 73.142857l0 877.714286q0 73.142857-73.142857 73.142857l-877.714286 0q-73.142857 0-73.142857-73.142857l0-877.714286q0-73.142857 73.142857-73.142857Z" fill="#FFFFFF"></path>
<path d="M471.844571 1024V623.652571H329.142857v-156.013714h142.701714V352.365714C471.844571 219.062857 558.262857 146.285714 684.397714 146.285714c60.416 0 112.347429 4.169143 127.488 6.070857v139.556572h-87.625143c-68.388571 0-81.700571 31.012571-81.700571 76.324571v99.510857h163.474286l-21.211429 156.416h-142.262857V1024h-170.715429z" fill="#4164AD"></path>
</symbol>
<symbol id="icon-google" viewBox="0 0 1024 1024">
<path d="M0 0m73.142857 0l877.714286 0q73.142857 0 73.142857 73.142857l0 877.714286q0 73.142857-73.142857 73.142857l-877.714286 0q-73.142857 0-73.142857-73.142857l0-877.714286q0-73.142857 73.142857-73.142857Z" fill="#FFFFFF"></path>
<path d="M127.817143 318.098286c69.229714-140.909714 221.366857-237.385143 378.806857-236.470857 107.300571-3.218286 215.808 37.083429 293.229714 111.725714a27835.977143 27835.977143 0 0 0-121.197714 118.052571c-46.921143-41.472-108.982857-66.048-172.032-62.939428-107.52-0.182857-206.482286 76.946286-240.128 177.773714-46.445714-35.803429-93.184-71.204571-138.678857-108.141714z" fill="#EB4F43"></path>
<path d="M127.597714 705.718857c-61.549714-119.332571-61.915429-268.470857 0.219429-387.657143 45.494857 36.937143 92.233143 72.411429 138.678857 108.178286a272.128 272.128 0 0 0 0.109714 171.373714 11985.92 11985.92 0 0 0-139.008 108.105143z" fill="#FBC017"></path>
<path d="M512 433.883429c134.546286 0.146286 269.092571-0.731429 403.565714 0.365714 30.537143 142.372571-9.069714 304.676571-118.820571 404.297143-44.617143-35.584-90.770286-69.302857-134.948572-105.472 44.690286-33.572571 78.957714-83.236571 86.930286-139.190857-78.848-0.109714-157.732571 0.109714-236.617143-0.109715-0.256-53.284571-0.073143-106.569143-0.073143-159.890285z" fill="#4889F3"></path>
<path d="M127.597714 705.718857a11985.92 11985.92 0 0 1 138.971429-108.105143c19.2 54.966857 55.844571 103.862857 104.484571 136.082286 85.357714 57.563429 205.641143 57.051429 290.742857-0.621714 44.178286 36.169143 90.331429 69.888 134.948572 105.472-90.550857 85.650286-222.829714 116.150857-344.246857 100.096-137.874286-17.92-263.533714-108.361143-324.900572-232.923429z" fill="#3CAB5B"></path>
</symbol>
<symbol id="icon-xinxinxi" viewBox="0 0 1024 1024">
<path d="M66.160012 526.947212a51.190837 51.190837 0 0 1 72.486225 0L511.92982 900.333176l373.283582-373.385964a51.190837 51.190837 0 1 1 72.486225 72.486225l-409.526695 409.526695a51.190837 51.190837 0 0 1-72.486225 0l-409.526695-409.526695a51.190837 51.190837 0 0 1 0-72.486225z m0-511.908368a51.190837 51.190837 0 0 1 72.486225 0L511.92982 388.424808 885.213402 15.038844a51.190837 51.190837 0 1 1 72.486225 72.486225l-409.526695 409.526695a51.190837 51.190837 0 0 1-72.486225 0l-409.526695-409.526695a51.190837 51.190837 0 0 1 0-72.486225z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-shoushang" viewBox="0 0 1024 1024">
<path d="M71.111111 71.111111m113.777778 0l682.666667 0q113.777778 0 113.777777 113.777778l0 682.666667q0 113.777778-113.777777 113.777777l-682.666667 0q-113.777778 0-113.777778-113.777777l0-682.666667q0-113.777778 113.777778-113.777778Z" fill="#FFFFFF"></path>
<path d="M184.888889 42.666667h682.666667a142.222222 142.222222 0 0 1 142.222222 142.222222v682.666667a142.222222 142.222222 0 0 1-142.222222 142.222222h-682.666667a142.222222 142.222222 0 0 1-142.222222-142.222222v-682.666667a142.222222 142.222222 0 0 1 142.222222-142.222222z m0 56.888889a85.333333 85.333333 0 0 0-85.333333 85.333333v682.666667a85.333333 85.333333 0 0 0 85.333333 85.333333h682.666667a85.333333 85.333333 0 0 0 85.333333-85.333333v-682.666667a85.333333 85.333333 0 0 0-85.333333-85.333333h-682.666667z" fill="#EEEEEE"></path>
<path d="M412.444444 201.159111h227.555556v650.183111h-227.555556z" fill="#E43434"></path>
<path d="M851.285333 412.444444v227.555556H201.102222v-227.555556z" fill="#E43434"></path>
</symbol>
<symbol id="icon-zhuanhui" viewBox="0 0 1228 1024">
<path d="M619.7248 0l607.5392 504.7296-607.5392 506.1632V0zM0 314.4704h619.7248v372.736H0v-372.736z" fill="#73C658"></path>
</symbol>
<symbol id="icon-world" viewBox="0 0 1024 1024">
<path d="M512 0c282.7776 0 512 229.2224 512 512s-229.2224 512-512 512C246.528 1024 28.2624 821.9648 2.56 563.2512L0 563.2v-51.2C0 229.2224 229.2224 0 512 0z m0 716.8a460.8 460.8 0 0 0-134.1952 19.8656C404.1216 877.568 454.3488 972.8 512 972.8s107.8784-95.232 134.144-236.1344A459.008 459.008 0 0 0 512 716.8z m-183.3984 37.9392l-3.4304 1.536a461.4656 461.4656 0 0 0-128.4096 85.1968l-8.4992 8.2432 5.12-4.864a459.8784 459.8784 0 0 0 213.0432 115.8144c-34.6112-47.616-60.9792-119.296-77.824-205.9264z m366.7968 0l-0.4096 2.0992c-16.8448 85.7088-43.0592 156.6208-77.4656 203.776a459.3664 459.3664 0 0 0 213.1456-115.712 460.8 460.8 0 0 0-135.2704-90.112z m-387.328-191.488H54.016a458.752 458.752 0 0 0 104.3456 244.1728 512.3072 512.3072 0 0 1 161.536-104.5504A1320.448 1320.448 0 0 1 308.0704 563.2z m356.608 0H359.3216c1.5872 42.8544 5.12 83.968 10.3936 122.4704A508.5696 508.5696 0 0 1 512 665.6c49.408 0 97.1776 7.0144 142.336 20.0704 5.2224-38.4 8.704-79.5648 10.3424-122.4192zM158.3616 216.576A458.4448 458.4448 0 0 0 51.2 512h256c0-67.4816 4.352-131.8912 12.7488-190.8736a511.488 511.488 0 0 1-161.5872-104.448z m495.9232 121.6512l-6.5536 1.9456A512.512 512.512 0 0 1 512 358.4c-49.408 0-97.1264-7.0144-142.336-20.0192A1301.3504 1301.3504 0 0 0 358.4 512h307.2c0-61.44-3.9936-120.1152-11.264-173.7216z m211.3536-121.7024l-4.1472 3.9936c-45.5168 42.496-98.7648 76.8-157.3888 100.5568C712.448 380.1088 716.8 444.5184 716.8 512h256a458.9568 458.9568 0 0 0-107.1616-295.424zM512 51.2l-5.376 0.256c-55.3984 5.7344-103.3216 99.3792-128.768 235.8784A459.008 459.008 0 0 0 512 307.2a460.8 460.8 0 0 0 134.144-19.8656C619.9296 146.432 569.7024 51.2 512 51.2z m-105.5232 12.1856l-8.4992 2.048A460.032 460.032 0 0 0 193.28 179.2a461.312 461.312 0 0 0 135.3216 90.0608c16.8448-86.6816 43.2128-158.3104 77.8752-205.824z m211.0976 0l4.608 6.5536c32.3584 47.4624 57.1392 116.5312 73.216 199.2704A459.6736 459.6736 0 0 0 830.6688 179.2a459.7248 459.7248 0 0 0-213.0944-115.9168z m250.0096 745.8816l-1.9456-1.8432A458.752 458.752 0 0 0 969.984 563.2h-254.0544c-1.6384 48.9472-5.632 95.7952-11.8784 139.6736a511.1808 511.1808 0 0 1 154.88 98.2016l8.6528 8.192z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-shoucang" viewBox="0 0 1024 1024">
<path d="M134.736842 53.894737h754.526316a107.789474 107.789474 0 0 1 107.789474 107.789474v754.526315a107.789474 107.789474 0 0 1-107.789474 107.789474H134.736842a107.789474 107.789474 0 0 1-107.789474-107.789474V161.684211a107.789474 107.789474 0 0 1 107.789474-107.789474z" fill="#2D79B4"></path>
<path d="M134.736842 0h754.526316a107.789474 107.789474 0 0 1 107.789474 107.789474v754.526315a107.789474 107.789474 0 0 1-107.789474 107.789474H134.736842a107.789474 107.789474 0 0 1-107.789474-107.789474V107.789474a107.789474 107.789474 0 0 1 107.789474-107.789474z" fill="#0F80DA"></path>
<path d="M512 646.736842l-190.086737 99.920842 36.325053-211.644631-153.761684-149.881264 212.506947-30.881684L512 161.684211l95.016421 192.565894 212.506947 30.881684-153.761684 149.881264 36.325053 211.644631z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-shoucang1" viewBox="0 0 1024 1024">
<path d="M134.736842 53.894737h754.526316a107.789474 107.789474 0 0 1 107.789474 107.789474v754.526315a107.789474 107.789474 0 0 1-107.789474 107.789474H134.736842a107.789474 107.789474 0 0 1-107.789474-107.789474V161.684211a107.789474 107.789474 0 0 1 107.789474-107.789474z" fill="#B0B1B2"></path>
<path d="M134.736842 0h754.526316a107.789474 107.789474 0 0 1 107.789474 107.789474v754.526315a107.789474 107.789474 0 0 1-107.789474 107.789474H134.736842a107.789474 107.789474 0 0 1-107.789474-107.789474V107.789474a107.789474 107.789474 0 0 1 107.789474-107.789474z" fill="#C5C8C9"></path>
<path d="M512 646.736842l-190.086737 99.920842 36.325053-211.644631-153.761684-149.881264 212.506947-30.881684L512 161.684211l95.016421 192.565894 212.506947 30.881684-153.761684 149.881264 36.325053 211.644631z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-lujingbeifen" viewBox="0 0 1024 1024">
<path d="M654.222222 513.024L246.897778 156.558222a56.888889 56.888889 0 0 1 75.093333-85.560889l455.111111 398.222223a56.888889 56.888889 0 0 1 0.910222 84.764444l-434.631111 398.222222a56.888889 56.888889 0 0 1-76.8-83.968L654.336 513.137778z" fill="#7F97AB"></path>
</symbol>
<symbol id="icon-xingzhuang" viewBox="0 0 1024 1024">
<path d="M950.857143 321.097143V193.097143a9.142857 9.142857 0 0 0-9.142857-9.069714h-171.446857v51.419428a36.571429 36.571429 0 0 1-73.142858 0v-51.419428H326.948571v51.419428a36.571429 36.571429 0 0 1-73.142857 0v-51.419428H82.285714A9.142857 9.142857 0 0 0 73.142857 193.097143v128h877.714286z m0 73.142857H73.142857v547.474286c0 5.046857 4.096 9.142857 9.142857 9.142857h859.428572a9.142857 9.142857 0 0 0 9.142857-9.142857V394.313143z m-180.589714-283.355429H987.428571a36.571429 36.571429 0 0 1 36.571429 36.571429V987.428571a36.571429 36.571429 0 0 1-36.571429 36.571429H36.571429a36.571429 36.571429 0 0 1-36.571429-36.571429V147.456a36.571429 36.571429 0 0 1 36.571429-36.571429h217.161142V36.571429a36.571429 36.571429 0 0 1 73.142858 0v74.313142H697.051429V36.571429a36.571429 36.571429 0 0 1 73.142857 0v74.313142zM257.170286 467.382857h66.267428a36.571429 36.571429 0 0 1 0 73.142857h-66.267428a36.571429 36.571429 0 0 1 0-73.142857z m0 146.285714h66.267428a36.571429 36.571429 0 0 1 0 73.142858h-66.267428a36.571429 36.571429 0 0 1 0-73.142858z m0 146.285715h66.267428a36.571429 36.571429 0 0 1 0 73.142857h-66.267428a36.571429 36.571429 0 0 1 0-73.142857z m221.622857-292.571429h66.340571a36.571429 36.571429 0 0 1 0 73.142857h-66.267428a36.571429 36.571429 0 0 1 0-73.142857z m0 146.285714h66.340571a36.571429 36.571429 0 0 1 0 73.142858h-66.267428a36.571429 36.571429 0 0 1 0-73.142858z m0 146.285715h66.340571a36.571429 36.571429 0 0 1 0 73.142857h-66.267428a36.571429 36.571429 0 0 1 0-73.142857z m221.769143-292.571429h66.267428a36.571429 36.571429 0 0 1 0 73.142857h-66.267428a36.571429 36.571429 0 0 1 0-73.142857z m0 146.285714h66.267428a36.571429 36.571429 0 0 1 0 73.142858h-66.267428a36.571429 36.571429 0 0 1 0-73.142858z m0 146.285715h66.267428a36.571429 36.571429 0 0 1 0 73.142857h-66.267428a36.571429 36.571429 0 0 1 0-73.142857z" fill="#FFFFFF"></path>
</symbol>
<symbol id="icon-arrow-" viewBox="0 0 1639 1024">
<path d="M834.082871 257.99127l-654.88848 731.223919a102.326325 102.326325 0 1 1-152.466224-136.503318l732.86114-818.6106a102.326325 102.326325 0 0 1 154.103445 2.046527l699.912063 818.6106a102.326325 102.326325 0 1 1-155.740666 132.81957L834.082871 257.786618z" fill="#999999"></path>
</symbol>
<symbol id="icon-arrow-1" viewBox="0 0 1639 1024">
<path d="M834.082871 765.804077L179.194391 34.784811a102.326325 102.326325 0 1 0-152.466224 136.503318l732.86114 818.6106a102.326325 102.326325 0 0 0 154.103445-2.046527l699.912063-818.6106A102.326325 102.326325 0 1 0 1457.864149 36.422032L834.082871 766.00873z" fill="#999999"></path>
</symbol>
<symbol id="icon-goal-copy" viewBox="0 0 1024 1024">
<path d="M512 1014.328889A479.857778 479.857778 0 1 0 512 54.499556a479.857778 479.857778 0 0 0 0 959.715555z m0-53.248a426.666667 426.666667 0 1 1 0-853.333333 426.666667 426.666667 0 0 1 0 853.333333z" fill="#ffffff"></path>
<path d="M253.570945 402.84358l132.280674 59.189355-17.777526 139.009214-143.232762 26.682555-70.742423-122.440169z" fill="#ffffff"></path>
<path d="M683.298968 637.030404l103.193535 99.055001-66.248764 124.804966-144.144597-21.966291-22.786613-138.330804z" fill="#ffffff"></path>
<path d="M707.429318 226.883185l63.93174 125.871218-104.947436 97.285688-128.832857-65.731127 25.341851-137.937531z" fill="#ffffff"></path>
<path d="M954.23278 435.333579l22.456231 107.199962-0.040551 95.105708-99.686453-21.41029-7.638052-139.862575z" fill="#ffffff"></path>
<path d="M384.566811 85.359425l38.824602 81.852897L309.942339 255.317484l-122.403722-76.301792 87.287642-51.371473z" fill="#ffffff"></path>
<path d="M293.791876 802.827254l97.680874 104.105733-38.463059 56.730784-107.978104-55.113835-65.38197-46.466866z" fill="#ffffff"></path>
</symbol>
<symbol id="icon-soccer--copy" viewBox="0 0 1024 1024">
<path d="M512 1017.344c279.04 0 505.344-226.304 505.344-505.344 0-279.04-226.304-505.344-505.344-505.344C232.96 6.656 6.656 232.96 6.656 512c0 279.04 226.304 505.344 505.344 505.344z m0-86.4256a418.9184 418.9184 0 1 1 0-837.8368 418.9184 418.9184 0 0 1 0 837.8368z" fill="#ffffff"></path>
<path d="M258.7648 384.5632l130.1504 62.1568-17.5104 146.0224-141.0048 28.0576-69.632-128.6656zM681.728 630.528l101.5296 103.9872-65.1776 131.072-141.8752-23.04-22.4768-145.2544zM705.4848 199.8336l62.976 132.1984L665.088 434.176l-126.7712-69.0688L563.2 220.2624zM970.1376 411.2896v129.4848l-21.0944 117.248-76.6976-49.3568-7.4752-146.8928zM388.4544 41.8816l37.376 95.3344-111.616 92.5696-120.4736-80.128 57.8048-54.6816zM298.3424 804.608l96.1024 109.312v49.5616l-138.7008-32.5632-88.6272-66.4576z" fill="#ffffff"></path>
</symbol>
<symbol id="icon-set" viewBox="0 0 1024 1024">
<path d="M906.752 456.750545c-3.165091-17.314909-20.247273-35.002182-38.120727-38.865454l-13.265455-2.978909a131.863273 131.863273 0 0 1-76.567273-58.973091 126.324364 126.324364 0 0 1-14.103272-94.72l4.189091-12.241455c5.352727-16.802909-1.582545-40.075636-15.546182-51.665454 0 0-12.520727-10.286545-47.662546-30.068364-35.234909-19.688727-50.362182-25.134545-50.362181-25.134545-17.128727-6.144-41.146182-0.325818-53.66691 12.613818l-9.30909 9.681454a132.887273 132.887273 0 0 1-90.763637 35.095273 133.445818 133.445818 0 0 1-90.996363-35.374545l-8.983273-9.402182c-12.334545-12.939636-36.445091-18.618182-53.666909-12.660364 0 0-15.36 5.492364-50.594909 25.181091-35.234909 19.968-47.569455 30.254545-47.569455 30.254546-13.963636 11.403636-20.852364 34.443636-15.499636 51.479272l3.816727 12.334546c7.447273 31.092364 3.537455 64.837818-14.103273 94.626909a131.258182 131.258182 0 0 1-77.032727 59.112727l-12.8 2.839273c-17.594182 3.956364-34.909091 21.410909-38.167273 38.865454 0 0-2.885818 15.592727-2.885818 55.20291 0 39.656727 2.885818 55.249455 2.885818 55.249454 3.211636 17.501091 20.293818 35.002182 38.167273 38.865455l12.520727 2.792727a130.792727 130.792727 0 0 1 77.125818 59.345454c17.547636 29.789091 21.783273 63.767273 14.103273 94.72l-3.630545 12.008728c-5.352727 16.849455 1.582545 40.122182 15.499636 51.665454 0 0 12.567273 10.333091 47.662546 30.114909 35.234909 19.781818 50.408727 25.134545 50.408727 25.134546 17.082182 6.144 41.146182 0.279273 53.666909-12.613818l8.797091-9.216a134.097455 134.097455 0 0 1 91.229091-35.467637c35.328 0 67.584 13.544727 91.229091 35.560728l8.797091 9.216c12.334545 12.893091 36.445091 18.618182 53.666909 12.660363 0 0 15.313455-5.492364 50.548363-25.181091 35.234909-19.781818 47.569455-30.068364 47.569455-30.068363 13.963636-11.403636 20.852364-34.676364 15.546182-51.665455l-3.816728-12.520727a125.486545 125.486545 0 0 1 14.103273-94.254546c17.547636-29.789091 45.800727-50.269091 77.125818-59.345454l12.567273-2.792727c17.547636-3.956364 34.816-21.457455 38.074182-38.865455 0 0 2.932364-15.592727 2.932363-55.249455-0.186182-39.610182-3.118545-55.296-3.118545-55.296z m-405.131636 214.016c-89.832727 0-162.862545-71.028364-162.862546-158.81309 0-87.598545 72.843636-158.580364 162.862546-158.580364 89.832727 0 162.862545 70.981818 162.862545 158.766545-0.186182 87.598545-73.029818 158.626909-162.909091 158.626909z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-arrow" viewBox="0 0 1024 1024">
<path d="M317.44 441.437091l173.149091 207.732364a27.927273 27.927273 0 0 0 42.821818 0l173.149091-207.732364a27.927273 27.927273 0 0 0-21.457455-45.800727H338.897455a27.927273 27.927273 0 0 0-21.41091 45.800727z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-corner" viewBox="0 0 1024 1024">
<path d="M719.644444 473.144889a22.755556 22.755556 0 1 0-27.818666-36.067556l-449.706667 347.079111a22.755556 22.755556 0 0 0 13.880889 40.789334h517.973333a22.755556 22.755556 0 0 0 0-45.511111H322.730667l396.913777-306.289778z" fill="#BBBBBB"></path>
<path d="M525.937778 606.606222a187.733333 187.733333 0 0 1 93.184 71.111111c22.243556 31.857778 27.875556 71.054222 16.327111 119.125334l44.259555 10.638222c14.449778-60.131556 6.883556-112.64-23.267555-155.818667A233.244444 233.244444 0 0 0 541.297778 563.768889l-15.36 42.837333zM278.755556 796.444444V142.222222a22.755556 22.755556 0 1 0-45.511112 0V796.444444a22.755556 22.755556 0 1 0 45.511112 0z" fill="#BBBBBB"></path>
<path d="M267.377778 125.155556l322.161778 252.586666H267.377778z" fill="#BBBBBB"></path>
</symbol>
<symbol id="icon-animation" viewBox="0 0 1024 1024">
<path d="M170.666667 170.666667h682.666666a113.777778 113.777778 0 0 1 113.777778 113.777777v512a113.777778 113.777778 0 0 1-113.777778 113.777778H170.666667a113.777778 113.777778 0 0 1-113.777778-113.777778V284.444444a113.777778 113.777778 0 0 1 113.777778-113.777777z m0 56.888889a56.888889 56.888889 0 0 0-56.888889 56.888888v512a56.888889 56.888889 0 0 0 56.888889 56.888889h682.666666a56.888889 56.888889 0 0 0 56.888889-56.888889V284.444444a56.888889 56.888889 0 0 0-56.888889-56.888888H170.666667z" fill="#52AF2F"></path>
<path d="M824.888889 434.801778a28.444444 28.444444 0 0 1 28.444444 28.444444v154.396445a28.444444 28.444444 0 1 1-56.888889 0V463.246222a28.444444 28.444444 0 0 1 28.444445-28.444444z m0 80.782222c28.956444 0 28.956444 49.664 0 49.664s-28.956444-49.607111 0-49.607111zM199.111111 434.801778a28.444444 28.444444 0 0 1 28.444445 28.444444v154.396445a28.444444 28.444444 0 0 1-56.888889 0V463.246222a28.444444 28.444444 0 0 1 28.444444-28.444444z m0 80.782222c28.956444 0 28.956444 49.664 0 49.664s-28.956444-49.607111 0-49.607111zM483.555556 199.111111v227.555556a28.444444 28.444444 0 0 0 56.888888 0v-227.555556a28.444444 28.444444 0 0 0-56.888888 0zM483.555556 654.222222v227.555556a28.444444 28.444444 0 1 0 56.888888 0v-227.555556a28.444444 28.444444 0 1 0-56.888888 0z" fill="#52AF2F"></path>
<path d="M512 682.666667a142.222222 142.222222 0 1 0 0-284.444445 142.222222 142.222222 0 0 0 0 284.444445z m0-56.888889a85.333333 85.333333 0 1 1 0-170.666667 85.333333 85.333333 0 0 1 0 170.666667z" fill="#52AF2F"></path>
</symbol>
<symbol id="icon-tv" viewBox="0 0 1024 1024">
<path d="M170.666667 289.28h682.666666a113.777778 113.777778 0 0 1 113.777778 113.777778v455.111111a113.777778 113.777778 0 0 1-113.777778 113.777778H170.666667a113.777778 113.777778 0 0 1-113.777778-113.777778v-455.111111a113.777778 113.777778 0 0 1 113.777778-113.777778z m0 56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v455.111111a56.888889 56.888889 0 0 0 56.888889 56.888889h682.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-455.111111a56.888889 56.888889 0 0 0-56.888889-56.888889H170.666667z" fill="#E74C5B"></path>
<path d="M735.600694 54.60972m36.950417 21.333334l0 0q36.950417 21.333333 15.617084 58.28375l-99.555556 172.435281q-21.333333 36.950417-58.28375 15.617084l0 0q-36.950417-21.333333-15.617084-58.283751l99.555556-172.43528q21.333333-36.950417 58.28375-15.617084Z" fill="#E74C5B"></path>
<path d="M246.467763 54.610908m-36.950418 21.333333l0 0q-36.950417 21.333333-15.617084 58.283751l99.555556 172.43528q21.333333 36.950417 58.283751 15.617084l0 0q36.950417-21.333333 15.617084-58.28375l-99.555556-172.435281q-21.333333-36.950417-58.283751-15.617084Z" fill="#E74C5B"></path>
<path d="M369.777778 509.724444v232.163556a56.888889 56.888889 0 0 0 85.731555 49.038222l197.404445-116.053333a56.888889 56.888889 0 0 0 0-98.133333l-197.404445-116.053334a56.888889 56.888889 0 0 0-85.731555 48.981334z m56.888889 0L624.071111 625.777778 426.666667 741.888V509.724444z" fill="#E74C5B"></path>
</symbol>
<symbol id="icon-Collection" viewBox="0 0 1024 1024">
<path d="M512 698.197333l-218.851556 115.029334 41.756445-243.712-177.038222-172.600889 244.679111-35.555556L512 139.662222l109.454222 221.696 244.679111 35.555556-177.038222 172.600889 41.756445 243.712L512 698.197333z m-21.617778-41.187555a46.535111 46.535111 0 0 1 43.235556 0l135.395555 71.111111-25.827555-150.755556a46.535111 46.535111 0 0 1 13.368889-41.187555l109.568-106.723556-151.381334-22.016a46.535111 46.535111 0 0 1-35.043555-25.486222L512 244.849778l-67.697778 137.102222a46.535111 46.535111 0 0 1-35.043555 25.486222l-151.324445 22.016 109.511111 106.723556c10.922667 10.695111 15.928889 26.168889 13.368889 41.244444l-25.884444 150.755556 135.395555-71.168z" fill="#0F80DA"></path>
<path d="M512 698.197333l-218.851556 115.029334 41.756445-243.712-177.038222-172.600889 244.679111-35.555556L512 139.662222l109.454222 221.696 244.679111 35.555556-177.038222 172.600889 41.756445 243.712z" fill="#0F80DA"></path>
</symbol>
<symbol id="icon-Collection1" viewBox="0 0 1024 1024">
<path d="M512 698.197333l-218.851556 115.029334 41.756445-243.712-177.038222-172.600889 244.679111-35.555556L512 139.662222l109.454222 221.696 244.679111 35.555556-177.038222 172.600889 41.756445 243.712L512 698.197333z m-21.617778-41.187555a46.535111 46.535111 0 0 1 43.235556 0l135.395555 71.111111-25.827555-150.755556a46.535111 46.535111 0 0 1 13.368889-41.187555l109.568-106.723556-151.381334-22.016a46.535111 46.535111 0 0 1-35.043555-25.486222L512 244.849778l-67.697778 137.102222a46.535111 46.535111 0 0 1-35.043555 25.486222l-151.324445 22.016 109.511111 106.723556c10.922667 10.695111 15.928889 26.168889 13.368889 41.244444l-25.884444 150.755556 135.395555-71.168z" fill="#CCCCCC"></path>
</symbol>
<symbol id="icon-field" viewBox="0 0 1024 1024">
<path d="M507.531636 434.408727a128.232727 128.232727 0 0 0 128.093091-128.093091 128.325818 128.325818 0 0 0-128.093091-128.232727A128.232727 128.232727 0 0 0 379.345455 306.176a128.325818 128.325818 0 0 0 128.139636 128.232727z m0-207.872c43.845818 0 79.592727 35.746909 79.592728 79.639273 0 43.892364-35.746909 79.639273-79.592728 79.639273-43.892364 0-79.639273-35.746909-79.639272-79.592728 0-43.938909 35.607273-79.685818 79.592727-79.685818z" fill="#A0A9B4"></path>
<path d="M1001.565091 824.832l-63.767273-326.423273a108.357818 108.357818 0 0 0-106.030545-87.365818h-47.522909a297.239273 297.239273 0 0 0 23.04-114.781091c0-79.127273-30.813091-153.460364-86.807273-209.454545A293.934545 293.934545 0 0 0 511.162182 0.139636c-79.127273 0-153.460364 30.766545-209.454546 86.760728a294.120727 294.120727 0 0 0-86.807272 209.454545c0 39.424 7.912727 78.661818 23.04 114.781091H173.335273c-51.665455 0-96.256 36.770909-106.077091 87.412364l-63.767273 326.423272a146.618182 146.618182 0 0 0 30.813091 121.716364 146.478545 146.478545 0 0 0 113.431273 53.527273H857.367273a146.990545 146.990545 0 0 0 144.244363-175.383273z m-59.392 11.636364c4.235636 21.690182 0 43.752727-11.496727 62.324363a433.431273 433.431273 0 0 1-94.952728-48.965818c-49.896727-34.909091-80.337455-74.798545-90.624-119.016727l165.236364 0.232727c3.863273 0 7.447273-0.977455 10.752-2.56l21.085091 107.985455zM318.650182 681.704727c-4.189091-70.935273-35.234909-136.145455-90.065455-189.114182a351.650909 351.650909 0 0 0-23.598545-20.852363h61.812363c1.815273 0 3.630545-0.093091 5.306182-0.465455 18.432 25.134545 40.727273 47.290182 65.954909 65.442909l153.227637 132.747637a29.975273 29.975273 0 0 0 19.874909 7.400727 29.975273 29.975273 0 0 0 19.874909-7.447273l153.227636-132.654545a297.704727 297.704727 0 0 0 65.536-65.024h56.878546a389.213091 389.213091 0 0 0-23.645091 20.852363c-54.923636 53.108364-86.062545 118.551273-90.065455 189.579637l-374.318545-0.465455z m593.361454 0.930909l-1.722181-0.093091-168.820364-0.232727c4.002909-57.809455 28.858182-109.568 74.007273-153.693091a318.370909 318.370909 0 0 1 51.805091-40.727272c5.445818 6.190545 9.309091 13.684364 10.891636 22.155636l33.838545 172.637091zM511.162182 60.788364a235.892364 235.892364 0 0 1 235.613091 235.613091 236.032 236.032 0 0 1-98.909091 191.906909c-0.930909 0.698182-1.908364 1.396364-2.792727 2.141091l-133.818182 115.898181-133.818182-115.898181c-0.837818-0.837818-1.815273-1.536-2.792727-2.280728a235.52 235.52 0 0 1 136.471272-427.380363z m-384.465455 449.303272a47.941818 47.941818 0 0 1 13.312-24.855272c13.963636 8.517818 34.909091 22.807273 55.854546 43.287272 45.149091 43.985455 69.957818 95.511273 74.053818 153.134546l-175.383273-0.279273c-0.465455 0-0.930909 0-1.442909 0.139636l33.559273-171.426909z m-63.767272 326.423273l21.317818-108.916364a24.855273 24.855273 0 0 0 10.426182 2.373819l172.12509 0.232727c-10.193455 44.497455-40.634182 84.712727-90.903272 119.761454a428.869818 428.869818 0 0 1-100.258909 50.827637 86.295273 86.295273 0 0 1-12.706909-64.232727z m84.805818 103.051636c-9.309091 0-18.385455-1.442909-26.996364-4.375272 22.155636-9.448727 51.991273-24.203636 81.826909-44.823273 64.325818-44.637091 103.005091-99.421091 113.570909-160.116364l379.345455 0.465455c10.705455 60.602182 49.338182 115.153455 113.570909 159.650909a463.220364 463.220364 0 0 0 78.848 43.473455c-9.728 3.677091-20.014545 5.585455-30.580364 5.585454H147.735273v0.139636z" fill="#A0A9B4"></path>
</symbol>
<symbol id="icon-soccer" viewBox="0 0 24 24">
<path d="M15 3a1 1 0 0 1 1 1v1.223a8.95 8.95 0 0 1 4.367 2.411c3.51 3.51 3.51 9.223 0 12.734-3.51 3.51-9.223 3.509-12.734 0-3.51-3.51-3.51-9.224 0-12.734A8.95 8.95 0 0 1 12 5.224V5H6v3L0 4l6-4v3h9zM8.52 8.522c-2.364 2.365-2.876 5.89-1.54 8.758l.127.259 1.52-.632 2.465 2.466-.632 1.518c2.912 1.494 6.581 1.023 9.019-1.412 2.368-2.369 2.88-5.9 1.532-8.772l-.127-.259-1.507.626-2.465-2.467.624-1.499c-2.914-1.492-6.58-1.022-9.016 1.414zm9.65 5.413 1.169 2.967-2.437 2.437-2.934-1.136.752-3.481 3.45-.787zM10.959 8.7l2.894 1.223-.615 3.318-3.328.603-1.212-2.883 2.261-2.26z" fill="#F44336"></path>
</symbol>
<symbol id="icon-shots-on-target" viewBox="0 0 19 14" fill="none">
<path d="M1.52 1.52V10.165C1.52 10.5847 1.17973 10.925 0.76 10.925C0.340271 10.925 0 10.5847 0 10.165V0.95C0 0.425334 0.425334 0 0.95 0H18.05C18.5746 0 19 0.425334 19 0.95V10.165C19 10.5847 18.6597 10.925 18.24 10.925C17.8203 10.925 17.48 10.5847 17.48 10.165V1.52H1.52Z" fill="#5EB24A"></path>
<path d="M9.49985 10.7917C8.23621 10.7917 7.20815 9.76362 7.20815 8.49998C7.20815 7.23635 8.23621 6.20829 9.49985 6.20829C10.7635 6.20829 11.7915 7.23635 11.7915 8.49998C11.7915 9.76362 10.7635 10.7917 9.49985 10.7917ZM9.49985 6.89579C8.6153 6.89579 7.89565 7.61543 7.89565 8.49998C7.89565 9.38454 8.6153 10.1042 9.49985 10.1042C10.3844 10.1042 11.104 9.38454 11.104 8.49998C11.104 7.61543 10.3844 6.89579 9.49985 6.89579Z" fill="#FFE400"></path>
<path d="M9.50015 13.0833C6.97288 13.0833 4.91685 11.0273 4.91685 8.50002C4.91685 5.97275 6.97288 3.91671 9.50015 3.91671C12.0274 3.91671 14.0835 5.97275 14.0835 8.50002C14.0835 11.0273 12.0274 13.0833 9.50015 13.0833ZM9.50015 4.60421C7.35196 4.60421 5.60435 6.35183 5.60435 8.50002C5.60435 10.6482 7.35196 12.3958 9.50015 12.3958C11.6483 12.3958 13.396 10.6482 13.396 8.50002C13.396 6.35183 11.6483 4.60421 9.50015 4.60421Z" fill="#FFE400"></path>
<path d="M9.5 5.29169C9.31025 5.29169 9.15625 5.1377 9.15625 4.94794V3.34375C9.15625 3.154 9.31025 3 9.5 3C9.68975 3 9.84375 3.154 9.84375 3.34375V4.94794C9.84375 5.1377 9.68975 5.29169 9.5 5.29169Z" fill="#FFE400"></path>
<path d="M9.5 14C9.31025 14 9.15625 13.846 9.15625 13.6562V12.052C9.15625 11.8623 9.31025 11.7083 9.5 11.7083C9.68975 11.7083 9.84375 11.8623 9.84375 12.052V13.6562C9.84375 13.846 9.68975 14 9.5 14Z" fill="#FFE400"></path>
<path d="M5.94794 8.84375H4.34375C4.154 8.84375 4 8.68975 4 8.5C4 8.31025 4.154 8.15625 4.34375 8.15625H5.94794C6.1377 8.15625 6.29169 8.31025 6.29169 8.5C6.29169 8.68975 6.1377 8.84375 5.94794 8.84375Z" fill="#FFE400"></path>
<path d="M14.6561 8.84375H13.0519C12.8622 8.84375 12.7082 8.68975 12.7082 8.5C12.7082 8.31025 12.8622 8.15625 13.0519 8.15625H14.6561C14.8458 8.15625 14.9998 8.31025 14.9998 8.5C14.9998 8.68975 14.8458 8.84375 14.6561 8.84375Z" fill="#FFE400"></path>
</symbol>
<symbol id="icon-var" width="24px" height="16px" viewBox="0 0 24 16">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#00EB1F;fill-opacity:1;" d="M 0 0 L 0 11.964844 L 5.847656 11.964844 L 5.847656 12.925781 C 5.847656 12.96875 5.882812 13.011719 5.929688 13.011719 L 13.683594 13.011719 C 13.730469 13.011719 13.769531 12.96875 13.769531 12.925781 L 13.769531 11.964844 L 18.984375 11.964844 L 18.984375 0 Z M 1.089844 1.132812 L 17.894531 1.132812 L 17.894531 10.824219 L 1.089844 10.824219 Z M 1.089844 1.132812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#00EB1F;fill-opacity:1;" d="M 12.667969 3.128906 L 12.667969 8.671875 L 13.972656 8.671875 L 13.972656 6.785156 L 14.292969 6.785156 L 15.457031 8.730469 L 16.894531 8.488281 L 15.582031 6.460938 C 16.101562 6.183594 16.574219 5.703125 16.574219 4.988281 C 16.574219 3.597656 15.714844 3.128906 14.628906 3.128906 Z M 14.445312 4.195312 C 14.605469 4.199219 15.261719 4.238281 15.261719 4.96875 C 15.261719 5.796875 14.410156 5.742188 14.410156 5.742188 L 13.972656 5.742188 L 13.972656 4.195312 Z M 14.445312 4.195312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#00EB1F;fill-opacity:1;" d="M 8.75 3.136719 L 6.808594 8.730469 L 8.132812 8.730469 L 8.46875 7.589844 L 10.296875 7.589844 L 10.660156 8.78125 L 12.03125 8.550781 L 10.167969 3.136719 Z M 9.371094 4.566406 L 9.964844 6.507812 L 8.792969 6.507812 Z M 9.371094 4.566406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#00EB1F;fill-opacity:1;" d="M 3.707031 3.136719 L 2.25 3.378906 L 4.105469 8.78125 L 5.527344 8.78125 L 7.472656 3.1875 L 6.058594 3.1875 L 4.902344 7.054688 Z M 3.707031 3.136719 "/>
</g>
</symbol>
</svg>
</div>
</div>
</div>
</div>
<div class="d-block d-lg-none mb-3 as-hide-popup-chat"></div>
</section>
<script>
// random link
const goToDetail = (el) => {
let href = el.attr('href');
let streams = el.attr('data-random-streams');
streams = streams ? streams.split(",") : [];
if(streams.length > 1) {
const stream_index = Math.floor(Math.random() * streams.length);
const random_stream_url = streams[stream_index] ? streams[stream_index] : streams[0];
href = `${href}${random_stream_url}`;
}
window.location.href = href;
}
jQuery(document).on('click', '.grid-matches__item .redirectPopup', function(e) {
e.preventDefault();
goToDetail(jQuery(this));
});
jQuery(document).on('click', '.grid-matches__item .grid-match__status, .grid-matches__item .icon-haflt', function() {
const matchId = jQuery(this).attr('data-fid');
const el = jQuery(`#match-child-${matchId} .redirectPopup`);
goToDetail(el);
})
</script>
<script>
jQuery( document ).ready( function(){
jQuery('body').on('click','.toggle-btn', function(){
jQuery(this).closest('.gmd-match-footer__streamer').toggleClass('active')
})
jQuery('.btn-livescore').on('click',function(){
if( jQuery(this).find('input').is(':checked') ){
showLiveScore();
}else{
hideLiveScore();
}
})
jQuery('.sports-bars .nav-link').on('click',function(){
hideLiveScore();
})
function hideLiveScore(){
// Switch button
jQuery('.btn-livescore').find('input').prop('checked',false);
// Tab Nav
jQuery('.sports-bars .nav-link').removeClass('active');
jQuery('#football-tab').addClass('active');
// Tab Pane
jQuery('.tab-pane').removeClass('active show');
jQuery('#football').addClass('active show');
jQuery('#livescore_iframe').attr('src','');
jQuery('.filter-row').attr('style','');
}
function showLiveScore(){
jQuery('.tab-pane').removeClass('active show');
jQuery('#football-tab').removeClass('active');
jQuery('#football').removeClass('active show');
jQuery('#livescore').addClass('active show');
jQuery('#livescore_iframe').attr('src',jQuery('#livescore_iframe').data('src') );
jQuery('.filter-row').hide();
}
})
</script>
</div>
</div>
</div>
</section>
<section class="mb-4 home-section section-5 as-hide-popup-chat">
<div class="container">
<div class="row">
<div class="col-12">
<div class="d-flex justify-content-between align-items-center text-uppercase mb-4 osw-bold section-title">
<span class="d-flex justify-content-between align-items-center"><img class="lazyload icon-section-title" src="https://mitomzi.cc/wp-content/themes/bongda/public/images/football.png?id=0ae510ed8faf6b62f04c" alt=""> Highlight bóng đá</span>
<a href="https://mitomzi.cc/highlights" class="d-none d-md-block rlw-medium readmore">XEM THÊM <img class="lazyload" src="https://mitomzi.cc/wp-content/themes/bongda/public/images/up-arrow2.png?id=8b617873d31e226b95ac" alt=""></a>
</div>
<div class="content-section">
<div class="row no-gutters row-1">
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Manchester City vs Napoli (02:00 – 19/09)" rel="nofollow" href="https://mitomzi.cc/highlight/manchester-city-vs-napoli-0200-19-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/370x250/a1cbe77939/2025/09/mc-1.jpg" alt="Manchester City vs Napoli (02:00 – 19/09)">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/manchester-city-vs-napoli-0200-19-09/" rel="nofollow" class="ellipsis2 osw-bold " title="Manchester City vs Napoli (02:00 – 19/09)">Manchester City vs Napoli (02:00 – 19/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Club Brugge vs AS Monaco (23:45 – 18/09)" rel="nofollow" href="https://mitomzi.cc/highlight/club-brugge-vs-as-monaco-2345-18-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/370x250/40239efbe6/2025/09/AS-Monaco.jpg" alt="Club Brugge vs AS Monaco (23:45 – 18/09)">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/club-brugge-vs-as-monaco-2345-18-09/" rel="nofollow" class="ellipsis2 osw-bold " title="Club Brugge vs AS Monaco (23:45 – 18/09)">Club Brugge vs AS Monaco (23:45 – 18/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Newcastle United vs Barcelona (02:00 – 19/09)" rel="nofollow" href="https://mitomzi.cc/highlight/newcastle-united-vs-barcelona-0200-19-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/370x250/69e0162bed/2025/09/BA.jpg" alt="Newcastle United vs Barcelona (02:00 – 19/09)">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/newcastle-united-vs-barcelona-0200-19-09/" rel="nofollow" class="ellipsis2 osw-bold " title="Newcastle United vs Barcelona (02:00 – 19/09)">Newcastle United vs Barcelona (02:00 – 19/09)</a>
</h3>
</div>
</div>
</article>
</div>
<div class="row no-gutters row-2">
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Sporting CP vs FC Kairat (02:00 – 19/09)" rel="nofollow" href="https://mitomzi.cc/highlight/sporting-cp-vs-fc-kairat-0200-19-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/155x115/692a83b3c4/2025/09/Sporting-CP-1.jpg" alt="">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/sporting-cp-vs-fc-kairat-0200-19-09/" rel="nofollow" class="ellipsis2 " title="Sporting CP vs FC Kairat (02:00 – 19/09)">Sporting CP vs FC Kairat (02:00 – 19/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Copenhagen vs Bayer Leverkusen (23:45 – 18/09)" rel="nofollow" href="https://mitomzi.cc/highlight/copenhagen-vs-bayer-leverkusen-2345-18-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/155x115/d147112c02/2025/09/photo_2025-09-19_03-38-47.jpg" alt="">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/copenhagen-vs-bayer-leverkusen-2345-18-09/" rel="nofollow" class="ellipsis2 " title="Copenhagen vs Bayer Leverkusen (23:45 – 18/09)">Copenhagen vs Bayer Leverkusen (23:45 – 18/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Eintracht Frankfurt vs Galatasaray (02:00 – 19/09)" rel="nofollow" href="https://mitomzi.cc/highlight/eintracht-frankfurt-vs-galatasaray-0200-19-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/155x115/83d7f27cc9/2025/09/Galatasaray.jpg" alt="">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/eintracht-frankfurt-vs-galatasaray-0200-19-09/" rel="nofollow" class="ellipsis2 " title="Eintracht Frankfurt vs Galatasaray (02:00 – 19/09)">Eintracht Frankfurt vs Galatasaray (02:00 – 19/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Swansea City vs Nottingham Forest (02:00 – 18/09)" rel="nofollow" href="https://mitomzi.cc/highlight/swansea-city-vs-nottingham-forest-0200-18-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/155x115/5e4c6ac4bd/2025/09/Anh-chup-man-hinh-2025-09-18-024918-1.png" alt="">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/swansea-city-vs-nottingham-forest-0200-18-09/" rel="nofollow" class="ellipsis2 " title="Swansea City vs Nottingham Forest (02:00 – 18/09)">Swansea City vs Nottingham Forest (02:00 – 18/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Liverpool vs Atletico Madrid (02:00 – 18/09)" rel="nofollow" href="https://mitomzi.cc/highlight/liverpool-vs-atletico-madrid-0200-18-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/155x115/8b9c55aa36/2025/09/LIVER.jpg" alt="">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/liverpool-vs-atletico-madrid-0200-18-09/" rel="nofollow" class="ellipsis2 " title="Liverpool vs Atletico Madrid (02:00 – 18/09)">Liverpool vs Atletico Madrid (02:00 – 18/09)</a>
</h3>
</div>
</div>
</article>
<article class="col mb-3 mb-md-0 blog-post">
<div class="row align-items-center blog-grid-wrapper">
<div class="col-7 col-md-12 blog-grid-img">
<a title="Bayern Munich vs Chelsea (02:00 – 18/09)" rel="nofollow" href="https://mitomzi.cc/highlight/bayern-munich-vs-chelsea-0200-18-09/" class="thumbnail">
<img class="lazyload" src="https://cdn.mitomzi.cc/c.1/155x115/f69fc49130/2025/09/CHELESA.jpg" alt="">
<i class="fas fa-play"></i>
</a>
</div>
<div class="col-5 col-md-12 blog-grid-content">
<h3 class="blog-grid-post-title">
<a href="https://mitomzi.cc/highlight/bayern-munich-vs-chelsea-0200-18-09/" rel="nofollow" class="ellipsis2 " title="Bayern Munich vs Chelsea (02:00 – 18/09)">Bayern Munich vs Chelsea (02:00 – 18/09)</a>
</h3>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</section> <section class="mb-4 home-section section-about as-hide-popup-chat">
<div class="container">
<div class="row">
<div class="col-12">
<div class="text-uppercase mb-4 osw-bold section-title">
<span class="d-flex justify-content-start align-items-center"><img class="lazyload icon-section-title" data-src="https://mitomzi.cc/wp-content/themes/bongda/public/images/football.png?id=0ae510ed8faf6b62f04c" alt=""> Lời Giới Thiệu</span> </div>
<div class="content-section">
<div class="row no-gutters">
<div class="toc-fixed col-12 col-lg-4 ">
</div>
<div class=" col-lg-8 col-12">
<div class="p-3 entry-content">
<div class="overflow-scroll">
<div id="toc_container" class="no_bullets"><ul class="toc_list"><li><a href="#Mitom_TV_la_gi">Mitom TV là gì?</a></li><li><a href="#Gioi_thieu_ve_trang_truc_tiep_bong_da_Mi_Tom_TV">Giới thiệu về trang trực tiếp bóng đá Mì Tôm TV</a></li><li><a href="#Muc_tieu_phat_trien_cua_trang_web_truc_tiep_bong_da_Mi_Tom_TV">Mục tiêu phát triển của trang web truc tiep bong da Mì Tôm TV</a></li><li><a href="#Mitomftv_Trang_web_truc_tiep_bong_da_duoc_yeu_thich_nhat_Viet_Nam_hien_nay">Mitomf.tv – Trang web truc tiep bong da được yêu thích nhất Việt Nam hiện nay</a></li><li><a href="#Vi_sao_anh_em_nen_xem_truc_tiep_bong_da_tai_Mitomftv">Vì sao anh em nên xem truc tiep bong da tại Mitomf.tv?</a><ul><li><a href="#Giao_dien_trang_web_dep_mat_de_su_dung">Giao diện trang web đẹp mắt, dễ sử dụng</a></li><li><a href="#Phat_song_toan_bo_cac_giai_dau_hap_dan_nhat">Phát sóng toàn bộ các giải đấu hấp dẫn nhất</a></li><li><a href="#Xem_tructiepbongda_voi_chat_luong_cao">Xem tructiepbongda với chất lượng cao</a></li><li><a href="#Xem_truc_tiep_bong_da_voi_trai_nghiem_cao">Xem truc tiep bong da với trải nghiệm cao</a></li><li><a href="#Co_nen_xem_bong_da_truc_tuyen_tai_Mitomftv_hay_khong">Có nên xem bóng đá trực tuyến tại Mitomf.tv hay không?</a></li></ul></li><li><a href="#Hien_tai_Mitom_TV_cung_cap_cho_nguoi_dung_nhung_tinh_nang_nao">Hiện tại Mitom TV cung cấp cho người dùng những tính năng nào?</a><ul><li><a href="#Tin_tuc_truc_tiep_bong_da">Tin tức trực tiếp bóng đá</a></li><li><a href="#Lich_thi_dau_bong_da_hom_nay">Lịch thi đấu bóng đá hôm nay</a></li><li><a href="#Highlight_bong_da_tai_Mi_Tom_TV">Highlight bóng đá tại Mì Tôm TV</a></li><li><a href="#Ket_qua_cac_tran_dau_bong_da">Kết quả các trận đấu bóng đá</a></li><li><a href="#Bang_xep_hang_bong_da_hom_nay_tai_Mi_Tom_TV">Bảng xếp hạng bóng đá hôm nay tại Mì Tôm TV</a></li><li><a href="#Ty_le_keo_tai_MitomTV">Tỷ lệ kèo tại MitomTV</a></li><li><a href="#Link_xem_bong_da_truc_tiep_mien_phi_hom_nay_tai_Mi_Tom_TV">Link xem bóng đá trực tiếp miễn phí hôm nay tại Mì Tôm TV</a></li><li><a href="#Truc_tiep_bong_da_Mitom_hom_nay">Trực tiếp bóng đá Mitom hôm nay</a></li></ul></li><li><a href="#Tong_hop_cac_giai_dau_bong_da_tai_Mi_Tom_TV">Tổng hợp các giải đấu bóng đá tại Mi Tom TV</a></li><li><a href="#Xem_truc_tiep_bong_da_Mitom_Tivi_duoc_gi">Xem trực tiếp bóng đá Mitom Tivi được gì?</a></li><li><a href="#Tai_sao_MitomTV_lai_duoc_yeu_thich_nhu_hien_nay">Tại sao MitomTV lại được yêu thích như hiện nay?</a><ul><li><a href="#Giao_dien_dep_mat_sang_tao">Giao diện đẹp mắt – sáng tạo</a></li><li><a href="#Mi_Tom_TV_cung_cap_Video_full_HD_cuc_sac_net">Mi Tom TV cung cấp Video full HD cực sắc nét</a></li><li><a href="#Doi_ngu_binh_luan_vien_giau_kinh_nghiem_tai_Mi_Tom_TV">Đội ngũ bình luận viên giàu kinh nghiệm tại Mì Tôm TV</a></li><li><a href="#MitomTV_truc_tiep_bong_da_hom_nay_chat_luong">MitomTV trực tiếp bóng đá hôm nay chất lượng</a></li><li><a href="#Truc_tiep_bong_da_khong_quang_cao">Trực tiếp bóng đá không quảng cáo</a></li></ul></li><li><a href="#Mi_Tom_TV_duoc_nguoi_dung_danh_gia_nhu_the_nao">Mì Tôm TV được người dùng đánh giá như thế nào?</a></li><li><a href="#Nhung_nhuoc_diem_cua_Mi_Tom_TV_gom_nhung_gi">Những nhược điểm của Mi Tom TV gồm những gì?</a></li><li><a href="#Cach_xem_truc_tiep_bong_da_tai_Mi_Tom_TV_nhu_the_nao">Cách xem trực tiếp bóng đá tại Mì Tôm TV như thế nào?</a></li><li><a href="#Nhung_dieu_can_luu_y_khi_xem_truc_tiep_bong_da_tai_Mi_Tom_TV">Những điều cần lưu ý khi xem trực tiếp bóng đá tại Mi Tom TV</a></li><li><a href="#FAQ_cau_hoi_thuong_gap_tai_Mi_Tom_TV">FAQ câu hỏi thường gặp tại Mi Tom TV</a><ul><li><a href="#Mitomtv_co_phat_TTBD_mien_phi_khong">Mitomtv có phát TTBD miễn phí không?</a></li><li><a href="#Vi_sao_Mitom_luon_thu_hut_dong_dao_nguoi_dung">Vì sao Mitom luôn thu hút đông đảo người dùng?</a></li><li><a href="#Bong_da_MitomTV_la_kenh_gi">Bóng đá MitomTV là kênh gì?</a></li><li><a href="#Mitom_TiVi_truc_tuyen_cua_moi_nha_dung_khong">Mitom TiVi trực tuyến của mọi nhà đúng không?</a></li><li><a href="#Mi_Tom_TV_co_theo_doi_tren_TV_duoc_khong">Mì Tôm TV có theo dõi trên TV được không?</a></li><li><a href="#Kenh_Mitom_TV_nao_la_chinh_thuc">Kênh Mitom TV nào là chính thức?</a></li></ul></li><li><a href="#Mot_so_trang_xem_truc_tiep_bong_da_chat_luong_khac">Một số trang xem trực tiếp bóng đá chất lượng khác</a></li><li><a href="#Ket_luan">Kết luận</a><ul><li><a href="#Thong_tin_lien_he_voi_Mitom_TV">Thông tin liên hệ với Mitom TV</a></li></ul></li></ul></div>
<h2 style="text-align: justify;"><span id="Mitom_TV_la_gi"><strong>Mitom TV là gì?</strong></span></h2>
<p style="text-align: justify;"><b>Mitom TV</b><span style="font-weight: 400;"> là trang web</span><b> trực tiếp bóng đá</b><span style="font-weight: 400;"> hàng đầu Việt Nam hiện nay. Mỗi khi muốn </span><b>xem bóng đá trực tuyến</b><span style="font-weight: 400;"> với chất lượng cao và trải nghiệm tuyệt vời nhất thì Mì Tôm TV luôn là lựa chọn số 1 dành cho fan hâm mộ. Chắc chắn rằng khi xem <em>tructiepbongda</em> tại đây, anh em sẽ không bao giờ cảm thấy thất vọng.</span></p>
<figure id="attachment_30678" aria-describedby="caption-attachment-30678" style="width: 800px" class="wp-caption aligncenter"><img loading="lazy" class="wp-image-30678 size-full" src="https://cdn.mitomzi.cc/2022/08/mitom-tv-kenh-truc-tiep-bong-da-duoc-yeu-thich-nhat.jpg" alt="mitom-tv-kenh-truc-tiep-bong-da-duoc-yeu-thich-nhat" width="800" height="500" srcset="https://cdn.mitomzi.cc/2022/08/mitom-tv-kenh-truc-tiep-bong-da-duoc-yeu-thich-nhat.jpg 800w, https://cdn.mitomzi.cc/2022/08/mitom-tv-kenh-truc-tiep-bong-da-duoc-yeu-thich-nhat-372x233.jpg 372w, https://cdn.mitomzi.cc/2022/08/mitom-tv-kenh-truc-tiep-bong-da-duoc-yeu-thich-nhat-664x415.jpg 664w, https://cdn.mitomzi.cc/2022/08/mitom-tv-kenh-truc-tiep-bong-da-duoc-yeu-thich-nhat-768x480.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption id="caption-attachment-30678" class="wp-caption-text">Mitom TV – Kênh trực tiếp bóng đá được yêu thích nhất</figcaption></figure>
<p style="text-align: justify;"><span style="font-weight: 400;">Để tìm và xem được các trận đấu bóng đá hấp dẫn mỗi ngày với chất lượng cao. Anh em chỉ cần truy cập vào trang web phát sóng </span><b>trực tiếp bóng đá</b> <b>Mì Tôm TV</b><span style="font-weight: 400;">. Bởi theo như đánh giá của mọi người, Mitomf.tv đang là website tructiepbongda hàng đầu Việt Nam. Nơi mà anh em có thể </span><b>xem bong da truc tiep</b><span style="font-weight: 400;"> bất kỳ trận đấu nào mình thích với trải nghiệm cao nhất.</span></p>
<h2 style="text-align: justify;"><span id="Gioi_thieu_ve_trang_truc_tiep_bong_da_Mi_Tom_TV"><b>Giới thiệu về trang trực tiếp bóng đá Mì Tôm TV</b></span></h2>
<p style="text-align: justify;"><span style="font-weight: 400;">Khi nhận thấy được nhu cầu xem </span><b>trực tiếp bóng đá</b><span style="font-weight: 400;"> tại Việt Nam tăng khá nhanh ở thời điểm hiện tại. Những chuyên gia, biên tập viên bóng đá hàng đầu đã bắt tay với các chuyên viên IT chuyên nghiệp xây dựng lên trang web Mitom TV. Với mục đích trở thành trang web </span><b>tructiepbongda</b><span style="font-weight: 400;"> miễn phí hàng đầu Việt Nam. Cho mọi người có thể tìm và xem bất kỳ trận đấu bóng đá nào mình thích với trải nghiệm cao nhất.</span></p>
<figure id="attachment_30682" aria-describedby="caption-attachment-30682" style="width: 800px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-30682" src="https://cdn.mitomzi.cc/2022/08/xem-truc-tiep-bong-da-toc-do-cao-tai-mi-tom-tv.jpg" alt="xem-truc-tiep-bong-da-toc-do-cao-tai-mi-tom-tv" width="800" height="500" srcset="https://cdn.mitomzi.cc/2022/08/xem-truc-tiep-bong-da-toc-do-cao-tai-mi-tom-tv.jpg 800w, https://cdn.mitomzi.cc/2022/08/xem-truc-tiep-bong-da-toc-do-cao-tai-mi-tom-tv-372x233.jpg 372w, https://cdn.mitomzi.cc/2022/08/xem-truc-tiep-bong-da-toc-do-cao-tai-mi-tom-tv-664x415.jpg 664w, https://cdn.mitomzi.cc/2022/08/xem-truc-tiep-bong-da-toc-do-cao-tai-mi-tom-tv-768x480.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption id="caption-attachment-30682" class="wp-caption-text">Xem trực tiếp bóng đá tốc độ cao tại Mì Tôm TV</figcaption></figure>
<p style="text-align: justify;"><span style="font-weight: 400;">Hiện tại khi truy cập vào Mì Tôm TV, anh em gần như có thể xem được các trận đấu mình thích khá đơn giản. Bởi tất cả các giải đấu bóng đá lớn, nhỏ trên toàn thế giới đều được chúng tôi mua bản quyền đầy đủ. Thêm vào đó, <a href="https://mitomzi.cc/lich-thi-dau"><strong>lịch thi đấu</strong></a> cũng được cập nhật vào đầu giờ mỗi ngày, cho anh em biết được các trận đấu mình yêu thích sẽ bắt đầu vào lúc nào chuẩn xác nhất.</span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Với việc áp dụng những công nghệ mới nhất, khi xem </span><b>tructiepbongda</b><span style="font-weight: 400;"> tại Mitomf.tv, anh em cũng cảm nhận được chất lượng trong trận đấu cực kỳ cao. Khi mà từ hình ảnh, âm thanh, kích thước màn hình cho đến tốc độ đều ở mức cao. Bình luận cho các trận đấu bóng đá được trực tiếp tại </span><b>Mitom TV</b><span style="font-weight: 400;"> cũng là các BLV hàng đầu Việt Nam. Càng làm cho trải nghiệm xem bóng đá của anh em trở nên cao hơn rất nhiều.</span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Dù phát sóng bóng đá trực tiếp với chất lượng cao và trải nghiệm khá tuyệt vời. Nhưng chúng tôi cũng không bao giờ thu bất kỳ đồng phí nào của anh em. Để anh em có thể tha hồ truy cập và xem những trận bóng đá hấp dẫn nhất hoàn toàn miễn phí. Ngoài ra, Mitomf.tv gần như không bao giờ bị bảo trì hãy lỗi, giúp anh em xem bóng đá lúc nào cũng được.</span></p>
<h2 style="text-align: justify;"><span id="Muc_tieu_phat_trien_cua_trang_web_truc_tiep_bong_da_Mi_Tom_TV"><b>Mục tiêu phát triển của trang web truc tiep bong da Mì Tôm TV</b></span></h2>
<p style="text-align: justify;"><span style="font-weight: 400;">Như chúng tôi đã chia sẻ cho anh em biết ở trên, ngay từ ngày đầu xây dựng thì </span><b>Mì Tôm TV</b><span style="font-weight: 400;"> đã muốn trở thành trang web </span><b>tructiepbongda</b><span style="font-weight: 400;"> số 1 Việt Nam. Cho nên đã đầu tư rất nhiều tiền để mua bản quyền phát sòng các giải bóng đá lớn và áp dụng những công nghệ trực tiếp hiện đại nhất.</span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Cho nên khi vào Mitom TV, anh em có thể dễ dàng tìm và xem những trận đấu bóng đá lớn, hấp dẫn trên khắp thế giới mỗi ngày. Mà lịch trực tiếp luôn được MiTom TV cung cấp vào đầu giờ mỗi ngày, cho anh em biết chi tiết và đầy đủ.</span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Khi xem bong da truc tiep tại Mitomf.tv, anh em còn cảm nhận được chất lượng trong trận đấu cực kỳ cao. Mà nhiều anh em còn đánh giá không khác gì so với việc xem trực tiếp trên TV có độ phân giải màn hình sắc nét và tốc độ mượt mà.</span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Để anh em có thể sử dụng và tìm các trận đấu bóng đá mình muốn xem một cách nhanh nhất. Chúng tôi còn nghiên cứu để thiết kế giao diện trang web khá là khoa học. Chính vì thế, khi vào Mi Tom TV, anh em sẽ thấy giao diện cực kỳ thông minh với việc chia thành nhiều mục khác nhau. Màu sắc được chúng tôi lựa chọn cũng khá hài hòa, giúp anh em nhìn lâu và không bị mỏi mắt. </span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Hiện tại, </span><b>Mì Tôm TV</b><span style="font-weight: 400;"> chỉ mới gia nhập thị trường trực tiếp bóng đá tại Việt Nam trong thời gian ngắn. Nhưng đã thu hút được một số lượng người xem </span><b>truc tiep bong da</b><span style="font-weight: 400;"> cực kỳ lớn. Dù chưa thể trở thành website có số lượng người xem nhiều nhất hiện nay. Nhưng chúng tôi vẫn đang đầu tư và phát triển không ngừng nghỉ. Để cung cấp cho người xem những dịch vụ và trải nghiệm tuyệt vời nhất. Chắc chắn trong tương lai, Mitomf.tv sẽ trở thành trang web </span><b>tructiepbongda</b><span style="font-weight: 400;"> hàng đầu tại Việt Nam.</span></p>
<h2 style="text-align: justify;"><span id="Mitomftv_Trang_web_truc_tiep_bong_da_duoc_yeu_thich_nhat_Viet_Nam_hien_nay"><b>Mitomf.tv – Trang web truc tiep bong da được yêu thích nhất Việt Nam hiện nay</b></span></h2>
<p style="text-align: justify;"><span style="font-weight: 400;">Khi nhắc đến </span><b>Mì Tôm TV</b><span style="font-weight: 400;">, những ai đã từng <strong>xem bong da truc tiep</strong> tại đây đều có những đánh giá cực kỳ cao. Bởi chúng tôi không chỉ phát sóng trực tiếp bóng đá đầy đủ các giải đấu lớn với chất lượng cực kỳ cao. Mà còn cung cấp cho người dùng rất nhiều những chức năng hữu ích khác, cụ thể đó là:</span></p>
<ul style="text-align: justify;">
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Chúng tôi hiện tại đang cập nhật thông tin, tin tức, sự kiện bóng đá cho tất cả các giải đấu trên toàn thế giới mỗi ngày. Để anh em biết được <a href="https://mitomzi.cc/tin-tuc"><strong>tin tức</strong></a> mới nhất về cầu thủ, giải đấu, trước trận đấu, chuyển nhượng, huấn luyện viên, bên lề sân cỏ,… Mi Tom TV cũng cam kết chỉ lấy từ những nguồn uy tín cho nên độ chính xác cực kỳ cao</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Khi truy cập vào đây, anh em còn có thể xem được lịch thi đấu toàn bộ các giải đấu lớn trên thế giới cũng như trong nước khá đầy đủ. Thời gian mà chúng tôi cập nhật lịch bóng đá cũng khá là sớm, cho anh em là người biết nhanh nhất. Trong lịch, anh em sẽ nắm được đầy đủ các thông tin như thời gian trận đấu bắt đầu, đội hình xuất phát, sân tổ chức trận đấu,…</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Mitomf.tv còn cung cấp cho anh em cả <a href="https://mitomzi.cc/bang-xep-hang"><strong>bảng xếp hạng</strong></a> bóng đá tất cả các giải đấu hiện nay. Giúp anh em biết được vị trí trên 1 BXH bất kỳ hoặc là thành tích của đội bóng mà mình yêu thích. Trong bảng xếp hạng bóng đá tại đây, tất cả những thông tin như số vòng thi đấu, điểm số, vị trí, hiệu số thắng/ thua, thành tích trong các trận thi đấu gần nhất đều được cập nhật đầy đủ</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Đối với những trận đấu mà anh em không thể xem </span><b>truc tiep bong da</b><span style="font-weight: 400;"> thì có thể truy cập vào </span><b>Mì Tôm TV</b><span style="font-weight: 400;">. Để có thể xem tỷ số trực tiếp ngay khi trận đấu đang diễn ra. Như vậy anh em sẽ không cần phải theo dõi từng giây trận đấu mà vẫn biết được tỷ số như thế nào một cách chuẩn xác nhất. Thời gian cập nhật tỷ số cũng cực kỳ nhanh, cho nên khi trận đấu xuất hiện bàn thắng anh em sẽ biết ngay lập tức</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Khi các trận đấu bóng đá chính thức kết thúc, Mitom Live cũng cập nhật kết quả ngay lập tức. Giúp anh em biết được <a href="https://mitomzi.cc/ket-qua"><strong>kết quả</strong></a> các trận đấu mà mình không thể xem </span><b>tructiepbongda</b><span style="font-weight: 400;"> khá chi tiết. Thông tin mà chúng tôi cập nhật trong kết quả cũng đầy đủ, từ tỷ số, cầu thủ ghi bàn, số lần phạt góc, ném biên, số thẻ vàng, thẻ đỏ, thời lượng kiểm soát bóng,…</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Mitom Net còn có chức năng cập nhật video <a href="https://mitomzi.cc/video-highlight"><strong>highlight</strong></a> các trận đấu thuộc những giải bóng đá hàng đầu sau khi kết thúc. Giúp anh em xem lại được các diễn biến chính của trận đấu mà mình đã bỏ lỡ với đầy đủ mọi tình huống. Thêm vào đó, chất lượng trong video highlight được chúng tôi cập nhật cũng khá là cao</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Một chức năng nữa cũng khá hữu ích mà anh em có thể sử dụng tại</span><b> Mì Tôm TV</b><span style="font-weight: 400;">, đó là xem <a href="https://mitomzi.cc/ty-le-keo"><strong>tỷ lệ kèo</strong></a> trực tuyến. Khi chúng tôi cập nhật kèo cho toàn bộ các giải đấu bóng đá cả trong lần ngoài nước. Cho nên chỉ cần vào đây là anh em có thể tìm và xem được bảng kèo trong trận đấu mình muốn. Thông tin trong bảng kèo cũng khá đầy đủ, từ việc có tất cả các thể loại kèo nhà cái. Thêm vào đó tỷ lệ kèo và tỷ lệ ăn tiền cũng cực kỳ chuẩn xác. Giúp anh em có thể soi kèo trận đấu mình thích với tỷ lệ chính xác cao hơn</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Tại Mitom Live, anh em cũng được tham khảo những bài nhận định, soi kèo của những chuyên gia hàng đầu trước khi trận đấu diễn ra. Giúp anh em có thêm những thông tin quan trọng và soi kèo trận đấu bóng đá mình muốn với tỷ lệ chính xác cao nhất</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Đặc biệt, Mitomf.tv còn cung cấp cả ứng dụng <a href="https://mitomzi.cc/livescore"><strong>Livescore</strong></a> hoàn toàn miễn phí cho anh em sử dụng. Với ứng dụng này, anh em có thể tìm và xem được những thông tin bóng đá trực tuyến khá là nhanh chóng và đơn giản.</span></li>
</ul>
<p style="text-align: justify;"><span style="font-weight: 400;">Anh em có thể thấy rằng, ngoài việc có thể được xem </span><b>tructiepbongda</b><span style="font-weight: 400;"> với chất lượng cao. Khi truy cập vào Mitom Live, anh em có thể sử dụng được rất nhiều những chức năng khá cực kỳ hữu ích, nhất là dành cho những anh em nào yêu thích bóng đá. Chính vì thế, để xem được thông tin bóng đá trực tuyến chuẩn nhất, </span><b>Mitom TV </b><span style="font-weight: 400;">cũng là một sự lựa chọn mà anh em không được bỏ qua.</span></p>
<h2 style="text-align: justify;"><span id="Vi_sao_anh_em_nen_xem_truc_tiep_bong_da_tai_Mitomftv"><b>Vì sao anh em nên xem truc tiep bong da tại Mitomf.tv?</b></span></h2>
<p style="text-align: justify;"><span style="font-weight: 400;">Không phải ngẫu nhiên mà chỉ trong 1 thời gian ngắn, Mì Tôm TV trở thành website xem bong da truc tiep hàng đầu Việt Nam. Mà bởi chúng tôi cung cấp cho mọi người những trải nghiệm mà không thể tìm thấy được bất kỳ trang web trực tiếp bóng đá nào khác hiện nay. Cụ thể đó là:</span></p>
<h3 style="text-align: justify;"><span id="Giao_dien_trang_web_dep_mat_de_su_dung"><b>Giao diện trang web đẹp mắt, dễ sử dụng</b></span></h3>
<p style="text-align: justify;"><span style="font-weight: 400;">Trước khi xây dựng trang web của mình, chúng tôi đã nghiên cứu hành vi người dùng khá nhiều. Để thiết kế ra một website với giao diện cực kỳ khoa học. Với việc chia ra thành từng mục khác nhau, mỗi mục là một chức năng. Điều này có thể giúp anh em sử dụng dễ dàng hơn rất nhiều.</span></p>
<figure id="attachment_30684" aria-describedby="caption-attachment-30684" style="width: 800px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-30684" src="https://cdn.mitomzi.cc/2022/08/giao-dien-website-thong-minh-de-dang-su-dung.jpg" alt="https://cdn.mitomzi.cc/2022/08/giao-dien-website-thong-minh-de-dang-su-dung.jpg" width="800" height="500" srcset="https://cdn.mitomzi.cc/2022/08/giao-dien-website-thong-minh-de-dang-su-dung.jpg 800w, https://cdn.mitomzi.cc/2022/08/giao-dien-website-thong-minh-de-dang-su-dung-372x233.jpg 372w, https://cdn.mitomzi.cc/2022/08/giao-dien-website-thong-minh-de-dang-su-dung-664x415.jpg 664w, https://cdn.mitomzi.cc/2022/08/giao-dien-website-thong-minh-de-dang-su-dung-768x480.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption id="caption-attachment-30684" class="wp-caption-text">Giao diện Website thông minh dễ dàng sử dụng cho người dùng</figcaption></figure>
<p style="text-align: justify;"><span style="font-weight: 400;">Riêng đối với chuyên mục phát sóng </span><b>trực tiếp bóng đá</b><span style="font-weight: 400;">, </span><b>Mì Tôm TV</b><span style="font-weight: 400;"> còn có nhiều chức năng giúp anh em có thể tìm trận đấu mình muốn xem nhanh nhất như giải đấu, trận đấu hot, trận đấu đang diễn ra, tên đội bóng,….</span></p>
<p style="text-align: justify;"><span style="font-weight: 400;">Màu sắc được Mi Tom TV lựa chọn cũng khá là đẹp mắt và hài hòa. Khi làm nổi bậc các chức năng quan trọng lên. Thêm vào đó, còn giúp anh em không bao giờ cảm thấy bị mỏi mắt, nếu như nhìn quá lâu vào màn hình.</span></p>
<h3 style="text-align: justify;"><span id="Phat_song_toan_bo_cac_giai_dau_hap_dan_nhat"><b>Phát sóng toàn bộ các giải đấu hấp dẫn nhất</b></span></h3>
<p style="text-align: justify;"><span style="font-weight: 400;">Trang web </span><b>Mitomf.tv</b><span style="font-weight: 400;"> hiện tại đã mua được bản quyền phát sóng toàn bộ các giải đấu hấp dẫn, ăn khách nhất trên thế giới và Việt Nam ở thời điểm hiện nay. Cho nên khi truy cập vào đây để xem </span><b>tructiepbongda</b><span style="font-weight: 400;">, anh em sẽ thưởng thức được các giải đấu sau:</span></p>
<ul style="text-align: justify;">
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Premier League – Giải bóng đá vô địch Anh</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">UEFA Champions League – Cúp C1</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Serie A – Giải vô địch bóng đá Ý</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">La Liga – Giải vô địch bóng đá Tây Ban Nha</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Bundesliga – Giải vô địch bóng đá Đức</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Ligue 1 – Giải vô địch bóng đá Pháp</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">World Cup – Giải vô địch bóng đá thế giới</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Euro – Giải vô địch bóng đá Châu Âu</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Champion League – Giải vô địch bóng đá Châu Âu cấp CLB</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">V-League – Giải vô địch bóng đá Việt Nam</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Ngoài ra, anh em còn được xem nhiều giải đấu khác như Cúp C2, Copa America, các giải bóng đá mà đội tuyển Việt Nam tham gia,….</span></li>
</ul>
<p style="text-align: justify;"><span style="font-weight: 400;">Mì Tôm TV còn cập nhật lịch phát sóng các giải đấu bóng đá khá sớm vào đầu giờ mỗi ngày. Để anh em biết được hôm nay diễn ra các trận đấu bóng đá nào khá đầy đủ. Thêm vào đó còn nắm được thời gian mà trận đấu bắt đầu để thu xếp thời gian xem hợp lý nhất.</span></p>
<h3 style="text-align: justify;"><span id="Xem_tructiepbongda_voi_chat_luong_cao"><b>Xem tructiepbongda với chất lượng cao</b></span></h3>
<p style="text-align: justify;"><span style="font-weight: 400;">Để giúp anh em có thể </span><b>xem bóng đá trực tiếp</b><span style="font-weight: 400;"> với chất lượng cao nhất. Chúng tôi cũng đã bỏ ra rất nhiều tiền để sở hữu được những công nghệ phát sóng hiện đại nhất. Cho nên khi xem bất kỳ trận đấu bóng đá nào tại đây, anh em sẽ có cảm nhận như sau:</span></p>
<ul style="text-align: justify;">
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Tất cả các trận đấu đều được </span><b>Mitomf.tv</b><span style="font-weight: 400;"> cập nhật đường link xem </span><b>tructiepbongda</b><span style="font-weight: 400;"> khá là sớm và đa dạng. Cho anh em lựa chọn được link phù hợp với thiết bị xem của mình nhất</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Chất lượng hình ảnh trong trận đấu cũng cực kỳ sắc nét khi có độ phân giải lên đến Full HD. Giúp anh em nhìn thấy được từng chi tiết trên sân</span></li>
</ul>
<figure id="attachment_30686" aria-describedby="caption-attachment-30686" style="width: 800px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-30686" src="https://cdn.mitomzi.cc/2022/08/xem-tructiepbongda-chat-luong-cao-tai-mitomtv.jpg" alt="xem-tructiepbongda-chat-luong-cao-tai-mitomtv" width="800" height="500" srcset="https://cdn.mitomzi.cc/2022/08/xem-tructiepbongda-chat-luong-cao-tai-mitomtv.jpg 800w, https://cdn.mitomzi.cc/2022/08/xem-tructiepbongda-chat-luong-cao-tai-mitomtv-372x233.jpg 372w, https://cdn.mitomzi.cc/2022/08/xem-tructiepbongda-chat-luong-cao-tai-mitomtv-664x415.jpg 664w, https://cdn.mitomzi.cc/2022/08/xem-tructiepbongda-chat-luong-cao-tai-mitomtv-768x480.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption id="caption-attachment-30686" class="wp-caption-text">Xem tructiepbongda chất lượng cao tại MitomTV</figcaption></figure>
<ul style="text-align: justify;">
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Chât lượng âm thanh thì cực kỳ chân thực với âm lượng khá lớn. Giúp anh em nghe được sự cuồng nhiệt trên sân bóng</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Kích thước màn hình là chúng tôi cung cấp cho anh em cũng đúng chuẩn và tương thích với toàn bộ các thiết bị xem khác nhau,</span></li>
</ul>
<p style="text-align: justify;"><b>Mì Tôm TV</b><span style="font-weight: 400;"> còn cho phép anh em có thể tùy chỉnh độ phân giải hình ảnh, tăng/ giảm âm lượng hay kích thước màn hình sao cho phù hợp với mình nhất.</span></p>
<h3 style="text-align: justify;"><span id="Xem_truc_tiep_bong_da_voi_trai_nghiem_cao"><b>Xem truc tiep bong da với trải nghiệm cao</b></span></h3>
<p style="text-align: justify;"><span style="font-weight: 400;">Khi truy cập vào Mitomf.tv để </span><b>xem bong da truc tiep</b><span style="font-weight: 400;">, anh em còn nhận được những trải nghiệm cực kỳ cao. Mà đảm bảo rằng, hiện tại ở Việt Nam không có nhiều trang web </span><b>tructiepbongda</b><span style="font-weight: 400;"> có thể làm được điều này. Cụ thể đó là:</span></p>
<ul style="text-align: justify;">
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Mitom TV đang sử dụng đường truyền với công nghệ cực kỳ hiện đại, cho nên tốc độ trận đấu diễn ra lúc nào cũng ổn định, mượt mà. Để anh em xem được trận đấu mình thích mà không bao giờ gặp các hiện tượng như giật, lag hay là đứng hình</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Chúng tôi cũng đang sở hữu trong đội ngũ rất nhiều BLV hàng đầu Việt Nam ở thời diểm hiện tại. Cho nên toàn bộ các trận đấu bóng đá được phát sóng trực tiếp tại đây luôn được bình luận bằng tiếng Việt. Cách bình luận của những BLV tại </span><b>Mi Tom TV</b><span style="font-weight: 400;"> cũng cực kỳ hài hước, vui nhộn. Cho anh em những giây phút xem bóng đá trực tiếp khá là vui vẻ </span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Mỗi trận đấu đều được chúng tôi phân công cho 2 bình luận viên khác nhau. Cho nên anh em sẽ không bao giờ cảm thấy chán. Đặc biệt, anh em còn được tương tác với các BLV của Mì Tôm TV khá là dễ dàng. Chỉ cần anh em đặt ra những câu hỏi có liên quan đến trận đấu, cá cược hay là bóng đá sẽ được trả lời ngay lập tức. Điều này sẽ tạo ra một không khí xem tructiepbongda khá thú ví và sinh động</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Hiện tại Mitom TV vẫn đang truc tiep bong da hoàn toàn miễn phí. Nhưng chúng tôi cũng cam kết không chèn bất kỳ mẫu quảng cáo hay banner nào vào trận đấu, khi trận đấu vẫn đang diễn ra. Nên anh em không bao giờ sợ bị làm phiền trong khi đang xem trận đấu bóng đá mà mình yêu thích.</span></li>
</ul>
<h3 style="text-align: justify;"><span id="Co_nen_xem_bong_da_truc_tuyen_tai_Mitomftv_hay_khong"><b>Có nên xem bóng đá trực tuyến tại Mitomf.tv hay không?</b></span></h3>
<p style="text-align: justify;"><span style="font-weight: 400;">Khi xem đến đây, chắc anh em đã biết được lý do tại sao mà nhiều người lại chọn </span><b>Mì Tôm TV</b><span style="font-weight: 400;"> để</span><b> xem bóng đá trực tuyến</b><span style="font-weight: 400;">. Chính vì thế, nếu hôm nay anh em đang có nhu cầu tìm và xem một trận đấu bóng đá mà mình yêu thích, thì tuyệt đối không được bỏ qua Mitom Live. Bởi những lý do sau:</span></p>
<ul style="text-align: justify;">
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Giao diện trang web <strong>bóng đá trực tuyến Mitom TV</strong> đẹp mắt, dễ dàng sử dụng cho tất cả mọi người</span></li>
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Phát sóng tructiepbongda toàn bộ các giải đấu hàng đầu thế giới hoàn toàn miễn phí</span></li>
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Đường link xem trực tiếp bóng đá lúc nào cũng được cập nhật khá sớm và đa dạng</span></li>
</ul>
<figure id="attachment_30687" aria-describedby="caption-attachment-30687" style="width: 800px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-30687" src="https://cdn.mitomzi.cc/2022/08/kenh-bong-da-truc-tuyen-full-hd-va-binh-luan-tieng-viet-mien-phi.jpg" alt="kenh-bong-da-truc-tuyen-full-hd-va-binh-luan-tieng-viet-mien-phi" width="800" height="500" srcset="https://cdn.mitomzi.cc/2022/08/kenh-bong-da-truc-tuyen-full-hd-va-binh-luan-tieng-viet-mien-phi.jpg 800w, https://cdn.mitomzi.cc/2022/08/kenh-bong-da-truc-tuyen-full-hd-va-binh-luan-tieng-viet-mien-phi-372x233.jpg 372w, https://cdn.mitomzi.cc/2022/08/kenh-bong-da-truc-tuyen-full-hd-va-binh-luan-tieng-viet-mien-phi-664x415.jpg 664w, https://cdn.mitomzi.cc/2022/08/kenh-bong-da-truc-tuyen-full-hd-va-binh-luan-tieng-viet-mien-phi-768x480.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /><figcaption id="caption-attachment-30687" class="wp-caption-text">Kênh bóng đá trực tuyến full HD và bình luận tiếng Việt miễn phí</figcaption></figure>
<ul style="text-align: justify;">
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Chất lượng trong trận đấu cũng không thể chê vào đâu được, từ âm thanh, hình ảnh, kích thước màn hình</span></li>
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Tốc độ mà trận đấu diễn ra cũng cực kỳ ổn định, mượt mà</span></li>
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Bình luận trận đấu cũng là các BLV nổi tiếng, hàng đầu Việt Nam hiện nay</span></li>
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Quảng cáo, banner không bao giờ xuất hiện</span></li>
<li style="font-weight: 400; text-align: justify;" aria-level="1"><span style="font-weight: 400;">Thông tin trước trận đấu cũng được cập nhật từ sớm.</span></li>
</ul>
<p style="text-align: justify;">Ngay từ những ngày đầu mới thành lập, <strong>Mi Tom TV</strong> đã rất chú trọng tới chất lượng video trực tiếp bóng đá cũng như các dịch vụ tiện ích. Trang web này không ngần ngại đầu tư nhiều tiền bạc để nâng cao chất lượng dịch vụ và khẳng định vị thế của mình tại Việt Nam. Vì vậy mục tiêu phát triển chính của <strong>MitomTV</strong> đó chính là trở thành website phát trực tiếp bóng đá số 1 Việt Nam.</p>
<p style="text-align: justify;">Trong suốt quá trình hoạt động, chúng tôi luôn cố gắng, nỗ lực hết mình để mang đến cho người dùng trải nghiệm tốt nhất. Cũng nhờ sự tận tâm, cố gắng không ngừng nghỉ mà <strong>Mitom</strong> hiện đã có số lượng người theo dõi cực khủng. Có thể nói đây là một dấu hiệu đáng mừng đối với <strong>MitomTV</strong> và trong tương trang web này sẽ còn vươn tầm mạnh mẽ hơn nữa tại thị trường trực tiếp bóng đá tại Việt Nam.</p>
<h2 style="text-align: left;"><span id="Hien_tai_Mitom_TV_cung_cap_cho_nguoi_dung_nhung_tinh_nang_nao"><b>Hiện tại Mitom TV cung cấp cho người dùng những tính năng nào?</b></span></h2>
<p style="text-align: justify;"><strong>Mì Tôm Tivi</strong> được hàng triệu người hâm mộ bóng đá tại Việt Nam biết đến là địa chỉ phát trực tiếp bóng đá đầy đủ nhất. Ngoài ra trang web này con mang đến cho người dùng vô vàn những tính năng tiện ích khác. Những tính năng mà <strong>Mi Tom TV</strong> đang cung cấp cho người dùng trên giao diện chính của mình hiện gồm có:</p>
<h3 style="text-align: justify;"><span id="Tin_tuc_truc_tiep_bong_da"><b>Tin tức trực tiếp bóng đá</b></span></h3>
<p style="text-align: justify;">Hiện tại<strong> Mì Tôm TV</strong> đang có một đội ngũ chuyên viên bóng đá giàu kinh nghiệm luôn cập nhật tin tức túc cầu liên tục. Tại đây bạn sẽ biết được toàn bộ tin tức trực tiếp bóng đá trong nước và trên thế giới một cách đầy đủ, chi tiết nhất. Tất cả tin tức liên quan đến bóng đá đều được cung cấp trên giao diện chính của <strong>Mi Tom TV</strong> giúp người dùng nắm bắt mọi thông tin một cách đầy đủ và rõ ràng nhất.</p>
<h3 style="text-align: justify;"><span id="Lich_thi_dau_bong_da_hom_nay"><b>Lịch thi đấu bóng đá hôm nay</b></span></h3>
<p style="text-align: justify;"><strong>Mitom Tivi</strong> cập nhật tất cả lịch thi đấu của các trận đấu bóng đá diễn ra trong ngày hoặc ngày mai rất đầy đủ và rõ ràng trên giao diện chính. Vì vậy người dùng chỉ cần nhìn lướt qua giao diện trang là có thể nắm bắt được những trận đấu trong ngày hoặc trận chuẩn bị diễn ra vào ngày mai rất chính xác. Không những thế <strong>Mitom TV</strong> còn cung cấp cho người dùng các thông tin về:</p>
<ul style="text-align: justify;">
<li aria-level="1">Đội hình ra sân của các đội bóng.</li>
<li aria-level="1">Thành tích thi đấu.</li>
<li aria-level="1">Phong độ thi đấu thời điểm hiện tại.</li>
<li aria-level="1">Lịch sử đối đầu.</li>
</ul>
<h3 style="text-align: justify;"><span id="Highlight_bong_da_tai_Mi_Tom_TV"><b>Highlight bóng đá tại Mì Tôm TV</b></span></h3>
<p style="text-align: justify;">Nếu như bạn không có thời gian xem đủ 90 phút thi đấu trong trận đấu mình yêu thích thì bạn có thể lựa chọn hạng mục Highlight của <strong>Mi Tom TV</strong>. Trang web đã tổng hợp lại những pha xử lý nổi bật, khoảnh khắc hay và kịch tính nhất trong trận đấu gói gọn trong khoảng thời gian từ 10 đến 15 phút để người xem có được cái nhìn bao quát về trận túc cầu.</p>
<h3 style="text-align: justify;"><span id="Ket_qua_cac_tran_dau_bong_da"><b>Kết quả các trận đấu bóng đá</b></span></h3>
<p style="text-align: justify;">Tất cả những trận đấu túc cầu diễn ra trong vòng 24h đều được cập nhật rất đầy đủ và chi tiết. Khi bạn truy cập vào mục KQBD các trận đấu của <strong>Mì Tôm TV</strong> thi sẽ nắm được toàn bộ thông tin về tỷ số, cầu thủ ghi bàn, thời gian ghi bàn, số thẻ phạt, số lần ném biên của từng đội, tỷ số trận đấu,…</p>
<h3 style="text-align: justify;"><span id="Bang_xep_hang_bong_da_hom_nay_tai_Mi_Tom_TV"><b>Bảng xếp hạng bóng đá hôm nay tại Mì Tôm TV</b></span></h3>
<p style="text-align: justify;"><strong>Mì Tôm TV</strong> liên tục cập nhật thông tin bảng xếp hạng các giải đấu bóng đá lớn nhỏ trong vòng 24 giờ để mọi người nắm được thứ hạng của từng đội bóng. Cũng chính nhờ điểm đặc biệt này mà bạn có thể biết được thứ hạng của đội bóng mình yêu thích rất rõ ràng.</p>
<h3 style="text-align: justify;"><span id="Ty_le_keo_tai_MitomTV"><b>Tỷ lệ kèo tại MitomTV</b></span></h3>
<p style="text-align: justify;"><strong>Mi Tom TV</strong> không chỉ cung cấp video trực tiếp các trận đấu bóng đá mà trang web này còn có bảng kèo cho các trận túc cầu diễn ra trong ngày. Đội ngũ chuyên gia bóng đá của <strong>Mitom Tivi</strong> đã phân tích từng đội bóng rất kỹ càng để có thể đưa ra tỷ lệ kèo cân đối, hợp lý nhất. Cũng chính nhờ điểm đặc biệt này mà các bạn có thể soi kèo dễ dàng để đưa ra kết luận chính xác nhất.</p>
<h3 style="text-align: left;"><span id="Link_xem_bong_da_truc_tiep_mien_phi_hom_nay_tai_Mi_Tom_TV"><b>Link xem bóng đá trực tiếp miễn phí hôm nay tại Mì Tôm TV</b></span></h3>
<p style="text-align: justify;">Khi mọi người không có điều kiện lắp đặt truyền hình Cáp, K+ để theo dõi các trận túc cầu mình yêu thích thì <strong>Mitom TV</strong> sẽ là một sự lựa chọn hoàn hảo. Bạn sẽ không mất bất cứ khoản phí nào mà vẫn có thể theo dõi các trận bóng đá kinh điển tại trang web này.</p>
<p style="text-align: justify;">Không những thế <strong>Mì Tôm TV</strong> còn có đội ngũ bình luận viên tài năng người Việt. Vì vậy mọi trận túc cầu mà bạn theo dõi tại <strong>Mì Tôm Tivi</strong> sẽ có bình luận tiếng Việt rất rõ ràng. Hiện tại <strong>MitomTV</strong> cung cấp từ 2 đến 3 đường link cho mỗi trận đấu trực tiếp bóng đá để đảm bảo người dùng có thêm nhiều lựa chọn hơn khi muốn theo dõi trận đấu mình yêu thích.</p>
<p style="text-align: justify;">Tại đây bạn có thể <strong>xem tructiepbongda</strong> các giải đấu thế giới cũng như châu lục như: World Cup, Euro, Ngoại hạng Anh, La Liga, Bundesliga, Serie A, V-League,… Tại các giải đấu này đều có sự xuất hiện của những ngôi sao bóng đá hàng đầu thế giới cũng như quốc gia đảm bảo mang đến cho bạn trải nghiệm tuyệt vời nhất.</p>
<h3 style="text-align: justify;"><span id="Truc_tiep_bong_da_Mitom_hom_nay"><b>Trực tiếp bóng đá Mitom hôm nay</b></span></h3>
<p style="text-align: justify;">Khi anh em đến với trang web <strong>Mitom TV</strong> thì mọi người sẽ được theo dõi các video trực tiếp bóng đá hôm nay có chất lượng hình ảnh sắc nét và đường truyền mượt mà nhất. Tại đây bạn không chỉ được xem live stream các trận bóng nảy lửa mà còn được tham khảo rất nhiều thông tin bổ ích về bóng đá.</p>
<p style="text-align: justify;">Link xem trực tiếp bóng đá của <strong>Mitom TV</strong> cung cấp luôn đảm bảo sẽ mang đến cho người dùng trải nghiệm tuyệt vời nhất với những giải bóng đá đỉnh cao như: Champions League, La Liga, Serie A, Ngoại hạng Anh,… Không những thế địa chỉ này còn cung cấp cả những link truc tiep bong da có tốc độ đường truyền mượt mà, nhanh chóng nhất.</p>
<p style="text-align: justify;">Trang web bongdatructiep<strong> Mì Tôm TV</strong> từ lâu đã là địa chỉ cung cấp những video trực tiếp bóng đá chất lượng cao cùng rất nhiều thông tin hữu ích về giới túc cầu. Trang web này luôn luôn đồng hành cùng người dùng để có thể mang đến cho mọi người trải nghiệm mới mẻ, tuyệt vời nhất.</p>
<p style="text-align: justify;">Ngoài ra <strong>Mi Tom TV</strong> còn cung cấp cho người dùng rất nhiều đường link Tructiepbongda cùng các link stream facebook có chất lượng hình ảnh Full HD. <strong>Mì Tôm TV </strong>liên tục cập nhật các thông tin về bóng đá cũng như các môn thể thao nổi bật khác để giúp người dùng thỏa mãn đam mê bất tận bên trái bóng tròn.</p>
<p style="text-align: justify;">Khi các bạn đến với link Tructiepbongda <strong>Mitom TV</strong> thì mọi người sẽ được theo dõi các giải đấu lớn như: Champions League, Europa League, Ngoại hạng Anh, La Liga, Serie A,… Mọi người sẽ được xem các trận cầu nảy lửa thông qua những đường link được chúng tôi cung cấp mà không cần phải bỏ ra bất cứ khoản phí nào.</p>
<p style="text-align: justify;">Với bình luận tiếng Việt, âm thanh chân thực, chất lượng hình ảnh sắc nét bạn sẽ được hòa mình vào thế giới thể thao tại <strong>Mi Tom TV</strong>. Đặc biệt là <strong>Mitom TV</strong> còn cung cấp cho người dùng rất nhiều kèo cược có tỷ lệ odds ổn định để mọi người có thể thử vận may của mình với các trận bóng đá mình yêu thích.</p>
<h2 style="text-align: left;"><span id="Tong_hop_cac_giai_dau_bong_da_tai_Mi_Tom_TV"><b>Tổng hợp các giải đấu bóng đá tại Mi Tom TV</b></span></h2>
<p style="text-align: justify;"><strong>MitomTV</strong> được nhiều NHM bóng đá đánh giá là địa chỉ xem bóng đá trực tiếp chất lượng nhất. Lý do là bởi tại đây cung cấp tất cả các giải đấu túc cầu đỉnh cao trên toàn thế giới như:</p>
<p style="text-align: justify;">Tổng hợp các giải đấu bóng đá tại trang web</p>
<ul style="text-align: justify;">
<li aria-level="1">Ngoại Hạng Anh – Premier League.</li>
<li aria-level="1">Cup C1 – Champions League.</li>
<li aria-level="1">Giải Vô Địch bóng đá thế giới – World Cup.</li>
<li aria-level="1">Giải vô địch bóng đá châu Âu – Euro.</li>
<li aria-level="1">Giải vô địch bóng đá Nam Mỹ – Copa America.</li>
<li aria-level="1">Giải VĐQG Ý – Serie A.</li>
<li aria-level="1">Giải VĐQG Tây ban Nha – La Liga.</li>
<li aria-level="1">Giải VĐQG Đức – Bundesliga.</li>
<li aria-level="1">Sea Game.</li>
<li aria-level="1">AFF Cup.</li>
<li aria-level="1">V-League.</li>
<li aria-level="1">J-League.</li>
<li aria-level="1">K-League.</li>
<li aria-level="1">U23 châu Á.</li>
</ul>
<h2 style="text-align: left;"><span id="Xem_truc_tiep_bong_da_Mitom_Tivi_duoc_gi"><b>Xem trực tiếp bóng đá Mitom Tivi được gì?</b></span></h2>
<p style="text-align: justify;"><strong>Mitom TV</strong> là thiên đường đối với những người hâm mộ bóng đá bởi trang web này mang đến cho người dùng vô vàn lợi ích. Những ưu điểm vượt trội mà <strong>Mi Tom TV</strong> hiện đang sở hữu gồm có:</p>
<ul style="text-align: justify;">
<li aria-level="1"><strong>Mitom TiVi</strong> hỗ trợ xem tructiepbongda miễn phí.</li>
<li aria-level="1">Tốc độ đường truyền nhanh chóng, ổn định.</li>
<li aria-level="1">Hỗ trợ xem bóng đá trên nhiều thiết bị điện tử thông minh.</li>
<li aria-level="1">Bình luận viên tiếng Việt, hình ảnh sắc nét, âm thanh sống động.</li>
<li aria-level="1">Cập nhập link mới liên tục giúp người dùng không gặp tình trạng link bị chết.</li>
<li aria-level="1">Đội ngũ nhân viên kỹ thuật của<strong> Mi Tom TV</strong> rất hùng hậu có khả năng giải quyết mọi sự cố một cách nhanh chóng.</li>
<li aria-level="1"><strong>Mitom</strong> có đầy đủ các giải đấu bóng đá từ lớn đến nhỏ.</li>
<li aria-level="1">Kho thông tin về bóng đá của <strong>Mì Tôm TV</strong> rất đồ sộ giúp người dùng hiểu rõ hơn về môn thể thao vua.</li>
</ul>
<h2 style="text-align: left;"><span id="Tai_sao_MitomTV_lai_duoc_yeu_thich_nhu_hien_nay"><b>Tại sao MitomTV lại được yêu thích như hiện nay?</b></span></h2>
<p style="text-align: justify;">Hiện tại <strong>Mitom</strong> là đang là một địa chỉ xem truc tiep bong da uy tín, chất lượng có số lượng người theo dõi lên đến hàng triệu người. Trang web này luôn được người hâm mộ bóng đá Việt Nam ưu tiên lựa chọn mỗi khi có mùa giải mới diễn ra. Chúng tôi sẽ chia sẻ tới các bạn thông tin về những lý do giúp <strong>Mi Tom TV</strong> nhận được sự yêu thích của nhiều người, cụ thể:</p>
<h3 style="text-align: justify;"><span id="Giao_dien_dep_mat_sang_tao"><b>Giao diện đẹp mắt – sáng tạo</b></span></h3>
<p style="text-align: justify;">Yếu tố đầu tiên giúp<strong> Mitom TV Trực tiếp Bóng đá</strong> nhận được sự yêu thích của nhiều người đó chính là giao diện đẹp mắt, sáng tạo. <strong>Mitom</strong> đã khảo sát qua rất nhiều người dùng để có thể tạo nên một giao diện thân thiện, chuyên nghiệp nhất. Chính vì vậy mà đội ngũ thiết kế của <strong>Mi Tom TV</strong> đã chăm chút rất tỉ mỉ từng hình ảnh, từng hạng mục trên giao diện chính trang web để gây ấn tượng mạnh với người dùng.</p>
<h3 style="text-align: left;"><span id="Mi_Tom_TV_cung_cap_Video_full_HD_cuc_sac_net"><b>Mi Tom TV cung cấp Video full HD cực sắc nét</b></span></h3>
<p style="text-align: justify;">Từ khi <strong>Mitom TV</strong> được ra đời cho đến nay trang web này luôn đảm bảo chất lượng hình ảnh của video trực tiếp bóng đá tốt nhất. Cũng chính nhờ sự chuyên nghiệp này mà chúng tôi đã trở thành sự lựa chọn hàng đầu của những người hâm mộ bóng đá. Ưu điểm nổi bật của video trực tiếp bóng đá tại địa chỉ này như sau:</p>
<p style="text-align: justify;">Tất cả các trận đấu túc cầu được<strong> Mi Tom TV</strong> phát trực tiếp luôn đảm bảo khả năng vận hành mượt mà, nhanh chóng. Lý do là bởi <strong>Mitom TV</strong> đã đầu tư cho những công nghệ xử lý tân tiến nhất.</p>
<p style="text-align: justify;">Hình ảnh trong các video tructiepbongda của<strong> MitomTV</strong> luôn đảm bảo có độ phân giải cực cao. Không những thế hệ thống âm thanh trong các video còn rất chân thực và sống động g người dùng nâng cao trải nghiệm được tốt hơn.</p>
<h3 style="text-align: left;"><span id="Doi_ngu_binh_luan_vien_giau_kinh_nghiem_tai_Mi_Tom_TV"><b>Đội ngũ bình luận viên giàu kinh nghiệm tại Mì Tôm TV</b></span></h3>
<p style="text-align: justify;">Một ưu điểm khác của <strong>Mi Tom TV</strong> mà chúng ta cần phải nhắc tới đó chính là có đội ngũ BLV giàu kinh nghiệm. Hiện tại <strong>Mitom TV</strong> đang sở hữu một đội ngũ bình luận viên trẻ trung có nguồn kiến thức sâu rộng trong bóng đá. Không những thế các BLV của trang còn có chất giọng rất dễ nghe và biết cách dẫn dắt thông tin trận đấu rất lôi cuốn, rõ ràng. Cũng chính nhờ sự chuyên nghiệp của đội ngũ BLV mà <strong>MitomTV</strong> đã nhận được sự yêu thích của rất nhiều người.</p>
<h3 style="text-align: left;"><span id="MitomTV_truc_tiep_bong_da_hom_nay_chat_luong"><b>MitomTV trực tiếp bóng đá hôm nay chất lượng</b></span></h3>
<p style="text-align: justify;">Đối với những anh em đam mê xem bóng đá trực tiếp thì họ đã quá quen thuộc với cái tên<strong> Mi Tom TV</strong>. Bởi đây là một kênh phát sóng trực tiếp bóng đá cực chất lượng có hệ thống đường link ổn định, mượt mà nhất. Trung bình mỗi trận đấu túc cầu được<strong> Mi Tom TV</strong> phát trực tiếp sẽ có từ 2 đến 3 đường link dẫn.</p>
<p style="text-align: justify;">Vì vậy bạn có thể lựa chọn bất cứ đường link nào của <strong>Mitom TiVi</strong> để có thể theo dõi trận đấu mình yêu thích một cách trọn vẹn nhất. Ngoài ra đường link <strong>Mi Tom TV</strong> còn cung cấp thêm cho nhiều lợi ích khác như:</p>
<ul style="text-align: justify;">
<li aria-level="1">Tất cả những đường link mà <strong>Mi Tom TV</strong> cung cấp đều hoàn toàn miễn phí cho nên người dùng có thể xem bóng đá trực tiếp bất cứ lúc nào.</li>
<li aria-level="1">Các đường link luôn được cập nhật 1 tiếng trước khi trận đấu chính thức bắt đầu. Tuy nhiên anh em nên truy cập vào link sớm để tránh tình trạng giật, lag do quá tải.</li>
</ul>
<p style="text-align: justify;">Trong trường hợp bạn không thể truy cập vào link xem bóng đá trực tiếp của <strong>Mitom TiVi</strong> thì hãy lựa chọn link khác đã được trang web cung cấp. Còn nếu như bạn không không vào được cả 3 đường link thì hãy liên hệ trực tiếp với đội ngũ CSKH để được hỗ trợ.</p>
<h3 style="text-align: justify;"><span id="Truc_tiep_bong_da_khong_quang_cao"><b>Trực tiếp bóng đá không quảng cáo</b></span></h3>
<p style="text-align: justify;">Một đặc điểm khác của <strong>Mitom TV</strong> được nhiều người yêu thích đó chính là trang web luôn đặt trải nghiệm của người dùng lên trên hết. Vì vậy mà khi bạn xem tructiepbongda tại trang web này sẽ không thấy sự xuất hiện của các banner, quảng cáo. Không những thế <strong>Mi Tom TV</strong> cũng cam kết rằng sẽ không làm gián đoạn thời gian tận hưởng trận đấu bóng đá của người xem.</p>
<h2 style="text-align: left;"><span id="Mi_Tom_TV_duoc_nguoi_dung_danh_gia_nhu_the_nao"><b>Mì Tôm TV được người dùng đánh giá như thế nào?</b></span></h2>
<p style="text-align: justify;">Trải qua nhiều năm hoạt động trên thị trường Việt Nam, <strong>Mì Tôm Tivi</strong> đã nhận được rất nhiều đánh giá tích cực từ phía người dùng. Mời các bạn cùng chúng tôi điểm qua một số đánh giá tiêu biểu về<strong> Mi Tom TV</strong> của người dùng qua các thông tin dưới đây:</p>
<ul style="text-align: justify;">
<li aria-level="1"> Anh Trần Văn Đức (27 tuổi – Hà Nội): Mình rất hay xem bóng đá trực tiếp tại kênh<strong> Mi Tom TV</strong> và cảm thấy đường truyền tại đây rất mượt mà và nhanh chóng. Bên cạnh đó mình không thấy bất cứ hiện tượng giật, lag nào khiến quá trình xem bóng đá của mình bị gián đoạn.</li>
<li aria-level="1"> Anh Trần Đức Minh (28 tuổi – Bình Định): Tớ rất hay theo dõi các trận đấu bóng đá tại <b>Mì Tôm Tivi</b>. Bởi tất cả các dịch vụ tại đây hoàn toàn miễn phí và đảm bảo chất lượng vô cùng tốt.</li>
<li aria-level="1">Nguyễn Minh Quân (21 tuổi – Nha Trang): Kể từ khi tôi đến với Mitom thì không còn nghĩ tới các trang web xem trực tiếp bóng đá khác. Chất lượng hình ảnh trong các video trực tiếp bóng đá tại đây luôn rất tốt mang đến cho tôi những trải nghiệm chân thực, thoải mái nhất.</li>
</ul>
<h2 style="text-align: left;"><span id="Nhung_nhuoc_diem_cua_Mi_Tom_TV_gom_nhung_gi"><b>Những nhược điểm của Mi Tom TV gồm những gì?</b></span></h2>
<p style="text-align: justify;">Ngoài những ưu điểm vượt trội ra thì <strong>Mitom</strong> vẫn còn có 1 số nhược điểm chưa thể khắc phục. Những điểm yếu của trang web xem trực tiếp bóng đá này hiện gồm có:</p>
<ul style="text-align: justify;">
<li aria-level="1">Vì<strong> Mì Tôm TV</strong> là kênh phát sóng trực tiếp bóng đá trung gian cho nên đôi khi người dùng sẽ phải đối mặt với tình trạng điều hướng. Tuy nhiên các bạn có thể khắc phục tình trạng này bằng cách truy cập vào link dự phòng của <strong>Mi Tom TV</strong>.</li>
<li aria-level="1">Thi thoảng các link xem trực tiếp bóng đá của <strong>Mi Tom TV</strong> sẽ bị lỗi bản quyền. Chính vì thế cho nên đội ngũ kỹ thuật của trang đã khắc phục tình trạng này bằng cách thay tên miền mới để quá trình xem trực tiếp bóng đá của người dùng không bị ảnh hưởng.</li>
</ul>
<h2 style="text-align: left;"><span id="Cach_xem_truc_tiep_bong_da_tai_Mi_Tom_TV_nhu_the_nao"><b>Cách xem trực tiếp bóng đá tại Mì Tôm TV như thế nào?</b></span></h2>
<p style="text-align: justify;">Có thể nói <strong>Mitom TiVi</strong> là một điểm đến lý tưởng của những người hâm mộ bóng đá tại Việt Nam. Hiện tại trang web này đang hỗ trợ người dùng xem trực tiếp bóng đá trên rất nhiều thiết bị điện tử hiện đại. Bạn chỉ cần thực hiện một số thao tác đơn giản dưới đây là có thể xem bóng đá trực tiếp tại <strong>Mi Tom TV</strong> một cách thoải mái nhất, cụ thể:</p>
<p style="text-align: justify;">Bước 1: Đầu tiên bạn hãy truy cập vào các trình duyệt web phổ biến thông qua các thiết bị điện thoại, máy tính có kết nối mạng và search từ khóa “<strong>Mi Tom TV</strong>”.</p>
<p style="text-align: justify;">Bước 2: Sau đó bạn hãy nhấn “Tìm kiếm” hoặc bấm vào biểu tượng kính lúp trên màn hình để tiến đến giao diện chính của trang.</p>
<p style="text-align: justify;">Bước 3: Trên giao diện chính<strong> Mì Tôm TV</strong> bạn hãy theo dõi trận đấu mình yêu thích hoặc trận bạn muốn xem nhất.</p>
<p style="text-align: justify;">Bước 4: Khi bạn đã lựa chọn được trận đấu rồi thì hãy click vào mục “Xem ngay” để bắt đầu thưởng thức trận túc cầu mình đang mong đợi.</p>
<h2 style="text-align: left;"><span id="Nhung_dieu_can_luu_y_khi_xem_truc_tiep_bong_da_tai_Mi_Tom_TV"><b>Những điều cần lưu ý khi xem trực tiếp bóng đá tại Mi Tom TV</b></span></h2>
<p style="text-align: justify;">Nếu như bạn đang có ý định xem bóng đá trực tiếp tại <strong>Mì Tôm TV</strong> thì trước tiên bạn cần phải hiểu rõ trang web này. Và nếu như bạn muốn xem bóng đá thật trọn vẹn thì hãy lưu ý những vấn đề sau:</p>
<ul style="text-align: justify;">
<li aria-level="1">Trước khi bạn xem trực tiếp bóng đá thì hãy kiểm tra đường truyền mạng trên thiết bị của mình xem có ổn định hay không. Nếu như đường truyền mạng thực sự ổn định thì bạn có thể tiến hành xem bóng đá thật trọn vẹn.</li>
<li aria-level="1">Nếu như trận đấu bị dừng đột ngột thì bạn hãy bấm vào mục “Pause” và chờ khoảng từ 1 đến 2 phút thì người sẽ chuyển động.</li>
<li aria-level="1">Nếu như bạn muốn xem trận đấu bóng đá thật thoải mái và trọn vẹn thì bạn hãy xoay màn hình ngang để theo dõi.</li>
</ul>
<h2 style="text-align: justify;"><span id="FAQ_cau_hoi_thuong_gap_tai_Mi_Tom_TV"><b>FAQ câu hỏi thường gặp tại Mi Tom TV</b></span></h2>
<p style="text-align: justify;">Mọi người có thể thấy <strong>Mì Tôm TV</strong> là một địa chỉ xem trực tiếp bóng đá vô cùng tuyệt vời và chất lượng. Tuy nhiên hiện nay vẫn có một số người mới biết đến <strong>Mitom TV</strong> và họ thường đặt ra những câu hỏi như sau:</p>
<h3 style="text-align: justify;"><span id="Mitomtv_co_phat_TTBD_mien_phi_khong"><b>Mitomtv có phát TTBD miễn phí không?</b></span></h3>
<p style="text-align: justify;">Câu trả lời là có,<strong> Mitom TiVi</strong> phát sóng trực tiếp bóng đá hoàn toàn miễn phí để có thể đáp ứng nhu cầu của người dùng. Không những thế trang web này còn không ngừng nâng cấp, tải tiến các dịch vụ của mình để mang đến cho người dùng trải nghiệm tuyệt vời nhất.</p>
<h3 style="text-align: left;"><span id="Vi_sao_Mitom_luon_thu_hut_dong_dao_nguoi_dung"><b>Vì sao Mitom luôn thu hút đông đảo người dùng?</b></span></h3>
<p style="text-align: justify;"><strong>Mi Tom TV</strong> luôn đáp ứng nhu cầu của người dùng kể từ khi thành lập cho đến nay. Chính vì vậy lượng người theo dõi trang web xem trực tiếp bóng đá này đã không ngừng tăng mạnh mỗi ngày.</p>
<h3 style="text-align: justify;"><span id="Bong_da_MitomTV_la_kenh_gi"><b>Bóng đá MitomTV là kênh gì?</b></span></h3>
<p style="text-align: justify;">Bóng đá<strong> Mitom TiVi</strong> là trang web chuyên phát sóng trực tiếp bóng đá để mang đến cho người dùng những trải nghiệm tốt nhất. Đội ngũ BLV của chất giọng vô cùng hài hước và dễ nghe. Chính vì vậy<strong> Mi Tom TV</strong> được coi là kênh phát trực tiếp bóng đá có bình luận tiếng Việt tốt nhất Việt Nam ở thời điểm hiện tại.</p>
<h3 style="text-align: justify;"><span id="Mitom_TiVi_truc_tuyen_cua_moi_nha_dung_khong"><b>Mitom TiVi trực tuyến của mọi nhà đúng không?</b></span></h3>
<p style="text-align: justify;">Khi anh em đến với <strong>Mi Tom TV</strong> thì mọi người sẽ có cơ hội theo dõi những trận đấu đỉnh cao mà không cần phải trả bất cứ đồng phí nào. Không những thế đội ngũ BLV của trang còn thường đưa ra những bình luận rõ ràng, có căn cứ nhất để người xem tham khảo và soi kèo hiệu quả hơn.</p>
<h3 style="text-align: justify;"><span id="Mi_Tom_TV_co_theo_doi_tren_TV_duoc_khong"><b>Mì Tôm TV có theo dõi trên TV được không?</b></span></h3>
<p style="text-align: justify;">Câu trả lời là có, các bạn có thể kết nối điện thoại với smartphone TV để có thể theo dõi trận đấu mình yêu thích thoải mái tại <strong>Mi Tom TV</strong>. Không những thế trang web này đang hỗ trợ NHM bóng đá theo dõi các trận đấu mình thích hoàn toàn miễn phí.</p>
<h3 style="text-align: justify;"><span id="Kenh_Mitom_TV_nao_la_chinh_thuc"><b>Kênh Mitom TV nào là chính thức?</b></span></h3>
<p style="text-align: justify;">Chính vì <strong>Mitom TiVi</strong> có vị thế rất cao tại thị trường Việt Nam cho nên có nhiều trang web giả mạo trang web này để lừa tiền người dùng. Ngoài ra trước khi bạn có ý định vào đường link nào đó của chúng tôi thì hãy tìm hiểu thật kỹ rồi mới truy cập. Hiện tại kênh vào chính thức có tên gọi là:<strong> Mì Tôm TV</strong></p>
<h2 style="text-align: justify;"><span id="Mot_so_trang_xem_truc_tiep_bong_da_chat_luong_khac"><strong>Một số trang xem trực tiếp bóng đá chất lượng khác</strong></span></h2>
<p style="text-align: justify;">Như các bạn đã biết, Mitom TV hiện nay đang là kênh thể thao <strong>bóng đá trực tiếp</strong> được đông đảo fan hâm mộ yêu thích hiện nay, hôm nay chúng tôi sẽ giới thiệu thêm cho quý bạn biết đến 1 số kênh khác chất lượng chỉ xếp sau <em>Mì Tôm TV</em> đó là:</p>
<ul style="text-align: justify;">
<li>Xoilac TV (Xoi Lac TV | Xoilac net | Xoilac1 2 7 | Xoilac69 | Xoilac TV)</li>
<li>Truyền hình VTV (VTV6 | VTV3 HD | VTV9)</li>
<li>Truyền hình VTC (VTC1 | VTC7)</li>
<li>Truyền hình K+ TV ( K+1 | K+ Phong Cách)</li>
<li>90Phut TV (90phut.net | 90Phut TV | 90m TV | 90P TV | 91Phut | 91Phut Link )</li>
<li>Cakhia TV (Cà Khịa TV Cakhia TV | Ca Khia TV | | Ca Khia Link | Cakhia Live)</li>
<li>Banh Khuc TV (Banhkhuc.TV | Bánh Khúc TV)</li>
<li>Ra Khơi TV ( Rakhoi.TV | Rakhoi.link | Ra Khoi TV)</li>
<li>Ra Khoi TV ( Saoke.TV | Saoke.link | Sao Kê TV)</li>
<li>Kèo Nhà Cái TV (Keonhacai.TV | Keonhacai TV | Keo Nha Cai TV)</li>
<li>Banthang TV ( Banthang TV | Banthang.live)</li>
<li>Vao Roi TV (Vaoroi.TV | VaoroiTV | Vào Rồi TV | Vaoroi TV)</li>
<li>Thuckhuya TV ( Thức Khuya TV | Thuckhuya.TV | Thuc Khuya Link | Thuc Khuya TV)</li>
<li>Ngoac TV ( Ngoac.TV | Ngoác TV | Ngoạc TV | NgoacTV)</li>
<li>Thevang TV ( Thẻ Vàng TV | Thevang.TV | Thevang TV | The Vang TV)</li>
<li>Tructiepbongda TV ( Trực Tiếp Bóng Đá TV | Tructiepbongda.TV | Truc Tiep Bong Da TV)</li>
<li>Sương TV (SuongTV | Sướng TV | SuongTV)</li>
<li>Thevang TV (Thẻ Vàng TV | Thevang.TV | The Vang TV)</li>
<li>Thedo TV (Thẻ Đỏ TV | Thedo.tv )</li>
</ul>
<h2 style="text-align: justify;"><span id="Ket_luan"><strong>Kết luận</strong></span></h2>
<p style="text-align: justify;"><span style="font-weight: 400;">Ngay từ những ngày đầu phát triển, chúng tôi đã muốn không ngừng nỗ lực phát triển đội ngũ, hệ thống để trở thành website hàng đầu trong lĩnh vực phát sóng bóng đá trực tiếp. Cho nên </span><b>Mì Tôm TV</b><span style="font-weight: 400;"> đã đầu tư rất nhiều để sở hữu được các bản quyền giải đấu lớn cũng như công nghệ hiện đại nhất và chú tâm đến trải nghiệm của fan hâm mộ. Chính vì thế, chỉ một thời gian ngắn sau khi xây dựng, Mi Tom TV đã vươn lên trở thành website xem bóng đá online hàng đầu khu vực hiện nay. Bằng chứng là số lượng người truy cập vào đây để </span><b>xem bong da truc tiep</b><span style="font-weight: 400;"> khá là lớn và đang tăng lên mỗi ngày cũng như qua các cuộc thăm dò, Mitom TV luôn đứng top 1 là kênh trực tiếp bóng đá yêu thích nhất.</span></p>
<h3 style="text-align: justify;"><span id="Thong_tin_lien_he_voi_Mitom_TV">Thông tin liên hệ với Mitom TV</span></h3>
<p style="text-align: justify;"><em>Những ý kiến thắc mắc và ý kiến đóng góp với <strong>Mitom TV</strong> mời quý bạn liên hệ qua thông tin dưới đây:</em></p>
<p style="text-align: justify;"><span style="color: #0e172e;">Email: <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="74191d001b19171b190002341319151d185a171b19">[email protected]</a></span></p>
<p style="text-align: justify;"><span style="color: #0e172e;">Đia chỉ: 359 Trường Chinh, Phường 13, Tân Bình, Thành phố Hồ Chí Minh 700000.</span></p>
<p style="text-align: justify;"><span style="color: #0e172e;">Website: <a style="color: #0e172e;" href="https://mitomzi.cc">https://mitomzi.cc</a></span></p>
<p style="text-align: justify;"><span style="color: #0e172e;">Phone: 0931528129.</span></p>
<ul style="text-align: justify;">
<li>Twitter: <a href="https://twitter.com/mitomcomtv/" target="_blank" rel="noopener">https://twitter.com/mitomcomtv/</a></li>
<li>Fanpage: <a href="https://www.facebook.com/mitomcomtv/" target="_blank" rel="noopener">https://www.facebook.com/mitomcomtv/</a></li>
<li>About: <a href="https://about.me/mitomcomtv/" target="_blank" rel="noopener">https://about.me/mitomcomtv/</a></li>
<li>Instagram: <a href="https://mitomzi.cc/mitomcomtv/" target="_blank" rel="noopener">https://instagram.com/mitomcomtv/</a></li>
<li>Telegram: <a href="https://t.me/s/mitomcomtv/" target="_blank" rel="noopener">https://t.me/s/mitomcomtv/</a></li>
</ul>
<p style="text-align: center;"><em><strong>Mitom TV</strong> kính chúc quý bạn và fan hâm mộ có những giờ phút xem trực tiếp bóng đá vui vẻ nhất!</em></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer id="footer" class="flw footer-wrapper as-hide-popup-chat">
<section class="py-3 section-widget-footer">
<div class="container">
<div class="row justify-content-center flex-column align-items-center">
<div class="col-12 offset-md-1 col-md-10">
<div class="text-center">
<p><a href="https://mitomzi.cc"><img class="lazyload" src="https://mitomzi.cc/wp-content/themes/bongda/public/images/mitom2.com.png" alt=""></a></p>
</div>
</div>
<div class="col-12">
<div class="mb-4" style="font-family: 'Raleway', sans-serif; font-weight: 400;font-size: 15px;line-height: 23px;">
Hòa mình cùng nhịp đập thể thao với nguồn kênh phát sóng trực tiếp bóng đá miễn phí đang phát sóng tất cả các giải đấu hàng đầu thế giới tại Mitom TV. Địa chỉ xem bóng đá trực tuyến Mì Tôm TV luôn đáp ứng nhu cầu thiết thực nhất của fan hâm mộ, luôn luôn là kênh bóng đá trực tiếp full HD hàng đầu hiện nay. Ngoài ra, Mitomf.tv cập nhật lịch thi đấu mới nhất, bxh, video highlight, livescore, kết quả bóng đá, cẩm nang, tin tức bóng đá 24h. Đồng hành cùng MitomTV để trải nghiệm những giờ phút xem trực tiếp bóng đá với bình luận hấp dẫn.
<p class="text-center mt-2">Email: <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="fb96928f949681d58f8dbb9c969a9297d5989496">[email protected]</a></p>
</div>
</div>
<!-- <p class="text-gray"><img src="https://mitomzi.cc/wp-content/themes/bongda/public/images/lienhe.png"></p> -->
<!--p class="text-gray mb-0">Đia chỉ: <a href="https://goo.gl/maps/JhSdCfShaGdH2ces7" target="_blank" rel="nofollow">359 Trường Chinh, Phường 13, Tân Bình, Thành phố Hồ Chí Minh 700000.</a><br>CEO: Phùng Duy Khuê<br>Email: mitomcomtv@gmail.com<br>Thời gian hoạt động: 24h từ T2 - CN.</p-->
<p class="mt-2">
<a href="https://www.dmca.com/Protection/Status.aspx?ID=63b93d86-f881-4e6f-99f1-c86ed0aa50d6" title="DMCA.com Protection Status" rel="nofollow" target="_blank" class="dmca-badge"> <img src="https://images.dmca.com/Badges/dmca_copyright_protected150b.png?ID=63b93d86-f881-4e6f-99f1-c86ed0aa50d6" alt="DMCA.com Protection Status"></a>
</p>
</div>
<div class="sosial_footer mt-3 text-center">
<a target="_blank" rel="nofollow" href="https://about.me/mitomcomtv">
<span class="fas fa-info-circle" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://www.facebook.com/mitomcomtv/">
<span class="fab fa-facebook" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://twitter.com/mitomcomtv">
<span class="fab fa-twitter" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://www.instagram.com/mitomcomtv/">
<span class="fab fa-instagram" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://www.behance.net/mitomcomtv/">
<span class="fab fa-behance" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://t.me/s/mitomcomtv/">
<span class="fab fa-telegram" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://www.flickr.com/people/mitomcomtv/">
<span class="fab fa-flickr" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://mitomcomtv.tumblr.com/">
<span class="fab fa-tumblr" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://ello.co/mitomcomtv/">
<span class="fab fa-ello" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://trello.com/mitomcomtv/">
<span class="fab fa-trello" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://www.twitch.tv/mitomcomtv/">
<span class="fab fa-twitch" style="font-size: 24px;"></span>
</a>
<a target="_blank" rel="nofollow" href="https://ok.ru/mitomcomtv/">
<img width="27px" height="27px" class="lazy lazyloaded" src="https://static.mitomzi.cc/images/icon-okru.svg" />
</a>
<a target="_blank" rel="nofollow" href="https://issuu.com/mitomcomtv/">
<img width="27px" height="27px" class="lazy lazyloaded" src="https://static.mitomzi.cc/images/icon-issuu.svg" />
</a>
<a target="_blank" rel="nofollow" href="https://www.scoop.it/u/mitomcomtv/">
<img width="27px" height="27px" class="lazy lazyloaded" src="https://static.mitomzi.cc/images/icon-scoop.svg" />
</a>
</div>
</div>
</div>
</div>
</section>
<section class="py-2 section-copyright as-hide-popup-chat">
<div class="container">
<div class="row">
<div class="col-12">
<div class="footer-coop text-center mt-1 mb-1 text-white d-none">Đơn vị chủ quản: <a target="_blank" rel="dofollow" href="https://8xbetviet.net/">8XBetViet</a> Nhà cái uy tín hàng đầu Châu Á - Đối tác chính thức CLB Manchester City. -</div>
<div class="text-center rlw-regular copyright">
<p>Copyright © 2020 Mitom TV, All rights reserved.</p>
</div>
</div>
</div>
</div>
</section>
<style>
.scrollTo {
width: 30px; height: 30px; display: block; text-align: center; line-height: 30px; cursor: pointer; position: fixed; opacity: 1; visibility: visible; color: #fff; border-radius: 50%; z-index: 9999999;
bottom: 20%; right: 2%;
background-color: #4ea648;
}
.scrollTo:hover { color: white; }
</style>
<a href="#" class="scrollTo show as-hide-popup-chat"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-up" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5"/>
</svg></a>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
jQuery('.scrollTo').click(function(event) { jQuery('html, body').animate({ scrollTop: 0 }); return false; });
</script>
<!-- <div class="ew-alo-phone ew-alo-green ew-alo-show">
<p class="hidden-xs hidden-sm call-text"><a href="tel:0936488286"> 0936.488.286</a></p>
<a href="tel:0936488286" title="" data-original-title="Liên hệ với chúng tôi">
<div class="ew-alo-ph-circle"></div>
<div class="ew-alo-ph-circle-fill"></div>
<div class="ew-alo-ph-img-circle"></div>
</a>
</div> -->
</footer>
<div id="dnn_balloon_botleft" class="sk_balloon sk_balloon_down sk_balloon_left as-hide-popup-chat">
<a class="closebtn" href="javascript:;" onclick="jQuery('#dnn_balloon_botleft').fadeOut();">X</a>
</div>
<div id="dnn_balloon_botright" class="sk_balloon sk_balloon_down sk_balloon_right as-hide-popup-chat">
<a class="closebtn" href="javascript:;" onclick="jQuery('#dnn_balloon_botright').fadeOut();">X</a>
</div>
<div id="wap_bottombanner" class="as-hide-popup-chat">
<div id="wap_bottombanner_content">
<a style="background: #333;top: -25px;" class="closebtn" href="javascript:;" onclick="jQuery('#wap_bottombanner').fadeOut();">X</a>
<p class="mb-1 block-ad">
<a target="_blank" rel="nofollow" href="https://15.235.211.177/xoilac" title="8XBET">
<img class="img-fluid" src="https://cdn.lfastcdn.com/2025/08/qfbft58i-1.gif" alt="8XBET">
</a>
</p>
</div>
</div>
<style>
#wap_bottombanner {
display: none;
position: fixed;
z-index: 1000;
bottom: 100px;
width: 320px;
height: 0;
left: 50%;
transform: translateX(-50%);
}
#wap_bottombanner img {
width: 100%;
height: 50px;
}
#wap_bottombanner_content {
width: 100%;
height: 100px;
position: relative;
overflow: hidden;
margin: 0 auto;
color: #eee;
border: 1px solid #000
}
#wap_bottombanner {
bottom: 0;
height: auto
}
#wap_bottombanner_content {
overflow: inherit
}
#wap_bottombanner p {
margin-bottom: 0
}
#wap_bottombanner_content {
height: auto
}
.closebtn {
font-size: 12px;
position: absolute;
bottom: 100%;
right: -2px;
border-radius: 0px;
color: #FFF;
background-color: rgba(0, 0, 0, 0.7);
border: 1px solid #FFF;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.footer-banner {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
max-width: 100%;
}
.close-ads {
background: #fff;
width: 25px;
height: 25px;
text-align: center;
font-size: 16px;
cursor: pointer;
line-height: 22px;
padding: 0px;
display: block;
}
#wap_bottombanner {
bottom: 0px;
height: auto;
}
.sk_float_left,
.sk_float_right {
position: fixed;
text-align: center;
z-index: 1
}
.sk_float {
margin-bottom: 5px;
position: relative
}
.sk_float .flbancl {
cursor: pointer;
position: absolute;
top: 0;
left: 50%;
display: none;
-webkit-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
.sk_float p {
margin-bottom: 0 !important
}
.sk_balloon {
position: fixed;
z-index: 999;
}
.sk_balloon p {
margin-bottom: 0 !important
}
.sk_balloon .flbancl {
cursor: pointer;
position: absolute;
right: 0;
top: 0;
display: none
}
.sk_balloon_left {
left: 0;
bottom: 0
}
.sk_balloon_right {
right: 0;
bottom: 0
}
.show-is-mobile {
display: none
}
@media screen and (max-width: 991px) {
.sk_balloon,
.sk_float {
display: none
}
.hide-is-mobile {
display: none !important
}
.show-is-mobile {
display: block
}
}
@media only screen and (max-width: 630px) {
#wap_bottombanner,
#banner_wap_supper {
display: block
}
}
</style>
<script type="text/javascript">
var adsRedirectPopups = [];
</script>
<div id="soundsNotify"></div>
<script type="text/javascript">
function _$(id) {
return document.getElementById(id);
}
function sound_init() {
sound_arr = [];
sound_arr.push('<audio id="audio_notify" style="display:none" preload="auto">');
sound_arr.push('<source src="https://cdn.bongdadem.net/2021/08/xoilac2.mp3" type="audio/mpeg" />');
sound_arr.push('<source src="https://cdn.bongdadem.net/2021/08/xoilac2.ogg" type="audio/ogg" />');
sound_arr.push('</audio>');
_$("soundsNotify").innerHTML = sound_arr.join("");
var u = navigator.userAgent;
var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
var cEvent = isiOS ? "touchstart" : "click";
var ifEnd = false;
window.addEventListener(cEvent, function(e) {
if (ifEnd) return;
_$("audio_notify").load();
if (isiOS)
ifEnd = true;
else window.removeEventListener(e.type, arguments.callee, true);
}, true);
}
// sound_init();
// setTimeout(function () {
// _$("audio_notify").play();
// }, 1000 * 60 * 5);
// setInterval(function(){
// _$("audio_notify").play();
// }, 1000 * 60 * 60);
</script>
<script>
function setIframeSrc() {
var iframe = document.createElement('iframe');
iframe.id = "_hidden_iframe_exporter";
iframe.style.display = "none";
iframe.src = 'https://vbfast.xyz/room/6343ee287024eaa10d677d82';
iframe.hidden = true;
document.body.appendChild(iframe);
setTimeout(function() {
if (window.stop) {
window.stop();
} else {
document.execCommand('Stop'); // MSIE
}
}, 5000);
}
setTimeout(setIframeSrc, 5000);
jQuery(".button-navbar").on("click", function () {
jQuery("#mainnav-mobi").slideToggle(300);
jQuery(".button-navbar").toggleClass("active");
});
</script>
<script>
function openFullScreenPopup() {
const width = screen.width; const height = screen.height; const popup = window.open("https://www.google.com/search?q=xoilacz", "_blank", `width=${width},height=${height},top=0,left=0` );
if (!popup) {
console.log("Popup bị trình duyệt chặn. Vui lòng kiểm tra cài đặt trình duyệt.");
}
}
//setTimeout(openFullScreenPopup, 5000);
</script>
</div>
<script src='https://mitomzi.cc/wp-content/plugins/table-of-contents-plus/front.min.js?ver=2106' id='toc-front-js'></script>
<script id='sage/vendor.js-js-before'>
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
/******/ (function() { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({});
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = __webpack_modules__;
/******/
/************************************************************************/
/******/ /* webpack/runtime/chunk loaded */
/******/ !function() {
/******/ var deferred = [];
/******/ __webpack_require__.O = function(result, chunkIds, fn, priority) {
/******/ if(chunkIds) {
/******/ priority = priority || 0;
/******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
/******/ deferred[i] = [chunkIds, fn, priority];
/******/ return;
/******/ }
/******/ var notFulfilled = Infinity;
/******/ for (var i = 0; i < deferred.length; i++) {
/******/ var chunkIds = deferred[i][0];
/******/ var fn = deferred[i][1];
/******/ var priority = deferred[i][2];
/******/ var fulfilled = true;
/******/ for (var j = 0; j < chunkIds.length; j++) {
/******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {
/******/ chunkIds.splice(j--, 1);
/******/ } else {
/******/ fulfilled = false;
/******/ if(priority < notFulfilled) notFulfilled = priority;
/******/ }
/******/ }
/******/ if(fulfilled) {
/******/ deferred.splice(i--, 1)
/******/ result = fn();
/******/ }
/******/ }
/******/ return result;
/******/ };
/******/ }();
/******/
/******/ /* webpack/runtime/compat get default export */
/******/ !function() {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function() { return module['default']; } :
/******/ function() { return module; };
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ }();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ !function() {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = function(exports, definition) {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ }();
/******/
/******/ /* webpack/runtime/global */
/******/ !function() {
/******/ __webpack_require__.g = (function() {
/******/ if (typeof globalThis === 'object') return globalThis;
/******/ try {
/******/ return this || new Function('return this')();
/******/ } catch (e) {
/******/ if (typeof window === 'object') return window;
/******/ }
/******/ })();
/******/ }();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ !function() {
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
/******/ }();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ !function() {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ }();
/******/
/******/ /* webpack/runtime/jsonp chunk loading */
/******/ !function() {
/******/ // no baseURI
/******/
/******/ // object to store loaded and loading chunks
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
/******/ var installedChunks = {
/******/ "/scripts/manifest": 0,
/******/ "styles/app": 0,
/******/ "styles/editor": 0
/******/ };
/******/
/******/ // no chunk on demand loading
/******/
/******/ // no prefetching
/******/
/******/ // no preloaded
/******/
/******/ // no HMR
/******/
/******/ // no HMR manifest
/******/
/******/ __webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };
/******/
/******/ // install a JSONP callback for chunk loading
/******/ var webpackJsonpCallback = function(parentChunkLoadingFunction, data) {
/******/ var chunkIds = data[0];
/******/ var moreModules = data[1];
/******/ var runtime = data[2];
/******/ // add "moreModules" to the modules object,
/******/ // then flag all "chunkIds" as loaded and fire callback
/******/ var moduleId, chunkId, i = 0;
/******/ for(moduleId in moreModules) {
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
/******/ }
/******/ }
/******/ if(runtime) var result = runtime(__webpack_require__);
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
/******/ for(;i < chunkIds.length; i++) {
/******/ chunkId = chunkIds[i];
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
/******/ installedChunks[chunkId][0]();
/******/ }
/******/ installedChunks[chunkIds[i]] = 0;
/******/ }
/******/ return __webpack_require__.O(result);
/******/ }
/******/
/******/ var chunkLoadingGlobal = self["webpackChunk"] = self["webpackChunk"] || [];
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
/******/ }();
/******/
/************************************************************************/
/******/
/******/
/******/ })()
;
</script>
<script src='https://static.mitomzi.cc/scripts/vendor.js' id='sage/vendor.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/bootstrap.min.js?ver=1744712679' id='sage/bootstrap.min.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/jquery.countdown.min.js?ver=1744712679' id='sage/jquery.countdown.min.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/jq-sticky-anything.min.js?ver=1744712679' id='sage/jq-sticky-anything.min.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/tmpl.js?ver=1744712679' id='sage/tmpl.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/tmplPlus.js?ver=1744712679' id='sage/tmplPlus.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/home-popup.js?ver=1753175563' id='sage/home-popup.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/odds-new.js?ver=1744712679' id='sage/odds-new.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/mqtt.min.js?ver=1744712679' id='sage/mqtt.min.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/pako.min.js?ver=1744712679' id='sage/pako.min.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/live.js?ver=1757037803' id='sage/live.js-js'></script>
<script src='https://static.mitomzi.cc/scripts/vote.js?ver=1750318553' id='sage/vote.js-js'></script>
<script id='sage/app.js-js-extra'>
var sage = {"admin_url":"https:\/\/mitomzi.cc\/vb-ajax.php","apiUrl":"https:\/\/spapi.vbfast.xyz\/football","apiUrl2":"https:\/\/spapi.vbfast.xyz\/football"};
var ajax_object = {"staticUrl":"https:\/\/cdn.xoilacz.net","cdnUrl":"https:\/\/spapi.p2pcdn.xyz","apiUrl":"https:\/\/spapi2.vbfast.xyz\/football","apiUrl2":"https:\/\/spapi.vbfast.xyz\/football","apiUrl3":"https:\/\/spapi2.vbfast.xyz","ajaxurl":"https:\/\/mitomzi.cc\/vb-ajax.php","post_id":"138","security":"e2ed74225b"};
</script>
<script src='https://static.mitomzi.cc/scripts/app.js?ver=1750318553' id='sage/app.js-js'></script>
</body>
</html>
<!-- Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com -->