.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1230px;
    }
}

html {
    font-size: 20px;
}

body {
    font-size: 14px;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: #151515;
    color: white;
}

a,
.nav-link {
    transition: 0.3s;
    color: white;
    text-decoration: none;
}

a:hover,
a:focus,
.nav-link:hover,
.nav-link:focus {
    text-decoration: unset;
    color: #0FC298;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.color {
    color: #0FC298;
}

:root {
    --code-color: darkred;
    --code-bg-color: #aaaaaa;
    --code-font-size: 14px;
    --code-line-height: 1.4;
    --scroll-bar-color: #c5c5c5;
    --scroll-bar-bg-color: #f6f6f6;
}

pre {
    color: var(--code-color);
    font-size: var(--code-font-size);
    line-height: var(--code-line-height);
    background-color: var(--code-bg-color);
}

.code-block {
    max-height: 100px;
    overflow: auto;
    padding: 8px 7px 5px 15px;
    margin: 0px 0px 0px 0px;
    border-radius: 7px;
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-input-placeholder {
    /* Edge */
    color: #DCE4E3;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #DCE4E3;
}

::placeholder {
    color: #DCE4E3;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 0;
    height: 0;
}

*::-webkit-scrollbar-track {
    background: var(--scroll-bar-bg-color);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-bar-color);
    border-radius: 20px;
    border: 3px solid var(--scroll-bar-bg-color);
}

.btn {
    background: #272A32;
    border-radius: 12px;
    color: #898989;
    line-height: 24px;
    padding: 12px 40px;
    border: 0;
    font-size: 14px;
    transition: .2s;
    text-transform: capitalize;
    font-weight: 600;
}

.btn:hover,
.btn:focus {
    box-shadow: inset 3px 4px 25px rgba(0, 0, 0, 0.3);
    color: #898989;
}

.btn.active,
.btn.active:hover,
.btn.active:focus {
    color: #fff;
    background: #0FC298;
}

.group-button {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}


/* Header */

#header {
    background: linear-gradient(180deg, #143E34 0%, rgba(20, 62, 52, 0) 100%), #151515;
}

.navbar {
    padding: 20px 0;
}

.navbar-nav .nav-link {
    color: #898989;
    font-size: 16px;
    line-height: 24px;
    padding: 12px;
    text-transform: capitalize;
}

.navbar-nav {
    gap: 43px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #0FC298;
}

.navbar-nav .nav-link.active {
    font-weight: 700;
}

.login-link {
    font-size: 16px;
    color: #fff;
}

.login-link img {
    margin-left: 12px;
}


/* Body */

#main-content {
    padding-top: 28px;
}

section {
    padding-top: 60px;
}

.main-banner {
    padding: 0;
}

.top-banner {
    display: flex;
    gap: 12px;
    align-items: center;
}

.info-download h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
}

.info-download p {
    color: #DCE4E3;
}

.info-download a {
    font-weight: 700;
    display: flex;
    gap: 8px;
}

.hot-news {
    flex-direction: column;
    gap: 12px;
}

.news-list .item {
    background: #202020;
    border-radius: 12px;
    padding: 12px;
    gap: 7px;
    display: flex;
    align-items: center;
}

.news-thumb {
    border-radius: 12px;
    display: flex;
    overflow: hidden;
}

.news-time {
    color: #DCE4E3;
    font-weight: normal;
    margin-bottom: 4px;
}

.item-hot:not(.most) .news-time {
    display: none;
}

.most.item {
    display: block;
    padding: 0;
    position: relative;
}

.most .news-title {
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
    padding: 12px;
    margin: 0;
    font-weight: 600;
}

.most .news-thumb img {
    width: 100%;
    height: 167px;
}

.most .news-thumb {
    display: block;
}

.most .news-time,
.news-list-page .news-time {
    display: block;
}

.most .news-title {
    pointer-events: none;
}

.news-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    margin: 0;
    margin-left: 7px;
}

.news-title>a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-thumb img {
    border-radius: 12px;
}

.item-hot img {
    width: 80px;
}

.title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.title .sub-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #898989;
    text-transform: initial;
}

.title img {
    width: 24px;
}

.xitems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.xitems-grid>.xitem {
    position: relative;
    background: url(../images/bg-match.jpg) no-repeat;
    overflow: hidden;
    border-radius: 12px;
    text-align: center;
}

.xitem .xitem-header {
    display: block;
}

.xitem-header .xleague {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px 0px 10px 10px;
    display: inline-block;
    line-height: 28px;
    padding: 0 18px;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.match-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.badge-live {
    line-height: 28px;
    padding: 0 16px;
    text-transform: uppercase;
    background: #9C9C9C;
    color: #DCE4E3;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.badge-live.live {
    background-color: #FF5242;
    color: #fff;
}

.badge-live .dot {
    background: #DCE4E3;
    margin: 2px 5px 2px 0;
    float: left;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge-live .dot.blink {
    background: #fff;
}

.xitem-main {
    display: flex;
    padding: 0 10px;
}

.team-logo-img {
    max-width: 62px;
}

.team-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
}

.xitem-main .team {
    flex: 1;
}

.xinfo .time {
    margin-bottom: 12px;
}

.xinfo .time.live {
    color: #88D047;
}

.xinfo .time.end {
    color: #FF5242;
}

.xinfo .ts {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.nav.list-leagues_tab {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 44px;
    gap: unset;
}

.list-leagues_tab button {
    display: inline-block;
    text-align: center;
    background: transparent;
    border: 0;
    padding: 0;
    flex: 1;
}

.list-leagues_tab button:hover .img-league {
    background-color: #393939;
}

.list-leagues_tab button:hover span {
    color: #DCE4E3;
}

.list-leagues_tab button.active .img-league {
    border-color: #0FC298;
}

.list-leagues_tab button.active span {
    color: #fff;
}

.item-league .img-league {
    width: 80px;
    height: 80px;
    background-color: #202020;
    border: 2px solid transparent;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 16px;
}

.item-league img {
    vertical-align: middle;
}

.item-league span {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #898989;
}

.nav-tabs .nav-link {
    background: #202020;
    border-radius: 12px;
    min-width: 118px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #898989;
    padding: 12px 0;
    border: 0;
}

.nav-tabs {
    border: 0;
    gap: 16px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link:hover,
.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-item.show .nav-link:focus,
.nav-tabs .nav-link.active:focus {
    background: linear-gradient(90deg, #0E9172 0%, #0FA985 48.96%, #0E9072 100%);
    color: #fff;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    background: #393939;
    color: #fff;
}

.list-matchs_tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.choose-date {
    padding: 12px;
    color: #898989;
    gap: 7px;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    max-width: 150px;
    position: relative;
}

.choose-date input {
    background: transparent;
    border: 0;
    width: auto;
    color: inherit;
    cursor: pointer;
    padding: 0;
    padding-left: 30px;
    z-index: 2;
}

.choose-date input:focus {
    outline: none;
}

.choose-date img {
    position: absolute;
}

.group-matchs ul {
    background-color: #202020;
    border-radius: 12px;
    overflow: hidden;
}

.group-matchs ul li+li {
    border-top: 1px solid #535353;
}

.gm-match {
    padding: 16px;
}

.gm-match:hover {
    background-color: #393939;
}

.gm-match .left {
    display: flex;
    align-items: center;
    gap: 28px;
    position: absolute;
}

.gm-match .badge-live {
    margin: 0;
}

.gm-match .badge-live:not(.live) {
    background-color: #272A32;
    color: #898989;
}

.gm-match .badge-live:not(.live) .dot {
    background: #898989;
}

.gm-match .time {
    min-width: 70px;
    text-align: center;
    margin: 0;
}

.gm-match .xitem-main {
    gap: 12px;
}

.gm-match .xitem-main .xinfo {
    min-width: 96px;
    text-align: center;
}

.gm-match .xname {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.gm-match .team-away .xname {
    justify-content: flex-start;
}

.gm-match .team-name {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.gm-match .team-logo-img {
    width: 32px;
}

.gm-match .xinfo .ts {
    font-size: 16px;
}

.gm-match .num-link {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 12px;
    color: #898989;
    display: flex;
    align-items: center;
    gap: 8px;
}

.group-matchs .list+.list {
    margin-top: 52px;
}

.table_box {
    border-radius: 12px;
    background: #202020;
    overflow: hidden;
    margin-bottom: 16px;
}

.table {
    color: #fff;
    margin: 0;
}

th,
td {
    font-weight: normal;
}

.table>:not(caption)>*>* {
    border-bottom-width: 1px;
    box-shadow: none;
    border-color: #535353;
    padding: 8px;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}

.table>:not(:first-child) {
    border: 0;
}

.mb_-header {
    background: #3B2050;
    padding: 10px 12px;
}

.mb_-header .item-league {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.icon-24 img {
    width: 24px;
}

.icon-50 img {
    width: 50px;
}

.tld-name {
    max-width: 140px;
}

.tld-name>a {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
}

.tld-name>a .team-logo {
    display: inline-block;
    margin-right: 8px;
}

.tld-number {
    text-align: center;
}

tbody .tld-number {
    position: relative;
}

tbody .tld-number::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 100%;
    left: 0;
    top: 0;
}

.table tbody tr:hover {
    background-color: #393939;
}

.tld-number.c1::before {
    background: #0FC298;
}

.tld-number.c2::before {
    background: #0FC298;
    opacity: 0.5;
}

.tld-number.xh::before {
    background: #FF5242;
}

.tld-result {
    text-align: right;
    padding-right: 16px !important;
}

.table_box .load-more {
    display: block;
    text-align: center;
    line-height: 32px;
    color: #0FC298;
}

.table_box.laliga .mb_-header {
    background-color: #12336E;
}

.table_box.bundesliga .mb_-header {
    background-color: #A33430;
}

.vpl tbody .tld-number::before {
    display: none;
}

.vpl .top1 {
    background: url(../images/bg-vpl.png);
    border-radius: 12px;
    position: relative;
    height: 138px;
    display: flex;
    align-items: center;
    padding-left: 11px;
    padding-right: 24px;
    justify-content: space-between;
}

.vpl .tld-played>a {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: none;
}

.vpl .top1>img {
    position: absolute;
    bottom: 0;
    left: 28px;
}

.vpl .top1 .tld-played {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-direction: column;
}

.vpl .top1 .name {
    font-size: 16px;
    font-weight: 700;
}

.vpl .table>tbody>tr:last-child>*,
.full .table>tbody>tr:last-child>* {
    border: 0;
}

.box {
    background: #202020;
    border-radius: 12px;
    overflow: hidden;
}

.top-match_detail {
    text-align: center;
    margin-bottom: 48px;
}

.top-match_detail .xitem-header .xleague {
    padding: 0 26px;
    line-height: 32px;
    font-size: 14px;
    text-transform: uppercase;
}

.top-match_detail .xitem-main {
    gap: 32px;
    margin-bottom: 24px;
}

.top-match_detail .xinfo {
    min-width: 200px;
}

.top-match_detail .team-logo-img {
    max-width: 80px;
}

.top-match_detail .team {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-match_detail .team.team-home {
    flex-direction: row-reverse;
}

.top-match_detail .team-name {
    font-size: 18px;
}

.top-match_detail .xinfo .ts {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.top-match_detail .xinfo .ts>span {
    min-width: 80px;
    display: inline-block;
}

.top-match_detail .xinfo .time {
    margin: 0;
}

.top-match_detail .xitem-bottom {
    border-top: 1px solid #535353;
    padding: 16px 0;
}

.top-match_detail .item-info {
    display: flex;
    gap: 52px;
    color: #898989;
    justify-content: center;
}

.top-match_detail .item-info img {
    margin-right: 10px;
}

.item-info .ii-04 img {
    filter: brightness(.5);
}

.main-match-play {
    margin-bottom: 60px;
}

#match-link .link-detail {
    height: 110px;
}

#match-link .link-detail .accordion,
.link-detail .choose.show,
.link-detail .choose.collapsing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.link-detail a {
    background: #343434;
    border-radius: 10px;
    font-size: 16px;
    padding: 4px 12px;
    border: 1px solid transparent;
    display: inline-block;
}

.link-detail .l-link:hover,
.link-detail .l-link:focus {
    color: #898989;
}

.link-detail .l-link[aria-expanded="true"] {
    border-color: #0FC298;
    color: #0FC298;
}

.link-detail .choose {
    margin-top: 12px;
}

.link-detail .choose a {
    display: block;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: #E5B414;
    text-transform: uppercase;
}

.link-detail .choose a.hd {
    color: #36CDF1;
}

#match-menu {
    margin-bottom: 36px;
}

#match-link .table>:not(caption)>*>* {
    padding: 16px 20px;
}

#match-link .table thead tr th {
    color: #898989;
    font-size: 14px;
}

#match-link .table tbody tr:last-child th,
#match-link .table tbody tr:last-child td {
    border: 0;
}

tbody .link-channel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-views {
    color: #898989;
}

.link-views img,
.link-views span {
    vertical-align: middle;
}

.link-views img {
    margin-right: 8px;
}

.top-stat {
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #535353;
}

.top-stat .team {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-stat .team.team-away {
    flex-direction: row-reverse;
}

.top-stat .team-logo-img {
    max-width: 80px;
}

.top-stat .team-name {
    font-size: 18px;
}

.table-stat>div {
    padding: 28px;
    text-align: center;
}

.table-stat .progress {
    height: 2px;
    margin: 0 64px;
    position: relative;
    overflow: visible;
    background: #03438E;
}

.table-stat .stat {
    display: block;
    margin-bottom: 12px;
}

.progress .stat-result.away {
    left: unset;
    right: -64px;
}

.progress-bar {
    background: #C11B1F;
}

.stat-result {
    position: absolute;
    left: -64px;
    min-width: 52px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hth-top {
    display: flex;
    gap: 32px;
    padding: 20px 0 24px;
    border-bottom: 1px solid #535353;
}

.w-72 {
    max-width: 72px;
}

.hth-param {
    display: flex;
    gap: 60px;
}

.hth-param>span {
    background-color: #C11B1F;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hth-param>span.draw {
    background-color: #019673;
}

.hth-param>span.away-win {
    background-color: #03438E;
}

.hth-param>span strong {
    display: block;
    font-size: 16px;
}

.hth-history li+li {
    border-top: 1px solid #535353;
}

.hth-history .gm-match .xitem-main {
    flex: 1;
}

.tournament {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;
    min-width: 140px;
    background-color: #0F84A0;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.tournament.pl {
    background-color: #3B2050;
}

.tournament img {
    width: 20px;
}

.hth-date {
    color: #DCE4E3;
    min-width: 120px;
    text-align: right;
    min-width: 140px;
}

.match-lastest .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.match-lastest .list ul li+li {
    border-top: 1px solid #535353;
}

.match-lastest .gm-match .team-name {
    font-size: 14px;
}

.match-lastest .gm-match .xitem-main .xinfo {
    min-width: 80px;
}

.match-lastest .gm-match .xitem-main {
    gap: unset;
    padding: 0;
    align-items: center;
    flex-direction: row;
}

.pagination {
    align-items: center;
    justify-content: flex-end;
    margin-top: 16px;
}

.page-link {
    background: transparent !important;
    border: 0;
    padding: 0;
    width: 24px;
    color: #fff !important;
    font-size: 16px;
    text-align: center;
}

.prev .page-link img {
    transform: rotate(180deg);
}

.news-list-page {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.news-list-page .item {
    display: block;
    padding: 0;
    position: relative;
}

.news-list-page .news-thumb img {
    width: 100%;
}

.news-list-page .news-title {
    position: absolute;
    height: 80%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
    padding: 16px;
    margin: 0;
    font-weight: 600;
    transition: .3s;
    pointer-events: none;
}

.full .tld-number {
    text-align: center;
    padding-left: 16px !important;
}

.table_box tbody tr.active {
    background: #4B4B4B;
}

#main-content {
    padding-bottom: 60px;
}

#lineup-tab,
#match-lastest-tab,
#score-rate-tab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.nav-tabs.lineup .nav-link {
    background: transparent;
    color: #898989;
    padding: 8px 12px;
    border-bottom: 1px solid #DCE4E3;
    border-radius: 0;
}

.nav-tabs.lineup .nav-link.active,
.nav-tabs.lineup .nav-link:focus,
.nav-tabs.lineup .nav-link:hover {
    color: #fff;
    font-weight: 600;
    border-color: #0FC298;
}

.lineup-list {
    padding: 16px;
    box-shadow: inset 20px 21px 50px rgba(0, 0, 0, 0.25);
    background: url(../images/bg-lineup.png) no-repeat;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    font-size: 12px;
    line-height: 20px;
}

.coach {
    font-size: 12px;
    line-height: 20px;
    padding: 12px 16px;
}

.ll-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.ll-row .player {
    cursor: pointer;
    position: relative;
    flex: 1;
}

.player .name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.player .name span {
    width: 28px;
    line-height: 28px;
    text-align: center;
    background: #C11B1F;
    border-radius: 50%;
    display: inline-block;
}

#team_away .coach {
    text-align: right;
}

.away .player .name span {
    background: #034694;
}

.modal-content {
    max-width: 292px;
}

.modal-header {
    flex-direction: column;
    border: 0;
    gap: 10px;
    font-size: 18px;
    padding: 18px 0 12px;
}

.modal-body {
    padding: 0 36px 25px;
}

.checkbox {
    font-size: 16px;
    position: relative;
    padding-left: 28px;
}

.checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
}

.checkbox span {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    pointer-events: none;
}

.checkbox input[type=checkbox]:checked~span {
    color: #FFFFFF;
    background: #0FC298 url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTIgOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgPHBhdGggZD0iTTQuNTc1IDguOTc3cy0uNDA0LS4wMDctLjUzNi0uMTY1TC4wNTcgNS42NGwuODI5LTEuMjI3TDQuNDcgNy4yNjggMTAuOTIxLjA4NmwuOTIzIDEuMTAzLTYuODYzIDcuNjRjLS4xMzQtLjAwMy0uNDA2LjE0OC0uNDA2LjE0OHoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPg0KPC9zdmc+) 50% 50% no-repeat;
    border-color: #0FC298;
}

.forgot-pass {
    font-weight: 600;
}

#playerModal .modal-content {
    max-width: 408px;
    height: 545px;
    display: block;
    overflow: hidden;
}

.bginfo-player {
    background: url(../images/b.saka.png) no-repeat;
    background-position: bottom;
    height: 100%;
    background-color: rgba(21, 21, 21, 0.9);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bginfo-player::before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
}

.topinfo-player {
    flex: 1;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.topinfo-player .pos {
    color: #FF5242;
    font-size: 20px;
    font-weight: bold;
}

.bginfo-player .modal-body {
    flex: unset;
    margin: 24px 12px;
    border-radius: 12px;
    background: rgba(21, 21, 21, 0.9);
    padding: 12px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 300;
}

.bginfo-player .modal-body span {
    font-weight: 600;
}

.p-minus span {
    color: #88D047;
}

.p-param {
    display: flex;
    justify-content: space-between;
}

.score-table {
    background: url(../images/bg-score.png) no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 410px;
    padding: 35px 25px 0;
}

.score-list {
    display: flex;
    justify-content: space-around;
}

.score-list .ll-row {
    flex-direction: column;
}

.score-list .ll-row .player {
    flex: unset;
}

.player .rate {
    background: #CEA316;
    border-radius: 12px;
    width: 48px;
    text-align: center;
    font-size: 12px;
    line-height: 28px;
    position: absolute;
    right: -20px;
    top: -10px;
}

.player .rate.best {
    background: #19B3D8;
    width: 53px;
}

.player .rate.xs {
    background: #64B31C;
}

.player .rate.bad {
    background: #FF5242;
}

.player .rate img {
    vertical-align: sub;
}

.no-link {
    min-height: 300px;
    flex-direction: column;
}

.no-link .title {
    margin: 0;
    font-size: 24px;
    line-height: 32px;
}

.no-link span {
    color: #898989;
    font-size: 16px;
}

.avatar-channel {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar-channel .name {
    font-size: 18px;
    font-weight: 700;
}

h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.inner-content .tld-name {
    max-width: 100%;
}

.inner-content .table>:not(caption)>*>*:not(.tld-name) {
    min-width: 50px;
    text-align: center;
}

.form-group {
    margin-bottom: 32px;
    position: relative;
}

.form-control {
    background: #202020;
    border-color: transparent;
    border-radius: 12px;
    padding: 16px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #DCE4E3;
}

.form-control:focus {
    background: #202020;
    box-shadow: none;
    border-color: transparent;
    color: #DCE4E3;
}

.form-label {
    margin-bottom: 12px;
}

.btn-showoff {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.avatar-user .title {
    font-size: 18px;
    padding: 16px 24px;
    margin: 0;
    border-bottom: 1px solid #535353;
}

.avatar-user .avatar {
    padding: 20px 24px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
}

.avatar-user .avatar .img {
    width: 60px;
    height: 60px;
    background-color: #272A32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-change .btn {
    width: 100%;
    padding: 16px
}

.group-change .change-pass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 60px;
}

.group-change .logout {
    font-size: 16px;
}

.logout img {
    transition: .2s;
}

.logout:hover img,
.logout:focus img {
    filter: brightness(2);
}

.form-otp .form-group {
    display: flex;
    gap: 16px;
}

.input-otp {
    opacity: 0.9;
    width: 74px;
    height: 74px;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.input-otp:focus {
    color: #0FC298;
    border-color: #0FC298;
}

.time-otp {
    margin: 0;
    color: #898989;
}

.time-otp span {
    font-weight: 600;
    color: #fff;
}

.top-hot-news .top-banner {
    gap: 12px;
}

.top-ads img {
    border-radius: 8px;
}

.top-hot-news .hot-news {
    display: flex;
}

.big-hot-new .news-thumb img {
    height: auto;
}

.big-hot-new .news-title {
    padding: 28px 36px;
}

.big-hot-new .news-title>a {
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}

.new-info {
    display: flex;
    gap: 32px;
    color: #898989;
    justify-content: space-between;
}

.new-info a {
    color: #DCE4E3;
}

.new-lastest {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.new-lastest .news-thumb {
    border-radius: 0;
}

.new-lastest .news-thumb img {
    border-radius: 12px 12px 0px 0px;
}

.item-new .news-detail {
    padding: 20px 16px;
    background-color: #202020;
    border-radius: 0 0 12px 12px;
}

.new-info .news-time {
    display: block;
    margin: 0;
    color: inherit;
}

.news-detail .news-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 16px 0 0;
    pointer-events: all;
}

.description {
    font-size: 16px;
    color: #DCE4E3;
    margin-top: 12px;
}

.news-agg .pagination {
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.news-list .old .item {
    margin-bottom: 16px;
}

.item-new:not(.news-big) .news-detail .news-title {
    margin-top: 12px;
}

.item-new:not(.news-big) .new-info {
    gap: 15px;
    font-size: 12px;
}

.full-content {
    margin-top: -40px;
    z-index: 2;
    position: relative;
}

.full-content h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 24px;
}

.new-detail-img::before {
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
    content: '';
    width: 100%;
    height: 200px;
    left: 0;
    position: absolute;
    bottom: 0;
}

.full-content .new-info {
    margin-bottom: 36px;
}

.content h4 {
    font-size: 16px;
    line-height: 24px;
}

.content img {
    margin: 32px 0;
}

.s-link {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    background-color: #202020;
    border-radius: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
}

.s-link .link-detail {
    width: 100%;
    padding: 16px 12px;
    border-top: 1px solid #535353;
}

.s-link .link-views {
    margin-right: auto;
}

.s-link .link-channel {
    padding-left: 12px;
}

.s-link .link-like {
    padding-right: 12px;
}

.bottom-content {
    margin-top: 60px;
}

.author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author .wrapper {
    gap: 14px;
}

.author .wrapper span {
    color: #DCE4E3;
}

.name-author {
    font-size: 16px;
    font-weight: 500;
}

.info-author {
    display: flex;
    gap: 44px;
    align-items: center;
}

.intro p {
    margin: 0;
    font-style: italic;
}

.social-share ul a {
    width: 32px;
    line-height: 32px;
    text-align: center;
    display: block;
}


/* Footer */

.footer-content {
    border-radius: 12px;
    background: #202020;
    padding: 40px;
    padding-right: 160px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-content .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.f-menu {
    display: flex;
    gap: 30px;
}

.f-menu a {
    color: #DCE4E3;
    font-size: 16px;
    font-weight: 500;
}

.f-menu a:hover,
.f-menu a.active {
    color: #0FC298;
}

.f-right span {
    margin-bottom: 16px;
    display: block;
}

.download-app {
    display: flex;
    gap: 35px;
}


/*  Mobile */

.offcanvas-start {
    background-color: #151515;
    width: 223px;
}

.offcanvas-body {
    padding: 16px;
    padding-top: 100px;
}

.offcanvas-start .list-league {
    display: block;
    margin: 0;
}

.offcanvas .item-league .img-league {
    width: auto;
    height: auto;
    background-color: transparent;
    margin: 0;
    margin-right: 8px;
}

.offcanvas .item-league span {
    display: inline-block;
}

.offcanvas .item-league img {
    max-width: 24px;
}

.offcanvas .list-league li {
    max-width: 100%;
    margin-bottom: 24px;
    display: block;
    text-align: left;
}

.offcanvas .list-league li a {
    display: block;
}

.footer-mobile {
    background-color: #202020;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0px 0px;
    z-index: 99;
}

.footer-mobile a {
    color: #898989;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-mobile a::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 2px;
}

.footer-mobile img {
    width: 20px;
    filter: brightness(.5);
}

.footer-mobile .logo {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
}

.footer-mobile .active img {
    filter: brightness(1);
}

.footer-mobile .active a {
    color: #fff;
}

.footer-mobile .active a::after {
    background-color: #0FC298;
}

.table-responsive table {
    min-width: max-content;
}

.register-mobile {
    color: #898989;
}

.register-mobile a {
    font-weight: 600;
}