.gwd_video-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: opacity .3s ease;
}

@media (max-width: 767px) {
    .list_match .tab_container .list_tab {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 6px;
        width: 100%;
        margin: 0 !important;
        padding: 4px 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        background: #26313a;
        list-style: none;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .list_match .tab_container .list_tab::-webkit-scrollbar {
        display: none;
    }

    .list_match .tab_container .list_tab li {
        flex: 0 0 auto !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .list_match .tab_container .list_tab li a {
        display: inline-flex !important;
        align-items: center;
        gap: 4px;
        min-height: 24px;
        padding: 0 8px !important;
        border: 1px solid rgba(81, 176, 37, 0.65) !important;
        border-radius: 3px;
        background: #3c464f;
        color: #fff !important;
        font-family: 'Oswald', sans-serif;
        font-size: 14px;
        font-style: normal !important;
        font-weight: 800;
        line-height: 1;
        text-decoration: none;
        text-transform: capitalize;
        white-space: nowrap;
        opacity: 1 !important;
    }

    .list_match .tab_container .list_tab li.active a {
        background: #20b928;
    }

    .list_match .tab_container .list_tab .tab-worldcup a {
        background: linear-gradient(135deg, #d69013, #f1b52b, #d69013);
        color: #fff !important;
    }

    .list_match .tab_container .list_tab .gwd-tab-icon {
        display: inline-flex;
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 17px 17px;
    }
}

.gwd_video-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.gwd_spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: gwd-spin .8s linear infinite;
}

.gwd_loader-play-icon {
    width: 62px;
    height: 62px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.gwd_loader-play-icon i {
    margin-left: 4px;
}

.gwd_video-loader.is-paused {
    cursor: pointer;
}

.gwd_video-loader.is-paused .gwd_spinner {
    display: none;
}

.gwd_video-loader.is-paused .gwd_loader-play-icon {
    display: flex;
}

.gwd_video-loader.is-loading .gwd_spinner {
    display: block;
}

.gwd_video-loader.is-loading .gwd_loader-play-icon {
    display: none;
}

@keyframes gwd-spin {
    100% {
        transform: rotate(360deg);
    }
}
.gwd_player-wrapper video{
	min-height:470px;
}
.gwd_blv_wrap{
  gap: 10px;
}

#channel-links {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

#channel-links .link-viewer,
#channel-links > span {
    flex: 0 0 auto;
    white-space: nowrap;
}

.gwd_controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    box-sizing: border-box;
}
.gwd_group_vl{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
}
.gwd_controls {
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}
.gwd_banner_video_bottom{
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: center;
}
.gwd_banner_video_bottom img{
  border-radius: unset !important;
}
/* trạng thái ẩn */
.gwd_controls.hide {
    opacity: 0;
    pointer-events: none;
}
.gwd_banner_top_wrapper{
  position: relative;
  width: 100%;
}
.gwd_controls_banner{
  position: absolute;
  bottom: 0;
  width: 100%;
}
.gwd_fullscreen-btn{
  margin-left: auto;
}
#gwd_volume{
  --gwd-volume-percent: 100%;
  width: 96px;
  height: 18px;
  flex: 0 0 96px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
}
/* buttons */
.gwd_controls button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}
/* track (Chrome / Edge / Safari) */
#gwd_volume::-webkit-slider-runnable-track {
    height: 5px;
    background: linear-gradient(
        to right,
        #ff3b3b 0%,
        #ff3b3b var(--gwd-volume-percent),
        rgba(255,255,255,0.28) var(--gwd-volume-percent),
        rgba(255,255,255,0.28) 100%
    );
    border-radius: 999px;
}

/* thumb */
#gwd_volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 14px;
    height: 14px;

    background: #ff3b3b;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
    cursor: pointer;

    /* QUAN TRỌNG: căn giữa */
    transform: translateY(-4.5px);
}
/* Firefox */
#gwd_volume::-moz-range-track {
    height: 5px;
    background: rgba(255,255,255,0.28);
    border-radius: 999px;
}

#gwd_volume::-moz-range-progress {
    height: 5px;
    background: #ff3b3b;
    border-radius: 999px;
}

#gwd_volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.gwd_controls button:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

/* icons inside */
.gwd_controls i, .gwd_controls svg {
    pointer-events: none;
}
/* time text */
.gwd_time {
    color: #ddd;
    font-size: 12px;
    min-width: 90px;
    text-align: left;
    opacity: 0.9;
}

/* fullscreen mode styling */
.video-box:fullscreen {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.video-box:fullscreen video {
    height: 100%;
    object-fit: cover;
}
.gwd_player-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 16px;
    background: #000;
}

.gwd_player-wrapper video {
    width: 100%;
    display: block;
}

.gwd_banner {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 220px;
    height: 120px;
    background: rgba(255, 225, 78, 0.95);
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 10;
}

#gwd_muteBtn{
  margin-left: 0;
}

@media screen and (max-width: 549px) {
  .gwd_controls {
    gap: 8px;
    padding: 10px;
  }

  .gwd_controls button {
    width: 20px;
    height: 20px;
    min-height: 24px;
  }

  #gwd_volume {
    display: none;
    width: 76px;
    flex-basis: 76px;
  }

  .gwd_time {
    min-width: auto;
    font-size: 11px;
  }
}

/* Khi fullscreen */
.gwd_player-wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
}

.gwd_player-wrapper:fullscreen video {
    width: 100%;
    height: 100%;
}

.gwd_player-wrapper:fullscreen .gwd_banner {
    display: flex;
}
button.chatBoxAction {
    font-size: 12px;
    line-height: 1;
}
.chat_container {
    min-height: auto;
}

.video_match #video {
    height: 593px; 
}

@media (max-width: 767px) {
    .video_match #video {
        height: auto;
    }

    .video_match {
        padding-bottom: 0;
        background-color: transparent;
    }
   
}

.video_match img {
    height: auto;
}

#wide-nav {
    min-height: auto !important;
    padding: 12px 0;
    background: #2C3339;
    border-bottom: 1px solid #51B025;
}

#wide-nav .flex-row.container {
 padding: 0;
}

#wide-nav .flex-row.container .a-marquee {
    background-color: rgb(25, 25, 25);
    color: rgb(255, 255, 255);
    box-sizing: border-box;
    flex: 1 1 0%;
    white-space: nowrap;
    line-height: 30px;
}

.match_hot .tournament {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    line-height: 22px;
}

.box_about h3 {
    font-family: 'SF Pro Display', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #F2F3F3;
    margin-bottom: 20px;
}
.table_top_bet th {
    text-transform: unset;
}

@media (max-width: 1280px) {
    .live_match .bottom {
        align-items: flex-start;
        flex-direction: unset;
    }
}

.video_match {
    height: auto;
    padding-bottom: unset;
    background: url(../img/spinner.gif) no-repeat center / 60px auto;
}

.banner-for-list-match {
    display: flex;
    justify-content: space-between;
}

.banner-for-list-match .banner-item {
    flex: 0 0 50%;
}

@media only screen and (max-width: 850px) {
    .banner-for-list-match .banner-item {
        flex: 1 !important
    }
    .none-on-mobile {
        display: none;
    }
}

.box_right .banner {
    background-color: transparent;
}

#livechat_app {
    max-height: 650px;
    min-height: 450px;
}

#footer {
    padding: 70px 00px 100px 0px !important;
}

@media (max-width: 767px) {
    #livechat_app {
        max-height: 550px !important;
        overflow-y: auto;
    }
}

/* ── Hot Match Channel Links ─────────────────────────────── */
#hot-channel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
}

#hot-channel-links .link-viewer {
    flex: 0 0 auto;
    min-width: 90px;
    text-align: center;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 !important;
}

#hot-channel-links .link-viewer:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

#hot-channel-links .link-viewer.active {
    background: #51b025 !important;
    border-color: #51b025 !important;
    color: #fff !important;
}

/* ── World Cup Tab ───────────────────────────────────────── */
.list_tab .tab-worldcup > a {
    background: linear-gradient(135deg, #c8a623, #f5d76e, #c8a623);
    font-weight: 700;
    border-radius: 4px;
    padding: 4px 10px;
    letter-spacing: 0.3px;
}

.list_tab .tab-worldcup.active > a,
.list_tab .tab-worldcup:hover > a {
    background: linear-gradient(135deg, #e6b800, #ffe566, #e6b800);
}

li.gwd-match-hot-item {
    position: relative;
}

.gwd-match-hot-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 18px;
    padding: 0 7px;
    border-radius: 3px;
    background: #ff2d20;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45), 0 2px 8px rgba(255, 45, 32, 0.45);
    pointer-events: none;
}

@media (max-width: 767px) {
    .match_hot {
        padding: 25px 10px 15px;
    }

    .gwd-match-hot-badge {
        position: static;
        min-width: 30px;
        height: 16px;
        margin-top: 10px;
        padding: 0 5px;
        font-size: 9px;
        line-height: 16px;
    }
}

@media (max-width: 549px) {
    
    .list_match .tab_container .list_tab {
        justify-content: space-between;
    }

    .list_match .tab_container .list_tab li a {
            padding: 0 7px;
    }

}

@media (max-width: 450px) {
    .gwd-banner-bottom__overlay img {
        width: 50%;
        max-width: 500px !important;
    }
}
@media screen and (max-width: 768px) {
    .gwd_spinner,
    .gwd_loader-play-icon{
        width: 24px;
        height: 24px;
    }
}
@media (max-width: 768px) {
    .gwd-top-strip-marquee__track img {
        height: 25px;
        width: auto;
    }
}
@media screen and (max-width: 768px) {
    body .gwd_blv_wrap {
        flex-direction: column !important;
    }
}
@media screen and (max-width: 768px) {
    .gwd_btn_bet img {
        height: 30px;
        width: auto;
    }
    .gwd_btn_bet{
        margin: auto;
    }
}

/* ── Live Match Odds Overlay ─────────────────────────────── */
.gwd_player-wrapper {
    overflow: hidden;
}

.gwd-odds-box {
    width: 240px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 9999;
    transform: translate(100%, -50%);
    transition: transform .5s ease;
    color: #fff;
    font-size: 13px;
    border-radius: 6px 0 0 6px;
    background: rgb(11 22 41 / 51%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gwd_player-wrapper{
    overflow: hidden;
}
.gwd-odds-box {
    opacity: 1;
}

.gwd-odds-box.gwd-open-boxodd {
    animation: gwdFadeIn 1s ease;
}

@keyframes gwdFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.gwd-odds-box:not(.gwd-open-boxodd) .gwd-action-toggle {
    transform: rotateZ(180deg) translateY(-50%);
    left: -20px;
    z-index: 99999;
    background: #0e851873;
    width: 20px;
    top: 50%;
    border-radius: 0px 6px 6px 0;
    height: 40px;
}
.gwd-odds-box.gwd-open-boxodd{
    transition: all .5s;
    transform: translate(0%, -50%);
    .gwd-action-toggle{
        left:unset;
        transform:unset;
    }
}

.gwd-odds-box:not(.gwd-open-boxodd) .gwd-action-toggle{
    animation: gwdRipple 2s linear infinite;
}

@keyframes gwdRipple {
    0% {
        box-shadow:
            0 0 0 0 rgba(255, 221, 0, .45),
            0 0 0 0 rgba(255, 221, 0, .25);
    }

    25% {
        box-shadow:
            0 0 0 4px rgba(255, 221, 0, .28),
            0 0 8px 2px rgba(255, 221, 0, .18);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(255, 221, 0, .16),
            0 0 16px 6px rgba(255, 221, 0, .12);
    }

    75% {
        box-shadow:
            0 0 0 12px rgba(255, 221, 0, .08),
            0 0 24px 10px rgba(255, 221, 0, .06);
    }

    100% {
        box-shadow:
            0 0 0 16px rgba(255, 221, 0, 0),
            0 0 32px 14px rgba(255, 221, 0, 0);
    }
}

.gwd-action-toggle{
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
    cursor: pointer;
}
.gwd-odds-top ins img{
    height: 24px;
    width: auto ;
    border-radius: unset;
}
body .aml_dk-flex-container > div{
    border:unset !important;
}
.gwd-odds-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  margin-bottom: 3px;
}
.gwd-odds-top ins{
    min-height: 24px;
}
.gwd-odds-logo {
  height: 28px;
  max-width: 120px;
  object-fit: contain;
}

.gwd-odds-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.gwd-stat-icon{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: 20px;
}
.gwd-odds-toggle--left {
  left: 10px;
}

.gwd-odds-toggle--right {
  right: 10px;
}

.gwd-odds-middle {
    display: grid;
    grid-template-columns: 30px repeat(3, 1fr);
    font-size: 11px;
    gap: 2px;
    padding-right: 5px;
    padding-left: 5px;
}
.gwd-odds-cell{
    margin-bottom: 2px;
    
}
.gwd-odds-bottom{
    width: 70%;
    margin: auto;
    margin-top: 3px;
}
.gwd-odds-cell {
  min-height: 18px;
  display: flex;
  align-items: center;
    justify-content: space-between;
  gap: 4px;
}
.gwd-odds-cell[data-odd-cell="HDP.Odd"],
.gwd-odds-cell[data-odd-cell="TX.Odd"] {
  justify-content: center;
  color: #facc15;
}
.gwd-odds-cell{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.gwd-odds-cell:not(.gwd-odds-label){
    border-radius: 30px;
    background: #0b1220;
    padding:3px 10px;
    min-height: unset;;
}
.gwd-odds-cell:nth-child(4n) {
  border-right: 0;
}

.gwd-odds-label {
  font-weight: 700;
  color: #facc15;
}

.gwd-odd-up {
  color: #22c55e;
}

.gwd-odd-down {
  color: #ef4444;
}

.gwd-odd-icon {
  font-size: 8px;
}

.gwd-odds-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.gwd-stat-item {
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: center;
  padding: 6px 10px;
  text-align: center;
  position: relative;
  font-size: 11px;
}
.gwd-stat-item:nth-child(2):after {
    content: '';
    width: 1px;
    height: 10px;
    background: #bdbdbd;
    position: absolute;
    right: 0;
    opacity: .8;
}
.gwd-stat-item:nth-child(2)::before {
    content: '';
    width: 1px;
    height: 10px;
    background: #bdbdbd;
    position: absolute;
    left: 0;
    opacity: .8;
}
.gwd-stat-item:last-child {
  border-right: 0;
}

.gwd-stat-icon {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
    body .aml_dk-flex-container > div{
        width: 24px !important;
        height: 24px !important;
    }
    .gwd-odds-top ins img{
        height: 18px;
        width: auto;
        border-radius: unset;
    }
    .chose_odd_stream img{
        max-width: 80px;
    }
    .gwd-odds-box {
        width: 160px;
    } 
    .gwd-odds-middle{
        font-size: 8px;
    }
    .gwd-action-toggle{
        width: 30px;
    }
    .gwd-odds-top{
        padding:4px;
    }
    .gwd-odds-cell:not(.gwd-odds-label){
        border-radius: 4px;
    }
    .gwd-stat-item{
        font-size: 8px;
        padding: 6px 3px;
    }
    .gwd-odds-cell{
        min-height: unset;
    }
    .gwd-odds-top{
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .content_top .match_hot {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title time"
            "top top"
            "middle middle";
        align-items: start;
        min-height: 212px;
        padding: 9px 13px 12px;
        overflow: hidden;
        border: 1px solid #b88712;
        background: #030607 !important;
    }

    .content_top .match_hot #title_match_hot {
        grid-area: title;
        display: flex;
        align-items: center;
        gap: 4px;
        margin: 0;
        color: #d8ef26;
        font-size: 14px;
        font-weight: 800;
        line-height: 22px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .content_top .match_hot #title_match_hot img {
        width: 15px;
        height: 15px;
        object-fit: contain;
    }

    .content_top .match_hot .box_top {
        display: contents;
    }

    .content_top .match_hot .time_match {
        grid-area: time;
        justify-self: end;
        min-width: 105px;
        margin: 0;
        padding: 4px 8px;
        border-radius: 3px;
        background: #2fba18;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        line-height: 18px;
        text-align: center;
        white-space: nowrap;
    }

    .content_top .match_hot .tournament {
        grid-area: top;
        margin: 14px 0 0;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        line-height: 18px;
        text-align: center;
        text-transform: uppercase;
    }

    .content_top .match_hot .blv {
        grid-area: top;
        align-self: start;
        margin-top: 35px;
        color: #d8ef26;
        font-size: 12px;
        font-weight: 800;
        line-height: 16px;
        text-align: center;
        text-transform: uppercase;
    }

    .content_top .match_hot .box_middle {
        grid-area: middle;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
        column-gap: 10px;
        align-items: start;
        margin-top: 26px;
    }

    .content_top .match_hot .club_host,
    .content_top .match_hot .club_guest {
        display: grid;
        grid-template-rows: auto 36px;
        justify-items: center;
        min-width: 0;
    }

    .content_top .match_hot .club {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
    }

    .content_top .match_hot .club .img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        padding: 8px;
        border: 2px solid #333744;
        border-radius: 50%;
        background: #1d1e27;
    }

    .content_top .match_hot .club .img img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .content_top .match_hot .name_club {
        display: block;
        width: 100%;
        margin-top: 5px;
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        line-height: 16px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .content_top .match_hot .info_match {
        align-self: center;
        margin-top: 12px;
        text-align: center;
    }

    .content_top .match_hot .score {
        color: #fff;
        font-size: 29px;
        font-weight: 900;
        line-height: 34px;
        text-transform: uppercase;
    }

    .content_top .match_hot .btn_bet,
    .content_top .match_hot #hot-live-btn {
        align-self: end;
        width: 78px;
        min-width: 78px;
        height: 27px;
        margin-top: 13px;
        padding: 0;
        border-radius: 3px;
        color: #fff !important;
        font-size: 10px;
        font-weight: 800;
        line-height: 27px;
        text-align: center;
        text-transform: uppercase;
    }

    .content_top .match_hot .btn_bet {
        background: #22b313 !important;
    }

    .content_top .match_hot #hot-live-btn {
        background: #ff1717 !important;
    }
}

.gwd-hot-mobile {
    display: none;
}

.gwd-hot-mobile-menu {
    display: none;
}

.gwd-mobile-hot-badge {
    display: none;
}

.list_match.mb > .gwd-mobile-list-title {
    display: none;
}

@media (min-width: 768px) {
    .list_match .tab_container .list_tab {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 6px;
        width: 100%;
        margin: 0 !important;
        padding: 4px 16px !important;
        overflow-x: auto;
        overflow-y: hidden;
        background: #26313a;
        list-style: none;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .list_match .tab_container .list_tab::-webkit-scrollbar {
        display: none;
    }

    .list_match .tab_container .list_tab li {
        flex: 0 0 auto !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .list_match .tab_container .list_tab li a {
        display: inline-flex !important;
        align-items: center;
        gap: 4px;
        min-height: 24px;
        padding: 0 8px !important;
        border-radius: 3px;
        background: #3c464f;
        color: #fff !important;
        font-family: 'Oswald', sans-serif;
        font-style: normal !important;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
        text-decoration: none;
        text-transform: capitalize;
        white-space: nowrap;
        opacity: 1 !important;
        border: 1px solid rgba(81, 176, 37, 0.65) !important;
    }

    .list_match .tab_container .list_tab li.active a {
        background: #20b928;
    }

    .list_match .tab_container .list_tab .tab-worldcup a {
        background: linear-gradient(135deg, #d69013, #f1b52b, #d69013);
        color: #fff !important;
    }

    .list_match .tab_container .list_tab .gwd-tab-icon {
        display: inline-flex;
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 17px 17px;
    }

    .list_match .list li .box_03 {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        justify-content: center !important;
        gap: 8px;
        width: 100px !important;
    }

    .list_match .list li .box_03 .btn {
        width: 90px;
        margin: 0 !important;
    }

    .list_match .list li .box_03 .btn + .btn {
        margin-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .load_more {
        margin-top: 0;
    }
    .content_top > #gwd-hot-match {
        display: none !important;
    }

    .content_top .gwd-hot-mobile {
        display: block;
        min-height: 212px;
        padding: 8px 13px 11px;
        border: 1px solid #b88712;
        background: #030607;
        color: #fff;
        overflow: hidden;
    }

    .gwd-hot-mobile__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .gwd-hot-mobile__title {
        display: flex;
        align-items: center;
        gap: 4px;
        min-width: 0;
        color: #d8ef26;
        font-size: 14px;
        font-weight: 800;
        line-height: 22px;
        white-space: nowrap;
    }

    .gwd-hot-mobile__title img {
        width: 15px;
        height: 15px;
        object-fit: contain;
    }

    .gwd-hot-mobile__time {
        min-width: 105px;
        padding: 4px 8px;
        border-radius: 3px;
        background: #2fba18;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        line-height: 18px;
        text-align: center;
        white-space: nowrap;
    }

    .gwd-hot-mobile__meta {
        min-height: 41px;
        margin-top: 13px;
        text-align: center;
    }

    .gwd-hot-mobile__league {
        color: #fff;
        font-family: 'Oswald', sans-serif;
        font-size: 15px;
        font-weight: 800;
        line-height: 18px;
        text-transform: uppercase;
    }

    .gwd-hot-mobile__blv {
        margin-top: 3px;
        color: #d8ef26;
        font-size: 12px;
        font-weight: 800;
        line-height: 16px;
        text-transform: uppercase;
    }

    .gwd-hot-mobile__teams {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
        column-gap: 10px;
        align-items: center;
        margin-top: 6px;
    }

    .gwd-hot-mobile__team {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
    }

    .gwd-hot-mobile__logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        padding: 8px;
        border: 2px solid #333744;
        border-radius: 50%;
        background: #1d1e27;
    }

    .gwd-hot-mobile__logo img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .gwd-hot-mobile__name {
        display: block;
        width: 100%;
        margin-top: 5px;
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        line-height: 16px;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .gwd-hot-mobile__score {
        color: #fff;
        font-size: 29px;
        font-weight: 900;
        line-height: 34px;
        text-align: center;
        text-transform: uppercase;
    }

    .gwd-hot-mobile__actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 25px;
    }

    .gwd-hot-mobile__bet,
    .gwd-hot-mobile__watch {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 78px;
        height: 27px;
        border-radius: 3px;
        color: #fff !important;
        font-size: 10px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
    }

    .gwd-hot-mobile__bet {
        background: #22b313 !important;
    }

    .gwd-hot-mobile__watch {
        background: #ff1717 !important;
    }

    .gwd-hot-mobile-menu {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999;
        display: flex;
        width: 100%;
        min-height: calc(36px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        overflow-x: auto;
        overflow-y: hidden;
        background: #18bd12;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
        border-right: 1px solid rgba(255, 255, 255, 0.35);
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        scrollbar-width: none;
    }

    .gwd-hot-mobile-menu::-webkit-scrollbar {
        display: none;
    }

    .gwd-hot-mobile-menu a {
        display: flex;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        min-width: 68px;
        min-height: 36px;
        padding: 0 8px;
        border-left: 1px solid rgba(255, 255, 255, 0.35);
        color: #fff !important;
        font-size: 10px;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .gwd-hot-mobile-menu a:first-child {
        border-left: 0;
    }

    body {
        padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px));
    }

    .gwd-catfish-footer {
        bottom: calc(40px + env(safe-area-inset-bottom, 0px)) !important;
    }

    html.gwd-ios-safari .gwd-hot-mobile-menu {
        bottom: max(8px, env(safe-area-inset-bottom, 0px));
        min-height: 36px;
        padding-bottom: 0;
    }

    html.gwd-ios-safari body::after {
        content: "";
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9998;
        height: max(8px, env(safe-area-inset-bottom, 0px));
        background: transparent;
        pointer-events: none;
    }

    html.gwd-ios-safari body {
        padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
    }

    html.gwd-ios-safari .gwd-catfish-footer {
        bottom: calc(48px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

@media (max-width: 767px) {
    .chat-anonymous-input,
    input.chat-anonymous-input {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .list_match {
        background: #1d252d !important;
        color: #fff !important;
    }

    .list_match .gwd-mobile-list-title,
    .list_match .box_title {
        display: flex !important;
        align-items: center;
        gap: 9px;
        min-height: 44px;
        margin: 0 !important;
        padding: 0 14px !important;
        border-radius: 3px;
        background: #28323b !important;
        color: #d8ef26 !important;
        font-size: 14px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
    }

    .list_match .gwd-mobile-list-title img,
    .list_match .box_title img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .list_match .list {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .list_match .list > li.gwd-mobile-match-card,
    .list_match .list > li:not(.banner-for-list-match) {
        position: relative;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        min-height: 139px;
        margin: 0 !important;
        padding: 9px 14px 10px !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(81, 176, 37, 0.65) !important;
        border-radius: 0 !important;
        background: #1d252d !important;
    }

    .list_match .list > li .box_01 {
        display: flex !important;
        align-items: center;
        gap: 6px;
        min-height: 15px;
        order: 1;
        width: 100% !important;
        margin: 0 !important;
    }

    .list_match .list > li .tournament {
        order: 1;
        flex: 1 1 0;
        min-width: 0;
        color: rgba(255, 255, 255, 0.72) !important;
        font-size: 11px;
        font-style: italic;
        font-weight: 500;
        line-height: 15px;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .list_match .list > li .date {
        order: 3;
        flex: 1 1 0;
        min-width: 0;
        color: #fff !important;
        font-size: 11px;
        font-weight: 500;
        line-height: 15px;
        text-align: right;
        white-space: nowrap;
        margin: 0 !important;
    }

    .list_match .list > li .gwd-mobile-hot-badge {
        order: 2;
        flex: 0 0 auto;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 27px;
        height: 13px;
        border-radius: 3px;
        background: #ff1717 !important;
        color: #fff !important;
        font-size: 8px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
    }

    .list_match .list li .box_02 .live .blv {
        font-size: 12px;
    }
    .list_match .list li .box_02 .live .score span {
        background: transparent;
    }

    .list_match .list li .box_02 .live {
        width: calc(100% - 260px);
    }

    .list_match .list > li .box_02 {
        display: flex;
        align-items: start;
        order: 2;
        width: 100% !important;
        margin: 14px 0 0 !important;
        cursor: pointer;
    }

    .list_match .list > li .club {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        min-width: 0;
    }

    .list_match .list > li .club .img {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 46px !important;
        height: 46px !important;
        padding: 8px !important;
        border: 2px solid #3b3a47;
        border-radius: 50%;
        background: #252530 !important;
    }

    .list_match .list > li .club .img img {
        width: 29px !important;
        height: 29px !important;
        object-fit: contain;
    }

    .list_match .list > li .club .name {
        display: block;
        width: 100%;
        margin-top: 5px !important;
        color: #fff !important;
        font-size: 10px;
        font-weight: 800;
        line-height: 12px;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .list_match .list > li .live {
        display: flex !important;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        padding-top: 9px !important;
        text-align: center;
    }

    .list_match .list > li .live .score,
    .list_match .list > li .live .vs {
        color: #fff !important;
        font-size: 20px;
        font-weight: 900;
        line-height: 23px;
        text-transform: uppercase;
    }

    .list_match .list > li .live .blv {
        margin: 4px 0 0 !important;
        color: #d8ef26 !important;
        font-size: 9px;
        font-weight: 900;
        line-height: 11px;
        text-align: center;
        text-transform: uppercase;
    }

    .list_match .list > li .live .gwd-match-hot-badge {
        display: none !important;
    }

    .list_match .list > li .box_03 {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 5px;
        order: 3;
        width: 100% !important;
        margin: 11px 0 0 !important;
    }

    .list_match .list > li .box_03 .btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 57px !important;
        min-width: 57px !important;
        height: 19px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 3px;
        color: #fff !important;
        font-size: 8px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
    }

    .list_match .list > li .box_03 .btn_bet {
        background: #18bd12 !important;
    }

    .list_match .list > li .box_03 .btn_comming,
    .list_match .list > li .box_03 .live-status {
        background: #ff1717 !important;
    }
}
