.gm-home-live{
    margin:34px 0 18px;
}

.gm-home-live-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}

.gm-home-live-title{
    display:flex;
    align-items:center;
    gap:10px;
}

.gm-home-live-title h2{
    margin:0;
    color:#fff;
    font-size:22px;
}

.gm-home-live-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#e50914;
    box-shadow:0 0 12px #e50914;
}

.gm-home-live-all{
    color:#ddd !important;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

.gm-home-live-row{
    display:flex;
    gap:13px;
    overflow-x:auto;
    padding:2px 2px 14px;
    scroll-snap-type:x proximity;
    scrollbar-width:thin;
}

.gm-home-live-card{
    flex:0 0 180px;
    scroll-snap-align:start;

    display:block;

    background:#11151d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:13px;

    overflow:hidden;

    color:#fff !important;
    text-decoration:none !important;

    transition:
        transform .18s ease,
        border-color .18s ease;
}

.gm-home-live-card:hover{
    transform:translateY(-4px);
    border-color:rgba(229,9,20,.7);
}

.gm-home-live-logo{
    height:105px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        radial-gradient(
            circle at center,
            #202735,
            #090c12
        );

    position:relative;
}

.gm-home-live-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:14px;
}

.gm-home-live-fallback{
    font-size:38px;
}

.gm-home-live-badge{
    position:absolute;
    top:8px;
    left:8px;

    padding:4px 7px;

    background:#e50914;
    border-radius:5px;

    color:#fff;

    font-size:9px;
    font-weight:900;
    letter-spacing:.6px;
}

.gm-home-live-info{
    padding:11px;
}

.gm-home-live-name{
    display:block;

    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;

    font-size:13px;
    font-weight:800;
}

.gm-home-live-meta{
    display:block;
    margin-top:6px;

    color:#9299a8;

    font-size:11px;

    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

@media(max-width:650px){

    .gm-home-live{
        margin-top:26px;
    }

    .gm-home-live-title h2{
        font-size:18px;
    }

    .gm-home-live-card{
        flex-basis:145px;
    }

    .gm-home-live-logo{
        height:88px;
    }
}

/* ===== LIVE TV DESKTOP ARROWS ===== */

.gm-home-live{
    position:relative;
}

.gm-live-scroll-wrap{
    position:relative;
}

.gm-live-arrow{
    display:none;
}

@media (min-width:901px){

    .gm-home-live-row{
        scroll-behavior:smooth;
        scrollbar-width:none;
    }

    .gm-home-live-row::-webkit-scrollbar{
        display:none;
    }

    .gm-live-arrow{
        display:flex;
        position:absolute;
        top:50%;
        transform:translateY(-50%);

        width:46px;
        height:70px;

        align-items:center;
        justify-content:center;

        border:0;
        border-radius:10px;

        background:rgba(5,7,11,.88);
        color:#fff;

        font-size:38px;
        font-weight:400;

        cursor:pointer;

        z-index:20;

        box-shadow:0 5px 20px rgba(0,0,0,.55);
    }

    .gm-live-arrow:hover{
        background:#e50914;
    }

    .gm-live-arrow-left{
        left:6px;
    }

    .gm-live-arrow-right{
        right:6px;
    }

    .gm-live-arrow:disabled{
        opacity:.25;
        cursor:default;
        background:rgba(5,7,11,.75);
    }
}

/* ===== LIVE TV LARGE SIDE ARROWS V2 ===== */

@media (min-width:901px){

    .gm-live-scroll-wrap{
        position:relative;
    }

    .gm-live-arrow{
        display:flex !important;

        position:absolute;

        top:0 !important;
        bottom:14px !important;

        width:58px !important;
        height:auto !important;

        transform:none !important;

        align-items:center !important;
        justify-content:center !important;

        padding:0 !important;

        border:0 !important;
        border-radius:0 !important;

        color:#fff !important;

        font-size:64px !important;
        font-family:Arial,sans-serif !important;
        font-weight:300 !important;
        line-height:1 !important;

        cursor:pointer !important;

        z-index:50 !important;

        opacity:.88;

        transition:
            opacity .2s ease,
            background .2s ease;
    }


    .gm-live-arrow-left{
        left:0 !important;

        background:
            linear-gradient(
                90deg,
                rgba(5,7,11,.98) 0%,
                rgba(5,7,11,.82) 55%,
                rgba(5,7,11,0) 100%
            ) !important;
    }


    .gm-live-arrow-right{
        right:0 !important;

        background:
            linear-gradient(
                270deg,
                rgba(5,7,11,.98) 0%,
                rgba(5,7,11,.82) 55%,
                rgba(5,7,11,0) 100%
            ) !important;
    }


    .gm-live-arrow:hover{
        opacity:1 !important;
    }


    .gm-live-arrow-left:hover{
        background:
            linear-gradient(
                90deg,
                rgba(229,9,20,.95) 0%,
                rgba(229,9,20,.48) 55%,
                rgba(229,9,20,0) 100%
            ) !important;
    }


    .gm-live-arrow-right:hover{
        background:
            linear-gradient(
                270deg,
                rgba(229,9,20,.95) 0%,
                rgba(229,9,20,.48) 55%,
                rgba(229,9,20,0) 100%
            ) !important;
    }


    .gm-live-arrow:disabled{
        opacity:0 !important;
        pointer-events:none !important;
    }
}

/* Stable mobile Live TV loading state */
.gm-home-live-loading{
    display:flex;
    align-items:center;
    min-height:120px;
    padding:20px;
    opacity:.65;
    font-size:14px;
    white-space:nowrap;
}
