@import "icons.css";
*,
::before,
::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
}

:root {
    --maxwidth: 1000px;
    --radius: 6px;
    --transition: cubic-bezier(0.22, 0.61, 0.36, 1)
}

body {
    line-height: 1.5;
    color: #fff;
    background: #05070b;
    width: 100%;
    max-width: var(--maxwidth);
    margin: 0 auto;
    min-height: 100vh
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    height: 100vw;
    background-image: radial-gradient(circle at center, #32333f 0, transparent 66.66%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

h1,
h2,
h3 {
    margin: .5em 0
}

ul,
li,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block
}

a {
    color: inherit;
    text-decoration: none
}

body {
    background: #000
}

body,
input,
textarea,
option,
select {
    font-family: 'Poppins', sans-serif;
    font-weight: 400
}

input {
    cursor: text
}

img {
    max-width: 100%
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #fff, transparent)
}

.body-light {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px)
}

.status-bar {
    position: fixed;
    bottom: 2em;
    right: 2em;
    border-radius: var(--radius);
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
    padding: 1em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4)
}

.status-bar>div {
    font-size: .875em;
    font-weight: 300
}

.status-text {
    margin-top: 1em
}

.popup-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px)
}

.popup-ads {
    position: fixed;
    z-index: 9
}

.popup-ads img {
    max-width: 100%
}

.popup-close {
    position: absolute;
    top: -2em;
    right: 0;
    cursor: pointer
}

.header-top {
    padding: 1em 2em;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    -webkit-border-bottom-right-radius: var(--radius);
    -webkit-border-bottom-left-radius: var(--radius);
    -moz-border-radius-bottomright: var(--radius);
    -moz-border-radius-bottomleft: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em
}

.header-text {
    font-size: .875em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    font-weight: 300
}

.header-text p {
    margin: 0
}

.header-top svg {
    font-size: 1em;
    width: 1em;
    height: 1em;
    color: rgb(255, 255, 255);
    transition: all 200ms var(--transition)
}

.header-top svg:hover {
    color: #fff
}

.social-area {
    line-height: 1
}

.social-area a:not(:first-child) {
    margin-left: 1em
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: 300;
    margin-bottom: 1em
}

header .logo {
    width: 200px;
    border-radius: var(--radius)
}

header .logo img {
    border-radius: var(--radius)
}

header ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: -1em
}

header ul li a {
    padding: 0 1em;
    color: rgba(255, 255, 255, 0.81);
    transition: color 200ms var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center
}

header ul li a.active,
header ul li a:hover {
    color: #fff
}

header ul li a i {
    margin-bottom: .25em;
    font-size: 1.5em
}

header ul li a span {
    font-size: .875em;
    text-transform: uppercase
}

[data-stream] {
    overflow: hidden
}

.channel-area {
    display: grid;
    grid-template-columns: 24px calc((var(--maxwidth)) - (48px + 2em)) 24px;
    gap: 1em;
    align-items: stretch;
    margin: 1em 0;
    position: relative
}

.channel-left,
.channel-right {
    cursor: pointer
}

.channel-left {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.channel-right {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.channel-area svg {
    width: 1em
}

.channel-area svg .icon-aktif {
    opacity: .5
}

.channel-area svg .icon-pasif {
    opacity: .25
}

.single-channel {
    position: relative;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-radius: var(--radius);
    padding: 1em;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
}

.single-channel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: -1;
    transition: all 200ms var(--transition)
}

.single-channel:hover::after {
    background: rgba(0, 0, 0, 0.8)
}

.single-channel picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-channel.active {
    border-color: rgba(255, 255, 255, 0.5)
}

.channel-area [data-stream].active {
    position: relative
}

.channel-area [data-stream].active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1
}

.container-grid {
    display: grid;
    grid-template-columns: calc(667px - 0.5em) calc(333px - 0.5em);
    gap: 1em;
    align-items: flex-start;
    transition: all 200ms var(--transition)
}

.container-grid.single {
    grid-template-columns: 1fr
}

.container-grid.wide {
    grid-template-columns: 1fr
}

.channel-info {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8)
}

.channel-info p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.single-channel-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    cursor: pointer
}

.single-channel-play img {
    max-width: 240px;
    margin-bottom: 1em
}

.single-channel-play svg {
    position: absolute;
    width: 240px;
    opacity: .2
}

.single-channel-play .fa-primary {
    opacity: .1
}

.live-player {
    position: relative;
    z-index: 6;
    min-height: 480px
}

.live-list {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden
}

.list-head {
    padding: 1em 2em;
    -webkit-border-top-left-radius: var(--radius);
    -webkit-border-top-right-radius: var(--radius);
    -moz-border-radius-topleft: var(--radius);
    -moz-border-radius-topright: var(--radius);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-transform: uppercase;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
    font-weight: 700;
    overflow: hidden
}

.live-list .list-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.list-head>span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 400
}

.list-head svg {
    width: 1em;
    margin-right: 1em
}

.list-blink {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: red;
    animation: listblink 1000ms linear infinite;
    margin-right: 1em
}

[data-focustab] {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 200ms var(--transition);
}

[data-focustab] span {
    font-size: .875em;
    cursor: pointer
}

[data-focustab]:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent)
}

[data-focustab].active {
    color: #fff;
    border-bottom-color: #fff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent)
}

[data-focustab="next"] .list-blink {
    animation: none;
    background: #fff
}

@keyframes listblink {
    0%,
    100% {
        opacity: .4
    }
    50% {
        opacity: 1
    }
}

.wide .live-list-grid {
    grid-template-columns: 1fr
}

.wide .list-tabbed {
    flex-direction: row
}

.live-list-grid {
    display: grid;
    grid-template-columns: 48px auto;
    width: 100%
}

.list-tabbed {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: .75em;
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300
}

.wide .list-tabbed>div {
    border-bottom: 0
}

.list-tabbed>div {
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75em;
    transition: all 200ms var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.tabbed-sports-list>div:not(:first-child) {
    margin-left: 1em
}

.list-tabbed svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.3);
    transition: all 200ms var(--transition)
}

.list-tabbed div.active {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    color: #fff;
    pointer-events: none
}

.sport_icons {
    transition: all 200ms var(--transition)
}

.list-tabbed>div.active svg {
    transform: scale(1.25);
    fill: #fff
}

[data-matchfilter="all"] {
    padding: 1em
}

[data-matchfilter]:hover {
    background-color: rgba(255, 255, 255, 0.1)
}

.list-count {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
    display: none;
    line-height: 1;
    color: #fff;
    background: #F44336;
    font-size: .75em;
    white-space: nowrap;
    animation: listblink 1000ms linear infinite;
    padding: .5em 0;
    text-align: center
}

[data-tabbed="next"] .list-count {
    background: #fff;
    color: #000;
    animation: none
}

.favorite-match {
    display: inline;
    text-transform: uppercase;
    margin-right: 1em;
    background: #ffd700;
    color: #000
}

.wide [data-matchfilter].active {
    flex-direction: row;
    padding-top: 12px
}

[data-matchfilter].active {
    display: flex;
    flex-direction: column;
    padding-top: 32px
}

[data-matchfilter].active .list-count {
    display: inline-flex;
    justify-content: center;
    align-items: center
}

.wide .list-tabbed div.active {
    padding-left: 52px
}

.wide [data-matchfilter].active .list-count {
    height: 100%;
    width: 40px
}

.wide .live-list {
    order: -1
}

.wide.container-grid {
    gap: 1em
}

.wide .list-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-height: 186px
}

.wide [data-tabbed="live"] .list-area {
    grid-template-columns: repeat(1, 1fr);
}

.wide [data-tabbed="live"] .list-area>div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.wide .list-tabbed {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.wide .list-area,
.wide .list-tabbed {
    height: unset
}

.list-area {
    scroll-snap-type: y mandatory
}

.list-area,
.list-tabbed {
    height: 393px;
    overflow-y: auto;
    overflow-x: hidden
}

.single-match {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    gap: 1em;
    align-items: center;
    justify-content: flex-start;
    padding: .5em 1em;
    transition: all 200ms var(--transition);
    cursor: pointer;
    scroll-snap-align: start;
    animation-name: singlematch;
    animation-timing-function: var(--transition);
    animation-fill-mode: forwards;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 62px;
}

.single-match {
    display: none;
}

.single-match.show {
    display: grid;
}

.single-match svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.3);
    transition: all 200ms var(--transition)
}

.single-match img {
    border-radius: 50%
}

.single-match:hover svg {
    fill: #000
}

.single-match:nth-child(7n+1) {
    animation-duration: 200ms
}

.single-match:nth-child(7n+2) {
    animation-duration: 400ms
}

.single-match:nth-child(7n+3) {
    animation-duration: 600ms
}

.single-match:nth-child(7n+4) {
    animation-duration: 800ms
}

.single-match:nth-child(7n+5) {
    animation-duration: 1000ms
}

.single-match:nth-child(7n+6) {
    animation-duration: 1200ms
}

.single-match:nth-child(7n+7) {
    animation-duration: 1200ms
}

@keyframes singlematch {
    0% {
        opacity: 0;
        transform: translateY(-0.5em) rotateZ(2deg) scale(1.1)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.single-match:nth-child(odd) {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1))
}

[data-stream].active {
    pointer-events: none
}

.single-match:hover,
.single-match.active {
    background: #fff
}

.single-match:hover .event,
.single-match.active .event {
    color: rgba(0, 0, 0, 0.5)!important
}

.single-match:hover .date,
.single-match.active .date {
    color: rgba(0, 0, 0, 1)!important
}

.single-match:hover .teams,
.single-match.active .teams {
    color: rgba(0, 0, 0, 0.8)!important
}

.single-match.active svg {
    fill: #000
}

.match-type {
    width: 2em;
    height: 1.75em;
    margin-right: 1em
}

.match-detail {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.match-detail .event,
.match-detail .date {
    font-size: .6em;
    color: rgba(255, 255, 255, 0.3);
    transition: all 200ms var(--transition);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.match-detail .date {
    color: rgba(255, 255, 255, 0.5)
}

.match-detail .teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5em;
    width: 100%;
    align-items: center;
    font-size: .75em;
    color: rgba(255, 255, 255, 0.8);
    transition: all 200ms var(--transition)
}

.match-detail .teams>div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

footer {
    margin: 1em 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    text-align: center
}

footer>div {
    font-size: .875em
}

.footer-copyright {
    margin-bottom: 1em
}

footer p {
    margin: 0
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1em;
    justify-content: stretch;
    align-items: stretch
}

footer .copy-text {
    margin-top: 1em;
    color: #fff
}

.footer-links a {
    display: inline-block;
    padding: .5em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.8);
    text-align: center
}

.copyright-text {
    margin-top: 1em;
    font-size: .875em;
    color: rgba(255, 255, 255, 0.3)
}

.plyr--video {
    border-radius: var(--radius)
}

.canli-maclar {
    margin-bottom: 1em;
    height: 40px
}

.sr-wwrap.srm-fullyloaded {
    border-radius: var(--radius);
    overflow: hidden
}

.sr-bb {
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.1))!important
}

.sr-bb .sr-sportsticker__wrapper {
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1))
}

.sr-bb .sr-sportsticker__block {
    z-index: 2
}

.sr-bb .sr-sportsticker__marquee {
    color: #fff
}

.canli-maclar .sr-bb .srt-base-1-primary {
    color: rgba(255, 255, 255, 0.6)
}

.news-area {
    border-radius: var(--radius);
    margin-top: 1em
}

.news-area svg {
    width: 1.5em
}

.news-area .fa-secondary {
    opacity: .5
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1em
}

.news-list,
.news-content {
    max-height: 315px;
    overflow-y: auto;
    -webkit-border-bottom-right-radius: var(--radius);
    -webkit-border-bottom-left-radius: var(--radius);
    -moz-border-radius-bottomright: var(--radius);
    -moz-border-radius-bottomleft: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius)
}

.news-list {
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-type: y mandatory
}

.news-area .list-head {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none
}

.single-news {
    padding: .75em 2em;
    cursor: pointer;
    transition: all 200ms var(--transition);
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 1em;
    overflow: hidden;
    align-items: center;
    scroll-snap-align: start
}

.single-news-detail {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.single-news-image {
    display: flex;
    align-items: center;
    justify-content: center
}

.single-news img {
    border-radius: var(--radius)
}

.single-news:nth-child(odd) {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1))
}

.single-news:hover {
    background: #fff
}

.single-news:hover .news-title {
    color: rgba(0, 0, 0, 0.8)
}

.single-news:hover .news-date {
    color: rgba(0, 0, 0, 0.5)
}

.news-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: .875em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: all 200ms var(--transition);
    font-weight: 300
}

.news-date {
    color: rgba(255, 255, 255, 0.3);
    font-size: .75em;
    transition: all 200ms var(--transition)
}

.news-content {
    padding: 1em 2em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300
}

.news-content img {
    margin-bottom: 1em;
    border-radius: var(--radius)
}

.news-excerpt {
    margin-bottom: 1em;
    font-size: .875em;
    color: rgba(255, 255, 255, 0.8)
}

.news-content p {
    margin: 0 0 1em;
    font-size: .875em;
    color: rgba(255, 255, 255, 0.6)
}

.news-show {
    display: none
}

.news-show[data-active] {
    display: block;
    animation: activenews 500ms var(--transition) forwards
}

@keyframes activenews {
    0% {
        opacity: 0;
        transform: translateX(-2em) translateY(-4em) rotateZ(-5deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.head-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: stretch;
    justify-content: space-between;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent)
}

.head-grid>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer
}

.vertical-line {
    width: 1px;
    height: 57px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    padding: 1em 0!important;
    pointer-events: none
}

[data-tabbed] {
    display: none
}

[data-tabbed].active {
    display: block
}

.blog-area {
    margin: 1em 0
}

.blog-list {
    display: grid;
    grid-template-columns: 1.5fr 1.25fr 1fr;
    gap: 1em
}

.blog-list h2 {
    font-size: 1.25em
}

article h1 {
    text-align: center
}

.blog-list.wide {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2em
}

.single-blog {
    position: relative;
    display: inline-flex;
    border-radius: var(--radius);
    overflow: hidden
}

.single-blog::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9))
}

.single-blog .title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em;
    color: rgba(255, 255, 255, 0.75);
    z-index: 2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    font-weight: 300
}

.single-blog:hover img {
    transform: scale(1.1)
}

.single-blog img,
.blog-list.wide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: all 200ms var(--transition)
}

.blog-list.wide .blog-article {
    text-align: justify
}

.blog-article {
    font-size: .875em;
    color: rgba(255, 255, 255, 0.8);
    margin: 1em 0
}

article .blog-article {
    max-width: 600px;
    margin: 1em auto;
    font-size: 1em
}

.blog-link {
    display: block;
    text-align: center
}

article time {
    text-align: center;
    display: block
}

.ads {
    text-align: center
}

.ads img {
    border-radius: var(--radius);
    margin: auto
}

.ads.top {
    margin-bottom: 1em
}

.ads.playerbottom {
    margin-top: 1em
}

.displaynone {
    display: none
}

[data-plyr] {
    cursor: pointer
}

.match-search {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%
}

.match-search input {
    width: 100%;
    border: none;
    background: url(../svg/search.svg);
    background-size: 1em;
    background-position: 1em center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: .875em;
    padding: .75em 1em .75em 3em;
    outline-color: #fff;
}

.radar-result[data-type="Basketbol"] [data-showradar="3"],
.radar-result[data-type="Basketbol"] [data-showradar="4"],
.radar-result[data-type="Basketbol"] [data-showradar="7"],
.radar-result[data-type="Basketbol"] [data-showradar="8"],
.radar-result[data-type="Basketbol"] [data-showradar="10"] {
    display: none
}

.radar-result:not(:empty) {
    margin: 2em 0
}

.radar-tabhead {
    display: grid;
    grid-template-columns: repeat(8, auto);
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: none;
    margin: 1em 0
}

.radar-tabhead.active {
    display: grid
}

.radar-tabhead>div {
    font-size: .875em;
    cursor: pointer;
    padding: 1em
}

.radar-tabhead>div:hover,
.radar-tabhead>div.active {
    background: rgba(255, 255, 255, 0.1)
}

[data-radarblock]:not(:empty) {
    display: none;
    padding: 2em;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius)
}

[data-radarblock].active {
    display: block
}

.sr-commentlist {
    max-height: 400px;
    overflow: auto
}

.sr-lmts-scoreboard-wraper .sr-scoreboard-head {
    height: 40px;
    border-radius: var(--radius)
}

.sr-widget.sr-widgets-probabilities-ballpossession .sr-chart-pie .sr-pie-slice-num-1 {
    fill: rgba(0, 0, 0, 0.3)
}

.sr-widget.sr-widgets-probabilities-ballpossession .sr-chart-pie .sr-pie-slice-num-2 {
    fill: rgba(0, 0, 0, 0.8)
}

.sr-widget.sr-widgets-probabilities-ballpossession .sr-barchart-container .sr-bar-home {
    background: rgba(0, 0, 0, 0.3)
}

.sr-widget.sr-widgets-probabilities-ballpossession .sr-barchart-container .sr-bar-away {
    background: rgba(0, 0, 0, 0.8)
}

.sr-widget.sr-large .sr-matclineups-teams .sr-tab .sr-lineups-header-home {
    background: rgba(0, 0, 0, 0.3)
}

.sr-widget.sr-large .sr-matclineups-teams .sr-tab .sr-lineups-header-away {
    background: rgba(0, 0, 0, 0.8)
}

.sr-widget .sr-matclineups-teams .sr-matchlineups-home .sr-matchlineups-shirtnumber,
.sr-widget .sr-matclineups-pitch .sr-player-home,
.sr-widget .sr-lmts-tactical-home .sr-shirt,
.sr-widget .sr-widgets-lmts-playerinfo .sr-home,
.sr-widget .sr-lmts-lineups-player .sr-home {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff
}

.sr-widget .sr-matclineups-teams .sr-matchlineups-away .sr-matchlineups-shirtnumber,
.sr-widget .sr-matclineups-pitch .sr-player-away,
.sr-widget .sr-lmts-tactical-away .sr-shirt,
.sr-widget .sr-widgets-lmts-playerinfo .sr-away,
.sr-widget .sr-lmts-lineups-player .sr-away {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff
}

.sr-widget .sr-color-home {
    background-color: rgba(0, 0, 0, 0.3)
}

.sr-widget .sr-color-away {
    background-color: rgba(0, 0, 0, 0.8)
}

.sr-widget.sr-widgets-playerinfo.sr-medium .sr-tabs .sr-tab,
.sr-widget.sr-widgets-playerinfo.sr-large .sr-tabs .sr-tab {
    background-color: rgba(255, 255, 255, 0.5)
}

.sr-widget .sr-subheader-1 {
    background-color: rgba(255, 255, 255, 0.3)
}

.sr-widget .sr-highlight {
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.4))
}

.sr-widget .sr-tabs .sr-tab.sr-active {
    background: rgba(255, 255, 255, 0.5)
}

.sr-widget .sr-tabs .sr-tabs-header:after {
    background: rgba(255, 255, 255, 0.5)
}

.sr-widget .sr-tabs .sr-tab:hover {
    background: rgba(255, 255, 255, 0.8)
}

.sr-widget .sr-pills .sr-pill.sr-active {
    background: rgba(255, 255, 255, 0.8);
    color: #000
}

.sr-widget .sr-header-3 {
    background: rgba(0, 0, 0, 0.3);
    -webkit-border-top-left-radius: var(--radius);
    -webkit-border-top-right-radius: var(--radius);
    -moz-border-radius-topleft: var(--radius);
    -moz-border-radius-topright: var(--radius);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius)
}

.sr-widget .sr-wdl-outcome-W {
    background-color: rgba(76, 175, 80, 0.8)
}

.sr-widget .sr-wdl-outcome-L {
    background-color: rgba(244, 67, 54, 0.8)
}

.sr-widget .sr-comment-item .sr-time {
    background: rgba(255, 255, 255, 0.05)
}

.sr-widget .sr-border-color-home {
    border-left-color: #fff
}

.sr-widget .sr-border-color-away {
    border-right-color: #fff
}

.sr-widget .sr-pills .sr-pill.sr-active:hover {
    background: #000;
    color: #fff
}

.sr-widget .sr-team-header-home {
    background-color: rgba(0, 0, 0, 0.3)
}

.sr-widget .sr-team-header-away {
    background-color: rgba(0, 0, 0, 0.8)
}

.sr-widget .sr-form-home .sr-form-inner {
    background-color: rgba(0, 0, 0, 0.3)
}

.sr-widget .sr-form-away .sr-form-inner {
    background-color: rgba(0, 0, 0, 0.8)
}

.sr-widget.sr-widgets-probabilities-averagegoals .sr-team-home {
    background-color: rgba(0, 0, 0, 0.3)
}

.sr-widget.sr-widgets-probabilities-averagegoals .sr-team-away {
    background-color: rgba(0, 0, 0, 0.8)
}

.sr-widget .sr-last-next-home:before {
    background-color: rgba(0, 0, 0, 0.3)
}

.sr-widget .sr-last-next-away:before {
    background-color: rgba(0, 0, 0, 0.8)
}

.sr-widget .sr-team-header.sr-team-border.sr-team-header-home {
    border-color: rgba(0, 0, 0, 0.3)
}

.sr-widget .sr-team-header.sr-team-border.sr-team-header-away {
    border-color: rgba(0, 0, 0, 0.8)
}

.sr-widgets-matchcommentary .sr-comment-item {
    transition: all 200ms var(--transition)
}

.sr-widgets-matchcommentary .sr-comment-item:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff
}

.sr-widget .sr-highlight-solid-trans {
    background: rgba(0, 0, 0, 0.5)
}

.sr-widget .sr-header-1,
.sr-widget .sr-header-2 {
    background: rgba(0, 0, 0, 0.5)
}

.sr-widgets-lmts .sr-lmts-logo-static {
    background-image: url(https://cs.betradar.com/ls/widgets/assets/betradar/widgets/css/components/../../images/lmts/lmts_court_logo.png?d=1576682137)
}

.sr-widget .sr-matclineups-teams .sr-tab .sr-lineups-header-home {
    background: rgba(0, 0, 0, 0.5);
    color: #fff
}

.sr-widget .sr-matclineups-teams .sr-tab .sr-lineups-header-away {
    background: rgba(0, 0, 0, 0.5);
    color: #fff
}

.sr-widget .sr-matclineups-teams .sr-tab.sr-active .sr-lineups-header-home {
    background: #fff;
    color: #000
}

.sr-widget .sr-matclineups-teams .sr-tab.sr-active .sr-lineups-header-away {
    background: #fff;
    color: #000
}

.sr-promotion-div {
    background: #009688!important
}

.sr-widget .sr-tabs .sr-tab {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8)
}

.live-results {
    position: relative;
    margin: 1em 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    white-space: nowrap
}

.live-results.hidden {
    display: none
}

.live-results .title {
    position: relative;
    z-index: 2;
    font-size: .875em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 1em
}

.live-results .results {
    position: absolute;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    z-index: 1
}

.live-results .results .inner {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: canliskorlar 5000ms linear infinite
}

.live-results .results:hover .inner {
    animation-play-state: paused
}

@keyframes canliskorlar {
    0% {
        right: 0;
        transform: translateX(100%)
    }
    100% {
        right: 100%;
        transform: translateX(0)
    }
}

.live-results .results>div {
    font-size: .75em
}

.live-results .results .inner>div:not(:first-child) {
    margin-left: 2em
}

.inner .sportur {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: rgba(255, 255, 255, 0.3)
}

.live-score-match {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 1em;
    font-weight: 300
}

.single-turnuva {
    display: flex;
    flex-direction: row;
    align-items: center
}

.single-turnuva:not(:first-child) {
    margin-left: 1em
}

.live-score-match:not(:first-of-type) {
    padding-left: 1em;
    border-left: 1px solid rgba(255, 255, 255, 0.3)
}

.sportur .teams {
    color: #ac1a2f;
    margin-right: 1em
}

.score-point {
    font-weight: 400;
    filter: brightness(1.2)
}

.sporBaslik,
.turnuvaBaslik {
    text-transform: uppercase;
    margin-right: 1em;
    color: #fff;
    font-weight: 700
}

.turnuvaBaslik {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400
}

.score-goal {
    animation: scoregoal 1000ms linear infinite
}

@keyframes scoregoal {
    0%,
    100% {
        opacity: 1;
        color: #fff
    }
    50% {
        opacity: .5
    }
}

.next-match-splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px)
}

.next-match-splash>div {
    font-size: .875em;
    max-width: 360px
}

.close-splash {
    position: absolute;
    top: 2em;
    right: calc(50% - .5em);
    line-height: 1;
    width: 1.5em;
    height: 1.5em;
    cursor: pointer
}

.close-splash svg {
    width: 100%;
    color: #fff
}

.copyright-nlive {
    margin-top: 1em;
    text-align: center;
}

.copyright-nlive img {
    max-width: 100%;
}
