
.match__info-view {
    /* grid-area: score; */
}

.match-section .sub-heading.-m{
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 124%;
}

.game-one-vs-one {
    margin: 0 0 30px 0;
    padding: 30px;
    border: 1px solid #c92020;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game__heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0;
}

.game__heading .page-heading{
    margin: 0;
}

.game__titlebox{
    display: flex;
    align-items: center;
    gap: 12px;
}
.game__logo{
    width: 40px;
    height:40px;
    border-radius: 2px;
    object-fit: cover;
}
.game__contacts{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.game__card {
    /* box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.07); */
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.game__card.-top{
    padding-bottom: 4px;
}

.game__card.-middle{
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 16px;
}

.game__card:hover .game__card-edit {
    display: block;
}

.game__card-edit {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    padding: 5px;
}

.match__info {
    display: grid;
    /* grid-template-areas:
            "player-1 table player-2"
            "player-name-1 score player-name-2"; */
    /* grid-template-areas:
            "player-1 score player-2"
            "player-name-1 table player-name-2"; */

    grid-template-areas:
            "a1 b1 c1"
            "a2 b2 c2"
            "a3 b3 c3";
    grid-template-columns: minmax(0, 1fr) 370px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-gap: 16px 30px;
}

/* .match__info-player-1 {
    grid-area: player-1;
}

.match__info-player-2 {
    grid-area: player-2;
} */

.match__info-player__name-1 {
    /* grid-area: player-name-1; */
    grid-area: a1;
}

.match__info-player__name-2 {
    /* grid-area: player-name-2; */
    grid-area: c1;
}

.match__info-player__image-1 {
    /* grid-area: player-1; */
    grid-area: a2;
}
.player-1-stat-toggle-button {
    grid-area: a3;
}
.player-2-stat-toggle-button {
    grid-area: c3;
}
.match-stat-toggle-button{
    grid-area: b3;
}

.match__info-view{
    grid-area: b2;
}

.match__info-player__image-2 {
    grid-area: c2;
}

.match__info-player {
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    margin: auto;
    min-width: 0;
    text-align: center;
}

.match__info-player.-team {
    /*flex-direction: row;*/
    justify-content: space-around;
    height: 100%;
}

.match__info-player__line {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    text-decoration: none;
    padding: 10px 0;
}

.match__info-player__image{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap:12px;
}

.match__info-player__imgs {
    display: flex;
    gap: 8px;
    text-decoration: none;
    align-items: center;
    justify-content: center;   
}
.match__info-player__imgs.-grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.match__info-player__imgs.-grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.match__info-player__imgs .match__player__img{
    width: 100%;
    aspect-ratio: 78/104;
    height: unset;
}

.match__player__img{
    object-fit: cover;
    border-radius: 6px;
}

.match__info-player__img{
    /* width: 270px; */
    width: 100%;
    height:356px;
    border-radius: 6px;
    object-fit: cover;

    aspect-ratio: 270 / 356;
    height: unset;
}

.match__info-player__subnames{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.match__info-player__subname{
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
    padding: 12px;
    text-decoration: none;
    background: #F5F5F5;
}

.match__info-player__name {
    margin: auto;
    padding-bottom: 12px;
    /* flex-grow: 1; */
    /* margin-bottom: 12px; */
    text-decoration: none;
    text-align: center;
    overflow: auto;
    max-width: 100%;
    width: 100%;

    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.match__info-stats {
    /* grid-area: table; */
    padding-top: 8px;
    border: 1px solid #EEEEEE;
    background: #ffffff;
}

.match__info-stats-inner{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.match__info-stats-label{
    margin-bottom: 16px;
    font-family: 'Opinion Pro';
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0%;
    text-align: center;
}

.match__info-competitions{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.match__info-table {
    width: 100%;
    border-collapse: collapse;
}

.match__info-table.-embedded-in-border{
    width: calc(100% + 2px);
    margin: -1px;
}


.match__info-table td, .match__info-table th {
    text-align: center;
    padding: 12px 5px;
    font-size: 14px;
}

.match__info-table td {
    border: 1px solid #EEEEEE;
}

.match__info-table th {
    border-left: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
    background: #EEEEEE;
}

.match__info-notification {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.match__info-notification-link {
    background-color: #e9e9ff;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    display: inline-block;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    overflow-wrap: anywhere;
}

.match__info-notification-link:hover {
    background-color: #d0d0ff;
}

.match__info-notification-notice {
    display: none;
    font-size: 0.9rem;
    color: green;
    margin-top: 10px;
}

.match__info-desc {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    background: #FF2424;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding: 10px;
    border: 2px solid #FF2424;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-score {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height:100%;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 6px 12px 0 #7777771A;
}

.info-score__title {
    margin-bottom: 4px;
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0%;
    text-align: center;
    color: #888888;
}

.info-score__line + .info-score__line {
    margin-top: 16px;
}

.info-score__legs {
    font-size: 60px;
    font-weight: 800;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Opinion Pro', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 124%;
    letter-spacing: 0%;
    text-align: center;
}

.info-score__legs-first {
    visibility: visible;
    width: 4px;
    height: 4px;
    background: #096724;
    border-radius: 50%;
}

.info-score__legs__separator{
    padding: 0 8px;
}

.info-score__legs-first:first-child {
    margin-right: 4px;
}

.info-score__legs-first:last-child {
    margin-left: 4px;
}

.info-score__score {
    white-space: nowrap;
    display: flex;
    align-items: flex-end;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
}

.info-score__score.-big {
    font-size: 42px;
}

.info-score__winner {
    font-weight: bold;
}

.info-score__score-wrap {
    position: relative;
    display: flex;
    align-items: center;
    font-family: Opinion Pro;
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

.info-score__score-lens{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 60px;
    border-radius: 2px;
    box-shadow: inset 0 0 8px 0#0000001A;
    overflow: hidden;
    background: #F5F5F5;
}

.info-score__score__separator{
    /* display: flex;
    align-items: center;
    justify-content: center; */
    height: 100%;
    padding: 0 8px;
}

.info-score__score.-small .info-score__score-lens{
    min-height: 32px;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
}

.info-score__score_play {
    position: relative;
}

.info-score__score_play:after {
    content: '';
    margin-top: 0;
    height: 2px;
    width: 100%;
    background: #FF2424;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.info-score__score-current {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* background: #F5F5F5; */
    /* border: 1px solid #D7D7D7; */
    box-sizing: border-box;
    border-radius: 5px;
    min-width: 61px;
    min-height: 40px;
    padding: 7px 12px;
    font-size: 21px;

    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #333333;

    border-radius: 2px;

    overflow: hidden;
}

.info-score__score-current::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #E0E0E0;
}

.info-score__score-current:first-child {
    left: 0;
    /* top: 50%; */
    bottom: 0;
    /* transform: translate(calc(-100% - 20px), -50%); */
    transform: translate(calc(-100% - 8px));
}

.info-score__score-current:last-child {
    right: 0;
    /* top: 50%; */
    bottom: 0;
    /* transform: translate(calc(100% + 20px), -50%); */
    transform: translate(calc(100% + 8px));
}

.info-score__average{
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #888888;
}
.info-score__average__separator{
    padding: 0 8px;
}

.info-score__darts {
    /* font-size: 32px; */
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0%;

    color: #333333;
}

.info-score__darts__image{
    width: 40px;
    height:40px;
}

.info-score__darts.-small {
    font-size: 16px;
}

.info-score__darts span{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 24px;
}

.info-score__table {
    margin-top: 10px;
    width: 100%;
    background: none;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
}

.info-score__table td {
    border-bottom: 1px solid #ccc;
}

.info-score__td {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 30px;
}

.info-score__td.-num{
    display: flex;
    align-items: center;
    justify-content: center;

    /* margin-bottom: 8px; */
    margin: 4px 0;
    min-width: 56px;
    min-height: 32px;
    
    font-family: 'Opinion Pro', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 148%;
    
    border-radius: 2px;
    background: #F5F5F5;
    box-shadow: inset 0 0 8px 0 #0000001A;
}

.match__stats {
    position: relative;
    display: grid;
    grid-template-areas: "stats-1 video stats-2";
    grid-template-columns: minmax(0, 1fr) 370px minmax(0, 1fr);
    grid-gap: 30px;
    background: #F5F5F5;
    overflow: hidden;
}

.match__stats > * {
    position: relative;
    z-index: 1;
}

.match__info,
.match__stats{
    margin: 0 auto;
    width: 1038px;
}

.match__stats-ab-bg{
    position: absolute;
    width: 100%;
    height:100%;
    z-index: 0;
}
.match__stats-ab-bg svg{
    margin-bottom: 50px;
}

.match__stats-player{
    display: table;
    border-collapse: collapse;
    width: 100%;
    /* background: #ffffff; */
}

.match__stats-player-1 {
    grid-area: stats-1;
}

.match__stats-player-2 {
    grid-area: stats-2;
}

.match__stats-player__line {
    /* display: flex; */
    /* justify-content: space-between; */
    display: table-row;
    background: #fff;
}

.match__stats-player__line + .match__stats-player__line {
    margin-top: 20px;
}
.match__stats-player__label,
.match__stats-player__value
{
    display: table-cell;
    border: 1px solid #EEEEEE;
    padding: 5px 12px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;

    vertical-align: middle;
}

.match__stats-player__value {
    /* font-weight: bold; */
    white-space: nowrap;
    text-align: center;
}

.match__stats-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-area: video;
}

.match__stats-content__video {
    margin-bottom: 50px;
}

.match__stats-content__btn {
    background: #333333;
    width: 100%;
    font-weight: 800;
    text-transform: uppercase;
    padding: 21px;
    border: none;
    color: #fff;
    cursor: pointer;
}

.match__stats-content-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.match__stats-content-buttons .button{
    min-width: 279px;
}

.score_table{
    border-collapse: collapse;
    margin: 24px 0;
}
.score_table th {
    border-left: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
    background: #EEEEEE;
    font-size: 18px;

    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 148%;
}

.score_table td.-cell-padded{
    opacity: 0.3;
}

.score_table.-transposed{
    position: static;
}

.score_table.-transposed .p_name{
    position: sticky!important;
    left: 0;
    z-index: 9;
    min-height: 48px;
    height: 48px;
    padding: 0;
}

.score_table.-transposed .p_name_hidden{
    color:transparent;
    user-select: none;
}

.score_table.-transposed .p_name__inner{
    position: absolute;
    display: flex;
    align-items: center;
    height:100%;
    /* left: 12px; */
    padding-left: 12px;
    left: 0;
    top: 0;
    display: flex;
    gap: 20px;
    width: 100%;
    min-width: 300px;
}

.score_table.-transposed .p_name__inner.score_table__red-circle{
    /* padding-left: 28px; */
    padding-left: 30px;
}
.score_table.-transposed .score_table__red-circle:after{
    left: 6px;
}

.score_table .aside-header{
    position: sticky!important;
    left: 0;
    /* width: 100px; */
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    background: #F5F5F5;
    word-wrap: normal!important;
    z-index: 9;
}

.score_table th, .score_table td{
    padding: 0;
}
.score_table th, 
.score_table .score_table__subheader td{
    padding: 12px;
    min-height: 50px;
}

.score_table td{
    padding: 12px;
    min-height: 44px;
    line-height: 148%;
}

.score_table tr{
    border-bottom: none;
}

.score_table td{
    border: 1px solid #F5F5F5;
}

.score_table td{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;

    color: #333333
}

.score_table__subheader td{
    background: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 148%;
}
.score_table__subheader td.-separator{
    background: none;
}

.score_table th:first-child {
    padding-left: 30px;
}

.score_table th:last-child {
    padding-right: 30px;
}

.score_table td, .score_table th {
    text-align: center;
    /* font-weight: normal; */
    position: relative;
}

.score_table__red-circle:after {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #096724;
    border-radius: 50%;
    content: '';
    top: calc(50% - 4px)
}

.p1_name,
.p2_name{
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p1_name.score_table__red-circle:after {
    left: 13px;
}

.p2_name.score_table__red-circle:after {
    /* right: 13px; */
}

.score_table__score {
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
    line-height: 148%;
}

.score_table__winner {
    text-decoration: underline;
}

.score_table .sector{
    width: 36px;
    margin: auto;
}
.score_table .sector.-empty{
    display: none;
}

.table__shot-sector {
    border: 1px solid #333333;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    position: relative;
    padding-top: 5px;
    box-sizing: border-box;
    font-weight: bold;
}

.table__shot-sector-m {
    position: absolute;
    bottom: -9px;
    right: -9px;;
    font-size: 13px;
}

.p1score {
    margin-left: 10px;
}

.p2score {
    margin-right: 10px;
}

.table__shot-sectors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
}

.table__shot-score {
    display: flex;
    align-items: center;
    justify-content: center;
}

.table__shot-score .svg-icon{
    width: 20px;
    height:20px;
    margin-right: 8px;
    color: #FF2424;
}


.match-bot {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.match-bot__card {
    display: inline-block;
    width: 100%;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.match-bot__card:hover {
    background-color: #eee;
    border-color: #888;
}

.match-bot__input {
    display: none;
}

.match-bot__input:checked + .match-bot__card {
    background-color: #ff4d4d;
    color: #fff;
    border-color: #ff1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.match__info-teams {
    display: flex;
    margin-top: 40px;
}
.match__info-teams .match__info-player__name {
    font-size: 18px;
}

.match__info-team {
    width: 50%;
}

.match__video {
    width: 100%;
    height: 100%;
    min-height: 300px;
    margin-bottom: 20px;
}

.match__video iframe {
    width: 100%;
    height: 100%;
}

.table__total_score {
    font-size: 32px;
    font-weight: bold;
}

.player-header{
    /* display: flex; */
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 2px 0;
}

.player-header__name{
    font-family: 'Opinion Pro';
    font-weight: 700;
    font-size: 16px;
    line-height: 128%;
    color: #333333;
}

.player-header__image{
    width: 36px;
    height:36px;
    flex-shrink: 0;
}

.player-header__image img{
    width: 100%;
    height:100%;
    object-fit: cover;
}


.games-list{
    display: flex;
    flex-direction: column;
}

.games-list-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #E0E0E0;
}

.games-list-item__image{
    width: 40px;
    height:40px;
    flex-shrink: 0;
    align-self: flex-start;
}
.games-list-item__image img{
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 2.22px;
}

.games-list-item__summary{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 4px;
}

.games-list-item__title{
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    color: #333333;
    text-decoration: none;
}
.games-list-item__subtitle{
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #888888;
}

.games-list-item__subinfo{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.games-list-item__score{
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
}

.games-list-item__date{
    font-size: 14px;
    line-height: 140%;
    color: #888888;
}

.score-table-wrapper .button{
    width: 100%;
}


@media (min-width: 991px){
    .game-cricket .match__info{
        /* grid-template-areas:
            "player-1      score player-2" 
            "player-name-1 table player-name-2"
            "s1 table s2"; */
            grid-template-areas:
            "a1 b1 c1" 
            "a2 b2 c2"
            "a3 b2 c3"
            "a4 b4 c4";
      grid-template-columns: minmax(0, 1fr) 370px minmax(0, 1fr);
    }
    
    .game-cricket .match__info-player__name-1{
        grid-area: a1;
    }
    .game-cricket .match__info-player__image-1{
        grid-area: a2;
    }
    /* .game-cricket .match__info-player-1{
        grid-area: a1;
    } */
    .game-cricket .match__info-player__name-2{
        grid-area: c1;
    }
    .game-cricket .match__info-player__image-2{
        grid-area: c2;
    }
    
    .game-cricket .player-1-stat-toggle-button{
        grid-area: a3;
    }
    .game-cricket .player-2-stat-toggle-button{
        grid-area: c3;
    }
    .game-cricket .match-stat-toggle-button{
        grid-area: b4;
    }
    
    .game-cricket .match__info-view{
        /* grid-column-start: score; */
        /* grid-column-end: table; */
        grid-area: b2;
    }
}

@media (max-width: 991px) {

    .match__info, .match__stats {
        margin: 0 auto;
        width: unset;
    }
    .game__card{
        padding-left: 0;
        padding-right: 0;
    }

    .match__info-player__img{
        /* height: 206px; */
    }

    .match__info{
        /* grid-template-areas:
            "player-1 player-2"
            "player-name-1 player-name-2"
            "table table"
            "score score"; */

        grid-template-areas:
            "a1 c1"
            "a2 c2"
            "b2 b2"
            "score score";
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;
        grid-gap: 16px;
    }

    .match__info-player__name{
        font-size: 16px;
        line-height: 128%;
    }

    .match__stats-content-buttons{
        flex-direction: column;
        align-items: stretch;
    }
    .match__stats-content-buttons .button{
        width: 100%;
        min-width: unset;
    }
    .info-score__title{
        font-size: 16px;
        line-height: 128%;
    }
    .info-score__legs{
        font-size: 19px;
        line-height: 128%;
    }
    .info-score__legs-first{
        
    }
    .info-score__legs-first:first-child{
        margin-right: 4px;
    }
    .info-score__legs-first:last-child{
        margin-left: 4px;
    }
    .info-score__score-lens{
        font-size: 22px;
        line-height: 128%;
        min-height: 44px;
    }
    .info-score__score-current{
        font-size: 16px;
        line-height: 148%;
        min-width: 40px;
        padding: 4px;
    }
    .info-score__average{
        font-size: 16px;
        line-height: 128%;
    }
    .info-score__darts__image{
        width: 32px;
        height:32px;
    }
    .info-score__darts{
        font-size: 16px;
        line-height: 128%;
    }
    .info-score__darts span{
        min-height: 20px;
    }

    .button-stat-match{
        grid-area: button-match;
    }

    .button-stat-players{
        grid-area: button-players;
    }

    .match-info-stats{
        grid-area: stats-1;
    }

    .match__stats-player-1{
        grid-area: player-stats-1;
    }
    .match__stats-player-2{
        grid-area: player-stats-2;
    }
    .match__stats-player-2.is--active{
        margin-top: 26px;
    }
    .match__stats{
        grid-template-areas:
            "button-match"
            "stats-1"
            "button-players"
            "player-stats-1"
            "player-stats-2"
            "video"
            "video";
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto;
        grid-gap: 0;
    }

    .match__stats .toggler-plate{
        padding: 8px 0;
        background: #fff;
    }

    .score_table td, .score_table th{
        word-wrap: anywhere;
    }

    .games-list-item{
        gap: 8px;
    }
    .games-list-item__image{
        width: 20px;
        height:20px;
        align-self: flex-start;
    }
    .games-list-item__title{
        font-size: 14px;
        line-height: 140%;
    }
    .games-list-item__score{
        font-size: 14px;
        line-height: 140%;
    }
}

@media (max-width: 800px) {
    .match__info-teams {
        display: none;
    }
    /* .match__info {
        grid-template-areas:
            "player-1 player-2"
            "player-name-1 player-name-2"
            "table table"
            "score score";
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;
    } */

    /* .match__stats {
        grid-template-areas:
            "stats-1 stats-2"
            "video video";
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto;
    } */

    .match__info-player__line .match__info-player__name {
        font-size: 16px;
    }

    .match__info-player__name {
        font-size: 20px;
    }

    .match__info-player .match__info-player__img {
        max-width: 100%;
        width: 100%;
        /* height: auto; */
        margin: auto;
    }

    .match__info-stats .form__heading {
        margin-top: 15px;
        display: none;
        /*margin-bottom: 0px;*/
    }

    .game__heading{
        margin-bottom: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .game__heading .page-heading{
        margin: 0;
    }
}
