:root {
    --bs-white-rgb: 255, 255, 255;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-border-width: 1px;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, .175);
    --bs-border-radius: .375rem;
    --bs-body-bg: #fff;
    --bs-body-color: #212529;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
    --bs-box-shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075)
}

*,
::after,
::before {
    box-sizing: border-box !important
}

.row {
    --bs-gutter-x: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5)
}

.col {
    flex: 1 0 0
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .375rem
}

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: var(--bs-body-color);
    text-decoration: none;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item-action {
    width: 100%;
    text-align: inherit
}

.list-group-item-action:hover {
    z-index: 1;
    background: #f8f9fa
}

.list-group-item-light {
    background: #fcfcfd
}

.list-group-item-dark {
    background: #ced4da
}

.list-group-item-success {
    background: #d1e7dd
}

.list-group-item-warning {
    background: #fff3cd
}

.list-group-item-danger {
    background: #f8d7da
}

.list-group-item-primary {
    background: #cfe2ff
}

.list-group-item-secondary {
    background: #e2e3e5
}

.bg-success {
    background-color: rgb(var(--bs-success-rgb)) !important
}

.bg-warning {
    background-color: rgb(var(--bs-warning-rgb)) !important
}

.bg-danger {
    background-color: rgb(var(--bs-danger-rgb)) !important
}

.bg-primary {
    background-color: rgb(var(--bs-primary-rgb)) !important
}

.bg-secondary {
    background-color: rgb(var(--bs-secondary-rgb)) !important
}

.bg-dark {
    background-color: rgb(var(--bs-dark-rgb)) !important
}

.border-success {
    border-color: rgb(var(--bs-success-rgb)) !important
}

.border-warning {
    border-color: rgb(var(--bs-warning-rgb)) !important
}

.border-danger {
    border-color: rgb(var(--bs-danger-rgb)) !important
}

.border-primary {
    border-color: rgb(var(--bs-primary-rgb)) !important
}

.border-secondary {
    border-color: rgb(var(--bs-secondary-rgb)) !important
}

.border-dark {
    border-color: rgb(var(--bs-dark-rgb)) !important
}

.text-dark {
    color: rgb(var(--bs-dark-rgb)) !important
}

.text-white {
    color: #fff !important
}

.text-light {
    color: rgb(var(--bs-light-rgb)) !important
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.d-flex {
    display: flex !important
}

.d-none {
    display: none !important
}

.flex-column {
    flex-direction: column !important
}

.justify-content-center {
    justify-content: center !important
}

.align-items-start {
    align-items: flex-start !important
}

.w-100 {
    width: 100% !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.fw-bolder {
    font-weight: bolder !important
}

.shadow-sm {
    box-shadow: var(--bs-box-shadow-sm) !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.ms-1 {
    margin-left: .25rem !important
}

.me-1 {
    margin-right: .25rem !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #eee;
    word-wrap: break-word;
    background: #fff;
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: .375rem
}

.card-header {
    padding: .5rem 1rem;
    border-bottom: 1px solid var(--bs-border-color-translucent)
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem
}

.live_blink {
    animation: blinker 1s linear infinite;
    font-size: 18px;
    color: red
}

@keyframes blinker {
    50% {
        color: #000
    }
}

.lang-badge {
    display: inline-block;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
    border-radius: 0 !important;
}

.lang-badge-desktop {
    height: 24px;
    width: 45px;
    margin: 2px 4px 2px 0
}

.lang-badge-mobile {
    height: 20px !important;
    width: auto !important;
    margin: 0 6px 0 0
}

.lang-badge-placeholder {
    visibility: hidden;
    pointer-events: none
}

.match-row-icons {
    display: flex !important;
    flex-flow: row nowrap !important;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto !important;
    width: auto !important
}

.match-row-icons img {
    flex-shrink: 0
}

.match-row-icons .play-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain
}

.d-md-flex.match-row {
    flex-wrap: nowrap !important;
    align-items: center
}

.d-md-flex.match-row>[class*=col] {
    display: flex;
    align-items: center
}

.d-md-flex.match-row>.col-4.text-end {
    justify-content: flex-end
}

.d-md-flex.match-row>.col-1.text-center {
    justify-content: center
}

.d-md-flex.match-row>.col-4 {
    min-width: 0;
    flex-shrink: 1 !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.embedweb-video-wrap,
.embedweb-video-wrap * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif
}

.embedweb-video-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    user-select: none
}

.embedweb-video-wrap:fullscreen {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto
}

.embedweb-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000
}

.mole-player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.mole-player-overlay.mole-overlay-interactive {
    background: rgba(0, 0, 0, .25);
    pointer-events: auto;
    cursor: pointer
}

.mole-player-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, .15);
    border-top-color: rgba(255, 255, 255, .8);
    border-radius: 50%;
    animation: mole-spin .75s linear infinite
}

.mole-player-loading-text {
    margin-top: .875rem;
    color: rgba(255, 255, 255, .5);
    font-size: .8125rem;
    font-weight: 400;
    letter-spacing: .01em
}

.mole-overlay-play {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    pointer-events: auto;
    transition: transform .15s ease
}

.mole-overlay-play:hover svg circle:first-child {
    stroke: rgba(255, 255, 255, .5)
}

.mole-overlay-play:hover svg circle:nth-child(2) {
    fill: rgba(0, 0, 0, .45)
}

.mole-player-overlay-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    max-width: 280px;
    color: rgba(255, 255, 255, .7);
    font-size: .8125rem;
    line-height: 1.5;
    text-align: center;
    pointer-events: auto
}

.mole-retry-btn {
    padding: .4rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .8125rem;
    font-weight: 500;
    cursor: pointer
}

.mole-retry-btn:hover {
    background: rgba(255, 255, 255, .18)
}

.mole-player-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 2.5rem .75rem .625rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
    opacity: 1;
    transition: opacity .3s ease
}

.mole-player-controls.mole-controls-hidden {
    opacity: 0;
    pointer-events: none
}

.mole-ctrl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 0;
    border-radius: 4px;
    background: none;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
    cursor: pointer;
    transition: color .15s, background-color .15s
}

.mole-ctrl-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1)
}

.mole-volume-group {
    display: flex;
    align-items: center;
    gap: 2px
}

.mole-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    outline: 0;
    background: rgba(255, 255, 255, .25);
    cursor: pointer
}

.mole-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    cursor: pointer
}

.mole-vol-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    cursor: pointer
}

.mole-vol-slider::-moz-range-track {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .25)
}

.mole-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px 2px 6px;
    border-radius: 3px;
    background: rgba(239, 68, 68, .2);
    color: #f87171;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .04em
}

.mole-live-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #ef4444
}

.mole-control-spacer {
    flex: 1
}

.mole-quality-container {
    position: relative
}

.mole-quality-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    font-size: .6875rem;
    font-weight: 600;
    cursor: pointer
}

.mole-quality-btn:hover {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .18)
}

.mole-quality-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 6px);
    z-index: 10;
    min-width: 140px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(15, 15, 15, .96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    backdrop-filter: blur(12px)
}

.mole-quality-menu-header {
    padding: 8px 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .4);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase
}

.mole-quality-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, .85);
    font-size: .8125rem;
    text-align: left;
    white-space: nowrap;
    cursor: pointer
}

.mole-quality-opt:hover,
.mole-quality-opt.is-active {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.mole-quality-opt.is-active {
    font-weight: 600
}

.mole-quality-bitrate {
    margin-left: 12px;
    color: rgba(255, 255, 255, .35);
    font-size: .625rem;
    font-weight: 400
}

.embedweb-channels {
    text-align: center;
    margin: 10px
}

.channel_icon {
    opacity: .5;
    background: #fff;
    border-radius: 5px;
    height: 64px;
    margin-left: 5px;
    margin-top: 2px;
    cursor: pointer;
    border: 1px solid #ccc
}

.alert {
    position: relative;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .375rem
}

.alert-secondary {
    color: #41464b;
    background: #e2e3e5;
    border-color: #d3d6d8
}

.alert-danger {
    color: #842029;
    background: #f8d7da;
    border-color: #f5c2c7
}

.btn {
    display: inline-block;
    padding: .25rem .5rem;
    border: 1px solid #6c757d;
    border-radius: .25rem;
    background: transparent;
    cursor: pointer
}

.mt-2 {
    margin-top: .5rem !important
}

.mb-0 {
    margin-bottom: 0 !important
}

@keyframes mole-spin {
    to {
        transform: rotate(360deg)
    }
}

@media(max-width:480px) {
    .mole-player-controls {
        gap: .25rem;
        padding-right: .4rem;
        padding-left: .4rem
    }

    .mole-vol-slider {
        display: none
    }

    .mole-quality-btn {
        padding-right: 5px;
        padding-left: 5px
    }
}

@media(min-width:768px) {
    .d-md-flex {
        display: flex !important
    }

    .d-md-none {
        display: none !important
    }
}
.external-channel {
    min-width: 72px;
    padding: 0 12px;
    color: #212529;
    font: inherit;
    font-weight: 600;
    vertical-align: top;
}
