﻿* {
    margin: 0;
    padding: 0;
}

html, body {
    font-size: 16px;
    font-family: Arial;
    height: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.main_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 137px;
    min-height: calc(100% - 137px);
    width: auto;
}

/* #region header */

.header {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    background: #1e2024;
}

/* #region header_line_1 */

.header_wrap_line_1 {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 58px;
}

.header_line_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 1200px;
}

.header .logo p a {
    font-size: 28px;
    font-family: Verdana;
    font-style: oblique;
    font-weight: 600;
    text-decoration: none;
    color: #ffdc11;
    margin-left: 30px;
}

.feedback {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .feedback svg {
        margin-right: 11px;
    }

    .feedback .fb a {
        font-size: 9px;
        line-height: 1.2;
        color: #fff;
        text-decoration: none;
    }

    .feedback .gm a {
        font-size: 12px;
        color: #696969;
    }

    .feedback a:hover {
        color: #fff;
    }

.search {
    position: relative;
    display: flex;
    align-items: center;
}

.top_menu_language_link {
    margin-right: 17px;
    padding-left: 8px;
    text-decoration: none;
    font-size: 12px;
    color: #fff;
}

    .top_menu_language_link:after {
        content: '';
        margin-left: 10px;
        top: 10px;
        border-left: 4px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffdc11;
        position: relative;
    }

.modal_language_select_ul {
    list-style: none;
    position: absolute;
    top: 23px;
    padding: 2px 2px;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    z-index: 101;
    background-color: #fff;
    display: none;
}

    .modal_language_select_ul li {
        width: 48px;
        font-size: 12px;
    }

        .modal_language_select_ul li a {
            display: block;
            padding-left: 13px;
            line-height: 23px;
            -webkit-transition: 0.3s ease;
            -o-transition: 0.2s ease;
            -webkit-transition: 0.2s ease;
            transition: 0.2s ease;
            cursor: pointer;
            color: #1e2024;
            text-decoration: none;
            font-size: 0.9em;
        }

            .modal_language_select_ul li a:hover {
                background-color: #292c31;
                color: #ffdc11;
            }

/* #endregion header_line_1 */

/* #region header_line_2 */

.menu_search {
    display: none;
}

.header_wrap_line_2 {
    height: 35px;
    display: flex;
    width: 100%;
}

.header_left_indent_line_2 {
    min-width: 30px;
    width: calc((100% - 1200px)/2);
    -webkit-transform: skew(-26deg);
    -moz-transform: skew(-26deg);
    -o-transform: skew(-26deg);
    transform: skew(-26deg);
    background: #1e2024;
}

.header_right_indent_line_2 {
    min-width: 30px;
    width: calc((100% - 1200px)/2);
    background: #292c31;
}

.header_line_2 {
    display: flex;
    align-items: center;
    width: 1210px;
    margin-left: -10px;
    background: #292c31;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    font-size: 12px;
}

.wrap_menu_items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    font-size: 12px;
}

.menu_item a {
    text-decoration: none;
    padding-bottom: 3px;
    color: #e7552f;
    font-weight: bold;
}

.menu_item {
    /*    margin-left: 65px;*/
    padding: 7px 3px 7px 2px;
}

    .menu_item a:hover {
        color: #fff;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

a.active_menu_item {
    color: #fff;
    -webkit-box-shadow: -0.1px 2px 0.1px 0px #fcdd02;
    box-shadow: -0.1px 2px 0.1px 0px #fcdd02;
}

/* #endregion header_line_2 */

/* #region header_line_3 */

.header_wrap_line_3 {
    display: flex;
    justify-content: center;
    background-color: #292c31;
    height: 44px;
}

.header_line_3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    width: 1204px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.controls_L {
    display: flex;
    align-items: center;
}

    .controls_L button {
        box-sizing: border-box;
        background-color: #292c31;
        border: none;
        cursor: pointer;
        font-size: 16px;
        padding: 5px;
    }

        .controls_L button:hover {
            color: #222;
        }

        .controls_L button:focus {
            outline: none;
        }

.header_line_3 .controls_L button {
    box-sizing: border-box;
    position: absolute;
    z-index: 100;
    transform: rotate(90deg);
}

.header_line_3 .controls_L .left-button {
    left: 0px;
}

.header_line_3 .controls_L .right-button {
    right: 0px;
}

.left-button svg {
    width: 20px;
    height: 20px;
}

.right-button svg {
    width: 20px;
    height: 20px;
    transform: rotateZ(180deg );
}

.carousel {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 100%;
    width: fit-content;
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}

.modal_menu_filter {
    box-sizing: border-box;
    display: flex;
    height: 100%;
    width: fit-content;
    min-width: 100%;
    position: relative;
    justify-content: space-around;
    align-items: center;
}

.modal_menu_filter_item {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    box-sizing: border-box;
    width: 172px;
    flex-grow: 0;
    flex-shrink: 0;
}

    .modal_menu_filter_item > div {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        height: 25px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        box-sizing: border-box;
        width: fit-content;
    }

    .modal_menu_filter_item img {
        width: 18px;
        height: auto;
        padding-right: 10px;
        padding-left: 5px;
        fill: #FFF;
        opacity: 0.38;
        margin-bottom: 2px;
    }

        .modal_menu_filter_item img.active {
            display: none;
        }

    .modal_menu_filter_item:hover img.active {
        display: flex;
        opacity: 1;
    }

    .modal_menu_filter_item:hover img {
        display: none;
    }

    .modal_menu_filter_item > div p {
        font-size: 11.5px;
        color: white;
        text-transform: uppercase;
        margin-right: 8px;
        max-width: fit-content;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .modal_menu_filter_item > div a {
        position: absolute;
        width: 100%;
        height: 23px;
        z-index: 9;
    }

.button_filter {
    display: none;
}

/* #endregion header_line_3 */

/* #endregion header */

/* #region content */

.sport_stream {
    flex: 1 0 auto;
    position: relative;
}

.wrap_content {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.wrap_center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}

.wrapper_table {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 29px;
}

.wrap_sport {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 21px;
}

.title_sport {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.rectangle {
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background-color: #fcdd02;
    margin-right: 7px;
    margin-left: 20px;
}

img.icon_sport_viewer {
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 10px;
}

    img.icon_sport_viewer.index {
        margin-right: 7px;
        margin-left: 0px;
        margin-top: 0px;
    }

.title_sport p {
    text-transform: uppercase;
    opacity: 0.87;
    font-family: monospace;
    font-size: 19px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: inherit;
    color: #282d32;
    margin-left: 7px;
}

.wrap_champ {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.wrap_title_champ {
    position: relative;
    display: flex;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 36px;
}

.title_champ {
    position: absolute;
    min-width: 200px;
    max-width: 92%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 20px;
    border-radius: 1px;
    background-color: #fcdd02;
    margin-left: 20px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .title_champ p {
        opacity: 0.87;
        font-family: monospace;
        font-size: 12px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #282d32;
        padding-left: 12px;
        padding-right: 12px;
        text-transform: uppercase;
    }

.table_item {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-left: 20px;
    margin-bottom: 20px;
    width: calc(50% - 30px);
    height: 88px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

    .table_item:hover .left_block_table_item {
        background-color: #e7552f;
        -webkit-transition: background 0.2s;
        -o-transition: background 0.2s;
        transition: background 0.2s;
    }

.left_block_table_item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    height: 88px;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #282d32;
}

.left_top_table_item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 29px;
}

.table_item_look {
    position: relative;
    display: flex;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

    .table_item_look p {
        font-size: 16px;
        font-weight: bold;
        color: #e7552f;
        padding-right: 12px;
        padding-left: 12px;
    }

    .table_item_look svg {
        display: none;
        fill: #e7552f;
        fill-rule: evenodd;
        width: 13px;
    }

.table_item:hover .table_item_look svg {
    display: flex;
    fill: #FFF;
}

.table_item:hover .table_item_look p {
    color: #ffffff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.table_item a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.table_item_time {
    display: flex;
    padding-left: 11px;
    padding-top: 4px;
}

    .table_item_time svg {
        width: 21px;
    }

    .table_item_time p {
        opacity: 0.54;
        font-family: Roboto;
        font-size: 19px;
        font-weight: normal;
        font-stretch: condensed;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.42px;
        color: #ffffff;
        padding-left: 5px;
    }

.table_item_period {
    display: flex;
    color: goldenrod;
    padding-left: 12px;
    opacity: 0.9;
    font-family: Roboto;
    font-size: 12px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.25px;
    color: #ffffff;
    padding-bottom: 5px;
}

.stat_icon {
    width: 21px;
    position: relative;
    display: flex;
    padding-right: 8px;
}

    .stat_icon svg g {
        fill: rgb(252, 221, 2);
        fill-rule: nonzero;
    }

.wrap_sport .table_item:hover svg g {
    fill: #FFF;
}

.left_medium_table_item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 30px;
}

.left_bottom_table_item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 29px;
}

.table_item_title_liga {
    display: flex;
    align-items: center;
    height: 30px;
    padding-left: 16px;
}

    .table_item_title_liga p {
        color: #282d32;
        opacity: 0.38;
        font-size: 12px;
        font-weight: normal;
        text-transform: uppercase;
    }

.table_item_title_team {
    width: calc(100% - 270px);
    margin: auto;
    padding-left: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin-right: 4px;
}

    .table_item_title_team span {
        width: 225px;
        height: auto;
        color: #282d32;
        opacity: 0.87;
        line-height: 1.6;
        font-size: 16px;
        border-bottom: 1px dashed rgba(40, 45, 50, 0.34);
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

.right_block_table_item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 120px);
    height: 100%;
}

.table_item:hover .score_main,
.table_item:hover .score_period {
    color: #e7552f;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.right_top_block_table_item {
    height: 22px;
}

.wrap_team_score {
    display: flex;
    flex-direction: row;
    height: 66px;
}

/* #region вьювер */

.translation_sport {
    margin: 0 auto;
    width: calc(100% - 50px);
    display: flex;
}

    .translation_sport .table_item {
        display: flex;
        align-items: flex-end;
        position: relative;
        margin-bottom: 24px;
        margin-left: 0;
        width: 100%;
        height: 142px;
        border-radius: 4px;
        -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    }

.wrap_left {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    width: 41%;
    height: 137px;
}

.title_wrap_left {
    display: flex;
    position: absolute;
    align-items: center;
    left: 3px;
    top: 3px;
    width: 46%;
}

.wrap_sport_liga {
    display: flex;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.4;
    margin-top: 10px;
}

    .wrap_sport_liga p {
        color: #282d32;
        opacity: 0.87;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

        .wrap_sport_liga p + p {
            opacity: 0.54;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            display: flex;
        }

.team_wrap_left {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    margin-left: 15px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .team_wrap_left p, .team_wrap_right p {
        border-bottom: 1px dashed rgba(40, 45, 50, 0.34);
        color: #282d32;
        opacity: 0.96;
        font-size: 20px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: end;
        width: 100%;
    }

.team_wrap_right p {
    text-align: start;
}

.wrap_middle {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 18%;
    margin-bottom: 40px;
}

.wrap_middle_top {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    height: 40px;
}

    .wrap_middle_top p {
        background-color: #e7552f;
        border-radius: 2px;
        color: #ffffff;
        font-size: 15px;
        font-weight: bold;
        padding: 2px 7px 2px 7px;
    }

.wrap_middle_center {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 30px;
    font-weight: bold;
    color: #282d32;
    opacity: 0.87;
}

.score_main_left {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    padding-right: 4px;
    width: 50%;
}

.score_main_right {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    padding-left: 4px;
    width: 50%;
}

    .score_main_right p, .score_main_left p {
        padding: 7px 15px 7px 15px;
        border-radius: 2px;
        background-color: rgba(40, 45, 50, 0.08);
    }

.wrap_middle_bottom {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    width: 100%;
}

    .wrap_middle_bottom p {
        color: #282d32;
        opacity: 0.38;
        font-size: 15px;
    }

    .wrap_middle_bottom svg {
        padding-right: 5px;
        padding-bottom: 1px;
    }

.table_item_time_2 {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    padding-right: 4px;
}

.table_item_period_2 {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    padding-left: 4px;
}

p.item_score_set_2 {
    margin-left: 10px;
}

.match_details {
    display: none;
}

.match_details_svg {
    display: none;
}

.wrap_match_details {
    display: none;
}

.wrap_right {
    display: flex;
    position: relative;
    align-items: center;
    width: 41%;
    height: 137px;
    justify-content: flex-start;
}

.team_wrap_right {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-left: 5px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.dop_a {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

/* #region  тв/зона */

.wrap_videoCon .video_block {
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    /*    margin: 0 auto;*/
    /*    width: 800px;*/
    width: 850px;
    /*    padding: 8px;*/
    box-sizing: border-box;
}

.video_full {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    /*    background-color: rgba(0, 0, 0, 0.4);*/
}

.videopl {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.77);
    box-shadow: 0 1px 4px rgba(0,0,0,0.77);
}

.testvideo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.77);
    box-shadow: 0 1px 4px rgba(0,0,0,0.77);
}

.no_block_video {
    display: none;
}

.wrap_tvzone {
    margin: 0 auto;
    width: calc(100% - 50px);
    display: flex;
    height: 48px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    margin-bottom: 25px;
}

.button_play_broadcast {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #282d32;
    cursor: pointer;
}

.wrap_tvzone p {
    display: flex;
    align-items: center;
    padding-left: 16px;
    opacity: 0.9;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: -0.09px;
    color: #282d32;
}

.button_tvzone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 48px;
    right: 16px;
    position: absolute;
}

#button_1 {
    width: 64px;
    height: 48px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    #button_1 svg {
        position: absolute;
        width: 18px;
        opacity: 0.35;
        height: auto;
        stroke: #282d32;
    }

#button_2 {
    width: 64px;
    height: 48px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    #button_2 svg {
        position: absolute;
        width: 22px;
        opacity: 0.3;
        height: auto;
        fill: none;
        stroke: #282D32;
        stroke-miterlimit: 10;
    }

    #button_2:hover svg, #button_1:hover svg {
        opacity: 0.7;
    }

.selected {
    background-color: rgba(40, 45, 50, 0.03);
    border-top: 2px solid #fcdd02;
}

    .selected #button_1 svg, .selected #button_2 svg {
        opacity: 0.7;
    }

.wrap_videoCon {
    margin: 0 auto;
    width: calc(100% - 70px);
    display: flex;
    /*    background-color: rgba(40, 45, 50, 0.02);*/
    margin-top: -24px;
    /*    padding-bottom: 4px;*/
    margin-bottom: 25px;
    border-radius: 4px;
    justify-content: center;
    /*    align-items: center;*/
    position: relative;
    border-radius: 4px;
    /*    border: solid 1px #efeff0;*/
    background-color: #fbfbfb;
}

    .wrap_videoCon .testvideozone {
        position: relative;
        display: flex;
        width: 600px;
        height: 400px;
        margin-bottom: 40px;
        margin-top: 40px;
        -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.77);
        box-shadow: 0 1px 4px rgba(0,0,0,0.77);
        z-index: 20;
    }

/* #endregion  тв/зона */

/* #endregion вьювер */

/* #region sidebar */

.left_sidebar {
    display: flex;
    justify-content: center;
    position: relative;
    width: calc((100% - 1200px)/2);
    min-height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.right_sidebar {
    display: flex;
    justify-content: center;
    position: relative;
    width: calc((100% - 1200px)/2);
    min-height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* #endregion sidebar */

/* #region score */

.score {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    width: 270px;
    height: 66px;
    padding-right: 16px;
    padding-bottom: 2px;
}

.score_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #282d32;
    opacity: 0.87;
    font-size: 16px;
    font-weight: bold;
}

.score_main_top {
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background-color: rgba(40, 45, 50, 0.08);
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    margin-bottom: 2px;
}

.score_main_bottom {
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background-color: rgba(40, 45, 50, 0.08);
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    margin-top: 2px;
}

.score_period {
    display: flex;
    flex-direction: column;
    color: #959595;
}

.score_period_top {
    display: flex;
    padding-bottom: 2px;
}

.score_period_top_item {
    display: flex;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background-color: rgba(40, 45, 50, 0.08);
    justify-content: center;
    align-items: center;
}

.score_period_bottom {
    display: flex;
    padding-top: 2px;
}

.score_period_bottom_item {
    display: flex;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background-color: rgba(40, 45, 50, 0.08);
    justify-content: center;
    align-items: center;
}

/* #endregion score */

/* #region guide */

.wrap_guide {
    flex: 1 1;
    justify-content: center;
    padding: 42px 100px 42px 100px;
    margin: 0 auto;
}

.guide {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    text-align: justify;
}

.main_text, .main_text h1, .main_text h2, .main_text h3 {
    font-size: 16px;
    font-weight: bold;
    color: #282d32;
    opacity: 0.91;
    line-height: 1.45;
}

    .main_text a {
        font-size: 14px;
        color: #e7552f;
        position: relative;
        bottom: 1px;
    }

        .main_text a:hover {
            color: #696969;
        }

    .main_text h1 {
        text-align: center;
        margin-bottom: 30px;
    }

    .main_text .logo {
        color: #ffdc11;
        background-color: #292c31;
        padding: 3px;
        padding-right: 4.5px;
        border-radius: 2px;
        font-style: oblique;
    }

    .main_text h3 {
        text-indent: 47px;
        margin: 0px 0px 30px 0px;
    }

.how + ul, .what + ul {
    margin-left: 47px;
    margin-bottom: 15px;
    list-style-type: circle;
}

.details_label {
    margin-top: 20px;
    text-indent: 47px;
    font-size: 16px;
    font-weight: bold;
    color: #e7552f;
    opacity: 0.91;
    line-height: 1.8;
    background-color: #eeeeef;
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 20px;
}

.wrap_details, #go_details {
    display: none;
}

    #go_details:checked ~ .wrap_details {
        display: flex;
        flex-direction: column;
    }

.details_label::after {
    content: '\276F';
    font-size: 14px;
    padding-left: 12px;
    color: #282d32;
    opacity: 0.91;
    font-weight: bold;
}

#go_details:checked + .details_label::after {
    display: none;
}

.wrap_details + p {
    font-size: 16px;
    font-weight: bold;
    color: #282d32;
    opacity: 0.91;
    line-height: 1.45;
    text-align: end;
    margin-top: 40px;
}

.wrap_details p {
    text-indent: 47px;
    font-size: 16px;
    color: #282d32;
    line-height: 1.45;
}

    .wrap_details p.italic {
        font-style: italic;
    }

.rtmp_label, .rtsp_label, .use_label, .install_label {
    display: flex;
    position: relative;
    cursor: pointer;
    margin-left: 47px;
    margin-top: 10px;
    border-bottom: 1.5px solid #fff;
    padding: 3px;
    padding-left: 13px;
    width: fit-content;
}

    .rtmp_label::before, .rtsp_label::before, .use_label::before, .install_label::before {
        content: '\2713';
        position: absolute;
        margin-right: 12px;
        margin-top: -2.5px;
        width: 0;
        left: -5px;
        border-bottom: 1.5px solid #696969;
        padding-bottom: 2px;
    }

    .rtmp_label::after, .rtsp_label::after, .use_label::after, .install_label::after {
        content: '\2026';
        margin-left: 8px;
        background-color: #eeeeef;
        border-radius: 2px;
        width: 18px;
        padding-left: 4px;
    }

    .rtmp_label:hover::before, .rtsp_label:hover::before, .use_label:hover::before, .install_label:hover::before {
        width: 100%;
        transition: all 0.5s ease;
    }

    .rtmp_label:hover::after, .rtsp_label:hover::after, .use_label:hover::after, .install_label:hover::after {
        background-color: #fff;
        transition: all 0.5s ease;
    }

.wrap_rtmp, #go_rtmp, .wrap_rtsp, #go_rtsp, .wrap_install, #go_install, .wrap_use, #go_use {
    display: none;
}

    #go_rtmp:checked ~ .wrap_rtmp, #go_rtsp:checked ~ .wrap_rtsp, #go_install:checked ~ .wrap_install, #go_use:checked ~ .wrap_use {
        display: flex;
        flex-direction: column;
    }

    #go_rtmp:checked + .rtmp_label::after, #go_rtsp:checked + .rtsp_label::after, #go_install:checked + .install_label::after, #go_use:checked + .use_label::after {
        display: none;
    }

    #go_rtmp:checked + .rtmp_label, #go_rtsp:checked + .rtsp_label, #go_install:checked + .install_label, #go_use:checked + .use_label {
        color: #282d32;
        border-bottom: 1.5px solid #696969;
        width: fit-content;
    }

    #go_rtmp:checked:hover + .rtmp_label::before, #go_rtsp:checked:hover + .rtsp_label::before, #go_install:checked:hover + .install_label::before, #go_use:checked:hover + .use_label::before {
        transition: all 0s ease;
        width: 0;
    }

.wrap_rtmp, .wrap_install, .wrap_use {
    margin-top: 10px;
    margin-bottom: 5px;
}

.wrap_rtsp {
    margin-top: 10px;
    margin-bottom: 20px;
}

    .wrap_rtsp + p {
        margin-top: 10px;
    }

.wrap_rtmp {
    margin-top: 10px;
    margin-bottom: 20px;
}

.scrollto svg {
    width: 35px;
    height: 35px;
}

.scrollto {
    align-items: center;
    display: none;
    justify-content: center;
    position: fixed;
    bottom: 15px;
    right: 10px;
    width: 35px;
    height: 35px;
    z-index: 99;
    border-radius: 35px;
    cursor: pointer;
}

#top, #top2, #top3, #top4 {
    position: absolute;
    margin-top: -130px;
}

/* #region rtmp */

.slider_obs {
    display: flex;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
    justify-content: center;
}

.slides_obs {
    position: absolute;
    width: 100%;
    height: auto;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}

    .slides_obs img {
        width: 600px;
        height: 452px;
        margin: 0 auto;
        box-shadow: 0 2px 8px 0 #000000a1;
    }

    .slides_obs figcaption {
        margin-top: 65px;
        padding-bottom: 10px;
        font-style: italic;
        font-weight: bold;
        color: #696969;
        font-size: 14px;
    }

.slide_obs {
    display: none;
}

#arrow_next_obs label, #arrow_prev_obs label {
    color: rgba(0, 0, 0, .7);
    position: absolute;
    visibility: hidden;
    cursor: pointer;
    top: 215px;
    font-size: 30px;
}

    #arrow_next_obs label::after {
        content: "\276F";
    }

    #arrow_prev_obs label::before {
        content: "\276E";
    }

#arrow_prev_obs label {
    left: calc((100% - 750px)/2);
}

#arrow_next_obs label {
    right: calc((100% - 750px)/2);
}

.switchers_obs {
    position: absolute;
    width: fit-content;
    height: 20px;
    text-align: center;
    top: 500px;
}

.switcher_obs {
    background: #696969;
    width: 12px;
    height: 12px;
    position: relative;
    margin: 0 4px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

#img_1_obs:checked ~ #first_obs,
#img_2_obs:checked ~ #second_obs,
#img_3_obs:checked ~ #third_obs,
#img_4_obs:checked ~ #fourth_obs,
#img_5_obs:checked ~ #fifth_obs {
    visibility: visible;
    opacity: 1;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    position: relative;
    margin-top: 25px;
    margin-bottom: 25px;
}

#img_1_obs:checked ~ div #switcher1_obs,
#img_2_obs:checked ~ div #switcher2_obs,
#img_3_obs:checked ~ div #switcher3_obs,
#img_4_obs:checked ~ div #switcher4_obs,
#img_5_obs:checked ~ div #switcher5_obs {
    background: #e7552f;
}

#img_1_obs:checked ~ #arrow_next_obs label:nth-child(2),
#img_2_obs:checked ~ #arrow_next_obs label:nth-child(3),
#img_3_obs:checked ~ #arrow_next_obs label:nth-child(4),
#img_4_obs:checked ~ #arrow_next_obs label:nth-child(5),
#img_5_obs:checked ~ #arrow_next_obs label:nth-child(1) {
    visibility: visible;
}

#img_2_obs:checked ~ #arrow_prev_obs label:nth-child(1),
#img_3_obs:checked ~ #arrow_prev_obs label:nth-child(2),
#img_4_obs:checked ~ #arrow_prev_obs label:nth-child(3),
#img_5_obs:checked ~ #arrow_prev_obs label:nth-child(4),
#img_1_obs:checked ~ #arrow_prev_obs label:nth-child(5) {
    visibility: visible;
}

/* #endregion rtmp */

/* #region rtsp */

.slider_rtsp {
    display: flex;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
    justify-content: center;
}

.slides_rtsp {
    position: absolute;
    width: 100%;
    height: auto;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}

    .slides_rtsp img {
        width: 600px;
        height: 452px;
        margin: 0 auto;
        box-shadow: 0 2px 8px 0 #000000a1;
    }

    .slides_rtsp figcaption {
        margin-top: 65px;
        padding-bottom: 10px;
        font-style: italic;
        font-weight: bold;
        color: #696969;
        font-size: 14px;
    }

.slide_rtsp {
    display: none;
}

#arrow_next_rtsp label, #arrow_prev_rtsp label {
    color: rgba(0, 0, 0, .7);
    position: absolute;
    visibility: hidden;
    cursor: pointer;
    top: 215px;
    font-size: 30px;
}

    #arrow_next_rtsp label::after {
        content: "\276F";
    }

    #arrow_prev_rtsp label::before {
        content: "\276E";
    }

#arrow_prev_rtsp label {
    left: calc((100% - 750px)/2);
}

#arrow_next_rtsp label {
    right: calc((100% - 750px)/2);
}

.switchers_rtsp {
    position: absolute;
    width: fit-content;
    height: 20px;
    text-align: center;
    top: 500px;
}

.switcher_rtsp {
    background: #696969;
    width: 12px;
    height: 12px;
    position: relative;
    margin: 0 4px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

#img_1_rtsp:checked ~ #first_rtsp,
#img_2_rtsp:checked ~ #second_rtsp,
#img_3_rtsp:checked ~ #third_rtsp,
#img_4_rtsp:checked ~ #fourth_rtsp {
    visibility: visible;
    opacity: 1;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    position: relative;
    margin-top: 25px;
    margin-bottom: 25px;
}

#img_1_rtsp:checked ~ div #switcher1_rtsp,
#img_2_rtsp:checked ~ div #switcher2_rtsp,
#img_3_rtsp:checked ~ div #switcher3_rtsp,
#img_4_rtsp:checked ~ div #switcher4_rtsp {
    background: #e7552f;
}

#img_1_rtsp:checked ~ #arrow_next_rtsp label:nth-child(2),
#img_2_rtsp:checked ~ #arrow_next_rtsp label:nth-child(3),
#img_3_rtsp:checked ~ #arrow_next_rtsp label:nth-child(4),
#img_4_rtsp:checked ~ #arrow_next_rtsp label:nth-child(1) {
    visibility: visible;
}

#img_2_rtsp:checked ~ #arrow_prev_rtsp label:nth-child(1),
#img_3_rtsp:checked ~ #arrow_prev_rtsp label:nth-child(2),
#img_4_rtsp:checked ~ #arrow_prev_rtsp label:nth-child(3),
#img_1_rtsp:checked ~ #arrow_prev_rtsp label:nth-child(4) {
    visibility: visible;
}

/* #endregion rtsp */

/* #region install */

.wrap_install p:nth-of-type(2) {
    text-align: end;
    margin-right: 47px;
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
    color: #e7552f;
}

img.zoom {
    width: 250px;
    height: 192.5px;
}

    img.zoom:hover {
        display: block;
        position: fixed;
        z-index: 10;
        top: 53%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
        max-width: 99%;
        max-height: 99%;
        border: solid rgba(210,210,210,.4);
        border-width: 100vh 100vw;
        cursor: zoom-out;
    }

    :not(:active) > img.zoom:not(:hover), img.zoom:active {
        pointer-events: none;
        box-shadow: 0px 0px 7px 0px rgba(40, 45, 50, 0.60);
    }

figure.inst {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 10px 37px 10px 37px;
    padding: 10px;
    border: 2px solid rgba(40, 45, 50, 0.34);
}

.inst figcaption {
    margin: auto;
    padding: 10px;
    font-style: italic;
    text-align: center;
    line-height: 1.7;
    color: #696969;
    font-weight: bold;
}

.inst a {
    color: #e7552f;
}

/* #endregion install */

/* #region use */

#go_install:checked ~ .wrap_install {
    margin-bottom: 35px;
}

.slider-container {
    display: flex;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
    justify-content: center;
}

.slides {
    position: absolute;
    width: 100%;
    height: auto;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}

    .slides img {
        width: 600px;
        height: 432px;
        margin: 0 auto;
        box-shadow: 0 2px 8px 0 #000000a1;
    }

    .slides figcaption {
        margin-top: 65px;
        padding-bottom: 10px;
        font-style: italic;
        font-weight: bold;
        color: #696969;
        font-size: 14px;
    }

.slide_img {
    display: none;
}

#arrow_next label, #arrow_prev label {
    color: rgba(0, 0, 0, .7);
    position: absolute;
    visibility: hidden;
    cursor: pointer;
    top: 215px;
    font-size: 30px;
}

    #arrow_next label::after {
        content: "\276F";
    }

    #arrow_prev label::before {
        content: "\276E";
    }

#arrow_prev label {
    left: calc((100% - 750px)/2);
}

#arrow_next label {
    right: calc((100% - 750px)/2);
}

.switchers {
    position: absolute;
    width: fit-content;
    height: 20px;
    text-align: center;
    margin-top: 475px;
}

.switcher {
    background: #696969;
    width: 12px;
    height: 12px;
    position: relative;
    margin: 0 4px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

#img_1:checked ~ #first,
#img_2:checked ~ #second,
#img_3:checked ~ #third,
#img_4:checked ~ #fourth,
#img_5:checked ~ #fifth,
#img_6:checked ~ #sixth,
#img_7:checked ~ #seventh,
#img_8:checked ~ #eighth {
    visibility: visible;
    opacity: 1;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    position: relative;
    margin-top: 25px;
}

#img_1:checked ~ div #switcher1,
#img_2:checked ~ div #switcher2,
#img_3:checked ~ div #switcher3,
#img_4:checked ~ div #switcher4,
#img_5:checked ~ div #switcher5,
#img_6:checked ~ div #switcher6,
#img_7:checked ~ div #switcher7,
#img_8:checked ~ div #switcher8 {
    background: #e7552f;
}

#img_1:checked ~ #arrow_next label:nth-child(2),
#img_2:checked ~ #arrow_next label:nth-child(3),
#img_3:checked ~ #arrow_next label:nth-child(4),
#img_4:checked ~ #arrow_next label:nth-child(5),
#img_5:checked ~ #arrow_next label:nth-child(6),
#img_6:checked ~ #arrow_next label:nth-child(7),
#img_7:checked ~ #arrow_next label:nth-child(8),
#img_8:checked ~ #arrow_next label:nth-child(1) {
    visibility: visible;
}

#img_2:checked ~ #arrow_prev label:nth-child(1),
#img_3:checked ~ #arrow_prev label:nth-child(2),
#img_4:checked ~ #arrow_prev label:nth-child(3),
#img_5:checked ~ #arrow_prev label:nth-child(4),
#img_6:checked ~ #arrow_prev label:nth-child(5),
#img_7:checked ~ #arrow_prev label:nth-child(6),
#img_8:checked ~ #arrow_prev label:nth-child(7),
#img_1:checked ~ #arrow_prev label:nth-child(8) {
    visibility: visible;
}

/* #endregion use */

/* #endregion guide */

/* #endregion content */

/* #region result */

.button_filter_menu_result {
    display: none
}

.wrap_result_menu {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    top: 93px;
    left: 0;
    background: #292c31;
    height: 43px;
    z-index: 100;
    box-shadow: inset -1px 1px 5px 0 rgb(0 0 0 / 49%);
}

.wrap_result_menu_2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 43px;
}

.result_menu {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #9c9c9c;
    padding: 5px;
}

.result_expand {
    position: relative;
    display: flex;
    cursor: pointer;
    width: auto;
    height: auto;
    text-align: end;
}

    .result_expand:after {
        box-sizing: border-box;
        position: absolute;
        content: "\FE3E";
        display: inline-block;
        right: 10px;
        font-size: 12px;
        width: 18px;
        height: 18px;
        background-color: white;
        border: 2px solid #645f5f;
        border-radius: 2px;
        color: #48494a;
        padding-right: 2px;
    }

    .result_expand p {
        margin-right: 30px;
    }

.wrap_right_menu_res {
    display: flex;
    position: relative;
    margin-right: 6px;
}

.result_marked {
    cursor: pointer;
    margin-right: 14px;
    width: fit-content;
    text-align: end;
}

    .result_marked:hover, .result_expand:hover {
        color: #f2f1f1;
    }

    .result_marked p {
        margin-right: 21px;
    }

    .result_marked::after {
        content: "\00A0";
        display: inline-block;
        position: absolute;
        box-sizing: border-box;
        width: 18px;
        height: 18px;
        background-color: white;
        border: 2px solid #645f5f;
        border-radius: 2px;
        right: 0px;
        vertical-align: baseline;
        text-align: center;
        font-family: Arial, sans-serif;
        font-size: 13px;
        line-height: 16px;
        font-weight: bold;
        color: #48494a;
    }

.check::after {
    position: absolute;
    content: "\2713";
}

.wrap_result {
    position: relative;
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.result_sports_filter {
    position: relative;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    width: 225px;
    height: fit-content;
    margin-left: 10px;
}

.result_item {
    position: relative;
    display: flex;
    border: 1px solid #aeadad;
    border-radius: 3px;
    margin-bottom: 10px;
    height: 35px;
    align-items: center;
    color: #464646;
    font-weight: bold;
    background-color: #f6f6f6;
    box-shadow: 2px 3px 4px 0 rgb(126 126 126 / 49%);
    letter-spacing: -0.5px;
    cursor: pointer;
}

    .result_item:hover {
        background-color: #292c31;
        color: #f2f1f1;
        transition: 0.3s all ease-in-out;
    }

img.icon_sport_result {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.result_item p {
    position: relative;
    display: flex;
    height: 35px;
    align-items: center;
    margin-left: 8px;
}

.result_item::after {
    display: inline-flex;
    width: 20px;
    height: 20px;
    content: '\27EB';
    background-size: cover;
    position: absolute;
    right: 0px;
}

.res_color.result_item::after {
    color: #fcdd02;
}

img.axc {
    width: 20px;
    height: 20px;
}

.wrap_result_games {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-left: 30px;
    margin-right: 10px;
}

.wrap_result_sport {
    display: none;
}

    .wrap_result_sport.wrap_result_sport_active {
        display: flex;
    }

.wrap_champ_result .name_champ_result ~ div {
    display: none;
}

.wrap_champ_result .wrap_champ_result_active.name_champ_result ~ div {
    display: flex;
}

.wrap_champ_result.uncheck {
    display: none;
}

    .wrap_champ_result.uncheck.champ_selected2 {
        display: flex;
    }

.wrap_champ_result {
    display: flex;
    position: relative;
    flex-direction: column;
    font-size: 13.5px;
}

.res_color {
    background-color: #292c31;
    color: #f2f1f1;
}

.wrap_result_sport {
    position: relative;
    flex-direction: column;
    border-radius: 3px;
    margin-bottom: 10px;
    box-shadow: 2px 3px 8px 0 rgb(91 91 91 / 49%);
    border: 1px solid #787474;
}

.name_result_sport {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #292c31;
    width: 100%;
    height: 35px;
    font-size: 12px;
    font-weight: bold;
    color: #f2f1f1;
}

    .name_result_sport p {
        display: flex;
        align-items: center;
        height: 100%;
        text-transform: uppercase;
        margin-left: 10px;
    }

.button_champ {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

    .button_champ:before {
        position: absolute;
        cursor: pointer;
        content: "\00A0";
        display: inline-block;
        box-sizing: border-box;
        width: 18px;
        height: 18px;
        background-color: white;
        border: 2px solid #574f4beb;
        border-radius: 2px;
        vertical-align: baseline;
        text-align: center;
        font-family: Arial, sans-serif;
        font-size: 16px;
        line-height: 16px;
        font-weight: bold;
        color: #574f4f;
        left: 7px;
    }

.champ_selected.button_champ:before {
    content: "\2713";
}

.name_champ_result {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 30px;
    cursor: pointer;
    background-color: #a1a1a1;
    border-top: 1px solid #545353;
}

    .name_champ_result p {
        display: flex;
        align-items: center;
        margin-left: 35px;
        color: #373636;
        font-weight: bold;
        width: calc(100% - 30px);
        height: 100%;
    }

        .name_champ_result p:hover {
            color: #c6471e;
            transition: 0.4s;
        }

.game_item_result {
    display: none;
    position: relative;
    justify-content: space-between;
    min-height: 45px;
    background-color: #f6f6f6;
    border-top: 1px solid #343434;
    color: #000000;
}

    .game_item_result:hover {
        background-color: #ffffff;
        color: #e7552f;
        transition: 0.3s all ease-in-out;
    }

/* #region result_games */

.name_champ_result p:after {
    position: absolute;
    content: "\FE3E";
    display: inline-flex;
    right: 10px;
    font-size: 12px;
}

.name_champ_result.wrap_champ_result_active p:after {
    position: absolute;
    content: "\FE3D";
    display: inline-flex;
    right: 10px;
    font-size: 12px;
}

.result_date_time {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-shrink: 0;
    border-right: 1px solid #343434;
    width: 55px;
    padding: 5px;
}

.result_date {
    display: flex;
    position: relative;
    align-items: center;
}

.result_time {
    display: flex;
    position: relative;
    align-items: center;
}

.wrap_res_teams_score {
    display: flex;
    position: relative;
    width: 100%;
}

.result_teams {
    display: flex;
    position: relative;
    align-items: center;
    box-sizing: border-box;
    border-right: 1px solid #343434;
    width: 100%;
    padding: 5px;
    min-width: calc(100% - 340px);
}

.result_score {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    width: 265px;
    padding: 5px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.result_total_score {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 50px;
    white-space: nowrap;
}

.result_period_score {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5px;
    padding-left: 5px;
    line-height: 1.4;
    text-align: end;
    width: 100%;
}

/* #endregion result_games */

.remove_res {
    display: none;
}

.result_menu.calendar {
    box-shadow: none;
    font-size: 14px;
}

.calendar::after {
    display: inline-flex;
    content: '\1F4C5';
    margin-left: -25px;
    cursor: pointer;
}

.datepicker-here {
    height: 20px;
    padding-left: 5px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    color: #48494a;
    background-color: #fff;
}

/* #endregion result */

.schedule.calendar {
    display: none;
}

.schedule.wrap_result_menu_2 {
    justify-content: flex-end;
}

.schedule .result_teams {
    border: none;
    padding-left: 25px;
}

/*.schedule .result_date_time {
    width: 85px;
}

.schedule .result_teams {
    padding-left: 13px;
}*/

.schedule .result_date_time {
    flex-direction: row;
    justify-content: flex-start;
    border: none;
    width: max-content;
    box-sizing: border-box;
    padding: 5px;
    padding-left: 25px;
}

    .schedule .result_date_time p {
        padding: 7px;
    }

.schedule .game_item_result {
    min-height: 30px;
    background-color: #f6f6f6;
    border: none;
}

.schedule .wrap_champ_result .game_item_result:nth-child(2n+1) {
    background-color: #fff;
}

.schedule.wrap_result_sport {
    position: relative;
    flex-direction: column;
    border-radius: 3px;
    margin-bottom: 10px;
    box-shadow: 2px 3px 8px 0 rgb(91 91 91 / 49%);
    border: 1px solid #b6b6b6;
}

/* #region about */

.remove_sdbr {
    display: none;
}

#fullpage {
    background: #1f1f1f;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* list1 */

.container_1 {
    justify-content: center;
    align-items: center;
}

#myVideo {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    opacity: 0;
}

.active #myVideo {
    opacity: 0.7;
    transition: all ease 2s;
    transition-delay: 0.3s;
}

.text_list_1 {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 8vh;
    width: 100%;
    text-align: center;
}

.container_1 .logo {
    color: #ffdc11;
    padding: 15px;
    padding-right: 20px;
    border-radius: 2px;
    font-size: 82px;
    letter-spacing: 3px;
    font-weight: bolder;
}

.text_list_1 p {
    color: #fff;
    font-size: 58px;
    letter-spacing: 3px;
    margin-top: 70px;
    text-align: center;
}

svg.svg_bottom {
    position: absolute;
    width: 55px;
    height: 55px;
    bottom: 18vh;
    left: calc(50vw - 27px);
    transform: rotateZ( 180deg );
    stroke: #fff;
    -webkit-animation: move 1.2s .4s infinite alternate;
    animation: move 1.2s .4s infinite alternate;
}

@keyframes move {
    0% {
        bottom: 16vh;
    }

    100% {
        bottom: 18vh;
    }
}

/* list2 */

.container_2 {
    justify-content: flex-start;
    align-items: center;
    height: 80%;
}

    .container_2 .logo {
        color: #ffdc11;
        padding: 3px;
        padding-right: 4.5px;
        border-radius: 2px;
        font-style: oblique;
    }

    .container_2 > p {
        font-size: 22px;
        font-weight: bold;
        color: #ffffff;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 70px;
        margin-top: 30px;
        max-width: 900px;
    }

.text_list_2 {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.wrap_text_list_2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .wrap_text_list_2 p {
        font-size: 28px;
        color: #363535;
        opacity: 0.91;
        line-height: 1.7;
        font-style: oblique;
        color: #ffffff;
    }

.img2 {
    display: flex;
    position: relative;
}

    .img2 img {
        width: 470px;
        height: 264px;
        margin: 0 auto;
        box-shadow: 0 2px 8px 0 #000000a1;
    }

.wrap_ul_list_2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-left: 70px;
}

    .wrap_ul_list_2 p:before {
        width: 20px;
        height: 20px;
        content: '\0021';
        color: #ffeb3b;
        font-weight: bold;
        padding-right: 10px;
    }

/* list3 */

.container_3 {
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .container_3 p {
        font-size: 22px;
        color: #ffffff;
        line-height: 1.5;
        text-align: center;
        letter-spacing: 1px;
        margin: 0 auto;
        margin-top: 50px;
        max-width: 850px;
    }

    .container_3 svg.svg_bottom {
        bottom: 210px;
    }

/* #region slider */

.wrap33 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: -137px;
    top: 0;
}

.container33 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 45vh;
    margin: 50px;
    margin-top: 15px;
    box-shadow: -1px 1px 5px 0 rgb(0 0 0 / 49%);
    border-radius: 4px;
}

.sidebar33 {
    height: 100%;
    width: 35%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
    border-right: 2px solid #9e9e9e;
}

    .sidebar33 > div {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #fff;
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: center;
    }

        .sidebar33 > div.is33 {
            background: #2b3434;
            background-size: inherit;
            background-repeat: no-repeat;
            background-position-x: center;
            background-position-y: center;
        }

        .sidebar33 > div.dl33 {
            background: #FFF;
            background-size: inherit;
            background-repeat: no-repeat;
            background-position-x: center;
            background-position-y: center;
        }

.main-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 35%;
    width: 65%;
    transition: transform 0.5s ease-in-out;
    border-left: 2px solid #9e9e9e;
}

    .main-slide > div {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: center;
    }

button {
    background-color: #fff;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
    padding: 15px;
}

    button:focus {
        outline: none;
    }

.container33 .controls button {
    position: absolute;
    left: 35%;
    top: 50%;
    z-index: 100;
    color: #ff5722;
    border: 2px solid #b6b6b6;
}

.container33 .controls .down-button {
    transform: translateX(-100%);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.container33 .controls .up-button {
    transform: translateY(-100%);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* #endregion slider */

.img3 {
    display: none;
}

.container_3 {
    opacity: 0;
}

.active .container_3 {
    opacity: 1;
    transition: all ease 2s;
    transition-delay: 0.3s;
}

/* list4 */

.container_4 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
}

    .container_4 p {
        font-size: 26px;
        color: #ffffff;
        line-height: 1.5;
        text-align: center;
        letter-spacing: 1px;
        margin: 0 auto;
        margin-bottom: 30px;
        max-width: 900px;
        position: absolute;
        z-index: 9;
        padding: 15px;
        background: #0000002b;
        border-radius: 2px;
        box-shadow: -1px 1px 5px 0 rgb(0 0 0 / 49%);
    }

.img4 {
    display: flex;
    position: relative;
    max-width: 1200px;
    height: 100vh;
}

    .img4 img {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        box-shadow: 0 2px 8px 0 #000000a1;
        object-fit: cover;
    }

.active .container_4 {
    opacity: 1;
    transition: all ease 2s;
    transition-delay: 0.3s;
}

.wrap_text_4 {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    top: 5vh;
    max-width: 1200px;
    margin: 0 auto;
}

p.text_4_0 {
    display: none;
}

p.text_4_1 {
    top: 2vh;
    left: 55px;
    max-width: 300px;
    font-style: oblique;
}

p.text_4_2 {
    font-style: oblique;
    top: 2vh;
    right: 55px;
    max-width: 300px;
}

p.text_4_3 {
    font-size: 42px;
    bottom: 38%;
    background: #ffffff1c;
    padding: 30px;
    font-weight: bold;
    opacity: 0;
}

.active p.text_4_3 {
    opacity: 1;
    transform: translateY(-50px);
    transition: all ease 1.5s;
    transition-delay: 0.3s;
}

/* list5 */

.container_5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}


    .container_5 p {
        font-size: 22px;
        color: #ffffff;
        line-height: 1.5;
        text-align: justify;
        text-indent: 55px;
        letter-spacing: 1px;
        margin-left: 55%;
        max-width: 40%;
        position: relative;
        font-style: oblique;
    }

p.text_5_1 {
    margin-top: 11vh;
    margin-bottom: 11vh;
}

p.text_5_2 {
    bottom: 50px;
}

.img5 {
    display: flex;
    position: absolute;
    width: 50%;
}

    .img5 img {
        width: 100%;
        height: 100vh;
        margin: 0 auto;
        margin-left: 0;
        object-fit: cover;
        opacity: 0;
    }

.active .img5 img {
    opacity: 0.7;
    transition: all ease 4s;
    transition-delay: 0.3s;
}

/* list6 */

.container_6 {
    justify-content: center;
    align-items: center;
}

.wrap_ct_6_btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.wrap_w_btn, .wrap_clbr_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.wrap_w_btn {
    margin-top: -137px;
}

    .wrap_w_btn a, .wrap_clbr_btn a {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 999;
    }

.w_btn, .clbr_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .w_btn p, .clbr_btn p {
        position: relative;
        font-size: 32px;
        color: #ffffff;
        text-align: center;
        letter-spacing: 1px;
    }

    .w_btn svg, .clbr_btn svg {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        margin-left: 30px;
        transform: rotateZ(90deg);
        stroke: #fff;
        stroke-dasharray: 500;
        stroke-dashoffset: 500;
        animation: draw 7s infinite forwards;
    }

@keyframes draw {
    100% {
        stroke-dashoffset: 0;
    }
}

.img6 {
    display: flex;
    position: absolute;
}

    .img6 img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        opacity: 0;
    }

.active .img6 img {
    opacity: 0.35;
    transition: all ease 2s;
    transition-delay: 0.3s;
}

/* #endregion about */

/* #region footer */

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 50px;
    background: #1e2024;
    display: flex;
    align-items: center;
}

.footer_wrap_center {
    position: relative;
    height: 18px;
    width: 100%;
    display: flex;
    background-color: #ffdc11;
    justify-content: center;
    align-items: center;
}

.footer_skew_center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20px;
    background: #1e2024;
}

.footer_center {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 20px;
    font-size: 12px;
}

.footer_contacts {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
    width: auto;
}

    .footer_contacts p {
        flex-wrap: wrap;
        display: flex;
        width: min-content;
    }

.footer_feedback {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
    width: auto;
}

.footer a {
    position: absolute;
    width: 100%;
    height: 15px;
    cursor: pointer;
}

.footer p {
    color: #fff;
}

.footer svg {
    padding-right: 10px;
    width: 21px;
}

.footer_logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .footer_logo p {
        font-size: 18px;
        font-family: Verdana;
        font-style: oblique;
        font-weight: 600;
        color: #ffdc11;
    }

/* #endregion footer */

/* #region stat */

/* #region statistic */
.wrap_stat_sport, .wrap_stat_champ {
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

.stat_sport_item, .stat_champ_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #9d9999a8;
}

    .stat_sport_item a, .stat_champ_item a {
        position: absolute;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .stat_sport_item p, .stat_champ_item p {
        position: relative;
        display: flex;
        color: #464646;
        font-weight: bold;
        font-size: 17px;
        letter-spacing: -0.5px;
    }

    .stat_sport_item img, .stat_champ_item img {
        position: relative;
        box-sizing: border-box;
        width: 20px;
        height: 20px;
        margin-right: 20px;
        margin-left: 35px;
    }

    .stat_sport_item::after, .stat_champ_item::after {
        position: absolute;
        display: inline-flex;
        box-sizing: border-box;
        width: 20px;
        height: 20px;
        content: '\27EB';
        background-size: cover;
        right: 25px;
        color: #464646;
        font-weight: bold;
    }

    .stat_sport_item:hover, .stat_champ_item:hover {
        background-color: #292c31;
    }

        .stat_sport_item:hover p, .stat_champ_item:hover p {
            color: #f2f1f1;
        }

        .stat_sport_item:hover::after, .stat_champ_item:hover::after {
            color: #fcdd02;
        }

    /* #endregion statistic */

    /* #region sportstatistic */
    .stat_champ_item p {
        font-size: 14px;
    }

.stat_menu_link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: 30px;
}

    .stat_menu_link a {
        position: relative;
        display: flex;
        width: auto;
        height: 75%;
        color: #fff;
        font-size: 12px;
        align-items: center;
        margin-left: 10px;
        cursor: pointer;
        text-decoration-line: underline;
        text-underline-offset: 3px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .stat_menu_link p {
        position: relative;
        display: flex;
        width: auto;
        height: 75%;
        color: #fff;
        font-size: 12px;
        align-items: center;
        margin-left: 10px;
        text-transform: uppercase;
    }

/* #endregion sportstatistic */

/* #region champstatistic */
.wrap_stat_champ_menu {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    top: 136px;
    left: 0;
    background: #292c31;
    height: 43px;
    z-index: 99;
    box-shadow: -1px 1px 5px 0 rgb(0 0 0 / 49%);
}

.stat_champ_menu {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.stat_champ_menu_item {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: auto;
    cursor: pointer;
    margin-left: 25px;
    padding-left: 3px;
    padding-right: 3px;
    border-bottom: 2px solid #fff0;
}

    .stat_champ_menu_item.active {
        border-bottom: 2px solid #fff;
    }

    .stat_champ_menu_item p {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        width: auto;
        margin-left: 10px;
        font-size: 14px;
        color: #fff;
        text-transform: lowercase;
    }

    .stat_champ_menu_item svg {
        display: flex;
        position: relative;
        fill: #ffdc11;
        width: 20px;
        height: 100%;
    }

.wrap_main_stat {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    margin-top: 65px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

    .wrap_main_stat.active {
        display: flex;
    }

p.title_teams_stat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    margin-top: 10px;
    border-left: 3px solid #ffdc11;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.3px;
    color: #fff;
    background-color: #292c31;
    box-shadow: -1px 1px 5px 0 rgb(0 0 0 / 49%);
}

#selector {
    cursor: pointer;
}

/*#selector .active {
    display:none;
}
*/
.teams_table_title, .teams_table {
    position: relative;
    display: flex;
    width: 100%;
    height: 35px;
    border-bottom: 2px solid #4b4c4e;
}

    .teams_table_title .wrap_teams_table_1:first-child p:last-child {
        cursor: auto;
    }

        .teams_table_title .wrap_teams_table_1:first-child p:last-child:hover {
            background-color: #4b4c4e00;
        }

    .teams_table_title p {
        position: relative;
        font-size: 14px;
        font-weight: bold;
        color: #4b4c4e;
        cursor: help;
    }

        .teams_table_title p.hov {
            background: #eaeaea;
        }

.more_info .popup {
    position: absolute;
    top: 82%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 7px;
    left: 4px;
    width: fit-content;
    white-space: normal;
    z-index: 99;
    display: none;
    color: #474747;
    text-align: center;
    font-weight: normal;
}

.title_right {
    margin-left: -60px;
}

.title_right2 {
    margin-left: -30px;
}

.teams_table {
    border-bottom: 1px solid #d8d8d8;
}

    .teams_table:hover, .game_item_stat:hover {
        background: #b7b7b7;
    }

    .teams_table p {
        font-size: 14px;
        color: #4b4c4e;
    }

.wrap_teams_table_1 {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.wrap_teams_table_2 {
    position: relative;
    display: flex;
    width: 550px;
    height: 100%;
    margin-right: 20px;
}

    .wrap_teams_table_2 p {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

.wrap_teams_table_3, .wrap_teams_table_4 {
    position: relative;
    display: flex;
    width: 170px;
    height: 100%;
}

    .wrap_teams_table_3 p, .wrap_teams_table_4 p {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

.wrap_teams_table_1 p:first-child {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    margin-left: 15px;
}

.wrap_teams_table_1 p:last-child {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    border-right: 1px solid #d8d8d8;
    margin-left: 35px;
}

.teams_table a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #4b4c4e;
    z-index: 9;
}

.calendar.fixtures_menu {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    padding: 0;
    margin-top: 10px;
    border-left: 3px solid #ffdc11;
    background: #292c31;
    box-shadow: -1px 1px 5px 0 rgb(0 0 0 / 49%);
    margin-left: 0;
}

.wrap_main_stat div:last-child {
    border-bottom: none;
}

.game_item_stat {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 35px;
    border-bottom: 1px solid #d8d8d8;
    font-size: 14px;
}

    .game_item_stat a {
        position: absolute;
        display: flex;
        width: 100%;
        height: 100%;
        z-index: 9;
    }

    .game_item_stat p {
        font-size: 14px;
        color: #4b4c4e;
    }

    .game_item_stat .result_date_time {
        border-right: 1px solid #d8d8d8;
        text-align: center;
    }

    .game_item_stat .result_teams {
        border-right: 1px solid #d8d8d8;
    }

    .game_item_stat .result_total_score {
        width: 30px;
        margin-left: 7px;
    }

.wrap_legend {
    position: relative;
    display: flex;
    width: 100%;
    align-items: flex-start;
    box-sizing: border-box;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-left: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: bold;
    color: #e7552f;
}

.legend {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-width: 270px;
    height: 15px;
    padding-left: 15px;
}

    .legend p:first-child {
        margin-right: 10px;
    }

    .legend p:last-child {
        margin-left: 10px;
    }

p.inf {
    width: 100%;
}

span.footnote {
    color: #e7552f;
    margin-top: -7px;
}

/* #endregion champstatistic */

/* #region teamstatistic */
.wrap_main_stat.team, .wrap_main_stat.game_top {
    margin-top: 14px;
}

p.name_team_st_res {
    position: relative;
    display: flex;
    align-items: center;
    height: 45px;
    width: 100%;
    margin-top: 10px;
    border-bottom: 1px solid #d8d8d8;
    font-weight: bold;
    font-size: 16px;
    color: #424446;
    padding-left: 15px;
    box-sizing: border-box;
}

.wrap_wrap_title_st {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    width: 100%;
    margin-top: 25px;
}

.wrap_title_st {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

    .wrap_title_st p:first-child {
        position: relative;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        /*        height: 45px;*/
        width: auto;
        margin-top: 10px;
        padding-left: 15px;
        font-size: 12px;
        line-height: 2;
        letter-spacing: 0.5px;
    }

.wrap_rect {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    width: 210px;
    height: auto;
    margin-left: 15px;
}

    .wrap_rect p {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        width: 25px;
        height: 25px;
        margin: 5px;
    }

.wrap_arrow_for_rect {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.arrow_for_rect {
    display: flex;
    position: relative;
    background: linear-gradient(to right, #24668c, transparent);
    box-sizing: border-box;
    width: 100%;
    height: 2px;
}

.rect_n {
    background-color: #c8c8c8;
}

.rect_p {
    background-color: #c84337;
}

.rect_v {
    background-color: #85b832;
}

.wrap_percent {
    display: flex;
    position: relative;
    display: flex;
    width: auto;
    align-items: flex-end;
}

.wrap_prcnt {
    position: relative;
    width: 35px;
    height: 70px;
    background-color: #c8c8c8;
    margin-right: 20px;
    box-sizing: border-box;
}

.wrap_percent #prcnt {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #85b832;
    box-sizing: border-box;
}

.title_prcnt {
    position: relative;
    display: flex;
    flex-direction: column;
}

    .title_prcnt p:first-child {
        font-size: 18px;
    }

    .title_prcnt p:last-child {
        font-size: 12px;
        letter-spacing: 0.5px;
        line-height: 2;
        text-transform: uppercase;
    }

/* #endregion teamstatistic */

/* #region gamestatistic */
.wrap_gm_st {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 30px;
    overflow: hidden;
    max-height: 110px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

    .wrap_gm_st p:first-child {
        margin-left: 25px;
        width: 80%;
    }

    .wrap_gm_st p:last-child {
        margin-right: 25px;
        width: 80%;
    }

    .wrap_gm_st p {
        font-size: 21px;
        font-weight: bold;
        color: #4f4e4e;
        min-width: 20%;
        text-align: center;
    }

.wrap_score_stat {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}

p.date_game_st {
    position: relative;
    display: flex;
    width: 100%;
    height: 65px;
    justify-content: center;
    align-items: center;
    color: #626262;
}

p.wrap_sore_st {
    color: #e7552f;
}

.wrap_score_sets_st {
    position: relative;
    display: flex;
    width: 100%;
    height: 65px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #9d9999a8;
}

    .wrap_score_sets_st p {
        margin: 15px;
        color: #626262;
    }

.wrap_gm_st.bt p {
    font-size: 16px;
    font-weight: 100;
}

.wrap_line_st {
    position: relative;
    display: flex;
    width: 100%;
    height: 20px;
    box-sizing: border-box;
}

.wrap_line_st_l, .wrap_line_st_r {
    position: relative;
    display: flex;
    width: 50%;
    height: 100%;
    background-color: #c8c8c8;
    box-sizing: border-box;
    border-radius: 2px
}

.wrap_line_st_l {
    margin-right: 1px;
    border-right: 400px solid #85b832;
}

.wrap_line_st_r {
    margin-left: 1px;
    border-left: 350px solid #c84337;
}

.wrap_line_st_l.st_2 {
    border-right: 100px solid #85b832;
}

.wrap_line_st_r.st_2 {
    border-left: 250px solid #c84337;
}

.wrap_line_st_l.st_3 {
    border-right: 50px solid #85b832;
}

.wrap_line_st_r.st_3 {
    border-left: 550px solid #c84337;
}

.wrap_line_st_l.st_4 {
    border-right: 700px solid #85b832;
}

.wrap_line_st_r.st_4 {
    border-left: 30px solid #c84337;
}

.wrap_line_st_l.st_5 {
    border-right: 100px solid #85b832;
}

.wrap_line_st_r.st_5 {
    border-left: 200px solid #c84337;
}

.wrap_main_stat.game_top div:last-child {
    border-bottom: 1px solid #d8d8d8;
}

#tvddd {
    border-bottom: none;
}

.wrap_videoCon .video_block.stat {
    width: 750px;
}


.wrap_main_stat.game_top.video {
    margin-top: -55px;
}

.wrap_videoCon.stat {
    justify-content: center;
    border: none;
    margin-top: 14px;
    background-color: rgb(40 45 50 / 0%);
    margin-bottom: 0;
}

/* #endregion gamestatistic */
/* #endregion stat */

.wrap_terms p {
    text-indent: 46px;
    font-size: 16px;
    color: #282d32;
    line-height: 1.5;
}

.wrap_terms p.ind {
    text-indent: 72px;
}

.wrap_terms {
    display:block;
}

.wrap_terms h2 {
    font-size: 18px;
    font-weight: bold;
    color: #282d32;
    opacity: 0.96;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 27px;
}


.wrap_main_stat.game_top.video div:last-child {
    border: none;
}

#ttvv {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.77);
    box-shadow: 0 1px 4px rgba(0,0,0,0.77);
}

.wrap_videoCon .video_block.stat img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.6;
    box-shadow: 0 1px 4px rgb(0 0 0 / 77%);
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -99999;
}

.wrap_videoCon .video_block.stat:hover img {
    object-fit: none;
}

.video_block.stat svg {
    position: absolute;
    display: flex;
    fill: #E7552F;
    width: 80px;
    height: 80px;
}


@keyframes zdfg {
    100% {
        stroke-dashoffset: 500;
    }
}


.video_block.stat {
    justify-content: center;
    align-items: center;
}

/* #region media */
/* #region media header */
@media (max-width: 1270px) {
    .header_line_3 {
        width: 1127px;
    }

    .modal_menu_filter_item {
        width: 161px;
    }
}

@media (max-width: 1200px) {

    .header_line_3 {
        width: 1057px;
    }

    .modal_menu_filter_item {
        width: 151px;
    }
}

@media (max-width: 1130px) {

    .header_line_3 {
        width: 980px;
    }

    .modal_menu_filter_item {
        width: 140px;
    }
}

@media (max-width: 1060px) {

    .header_line_3 {
        width: 910px;
    }

    .modal_menu_filter_item {
        width: 130px;
    }
}


@media (max-width: 980px) {

    .main_wrap {
        top: 93px;
        min-height: calc(100% - 93px);
    }

    .header {
        height: 93px;
    }

        .header .logo p a {
            font-size: 24px;
            padding-right: 10px;
            margin-left: 25px;
        }

    .feedback {
        line-height: 1.2;
    }

        .feedback svg {
            width: 21px;
            height: 21px;
        }

        .feedback .gm {
            font-size: 11px;
        }

    .header_line_2 {
        padding-right: 50px;
    }

    .header_left_indent_line_2 {
        display: none;
    }

    .header_right_indent_line_2 {
        display: none;
    }

    .header_wrap_line_3 {
        position: fixed;
        top: 59px;
        right: 0px;
        height: 32px;
    }

    .header_line_3, #go_line_3 {
        display: none;
    }

    .carousel {
        position: relative;
    }

    .controls_L {
        display: none;
    }

    .button_filter {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        z-index: 22;
        cursor: pointer;
        color: #fff;
        font-size: 11px;
        margin-right: 20px;
    }

        .button_filter svg {
            width: 25px;
            margin-left: 10px;
        }

    #go_line_3:checked ~ .header_line_3 {
        display: flex;
        width: 180px;
        height: auto;
        position: absolute;
        top: 34px;
        right: -15px;
        background-color: #292c31;
        z-index: 4023;
        -webkit-box-shadow: inset -0.1px 2px 0.1px 0px #ffdc11;
        box-shadow: inset -0.1px 2px 0.1px 0px #ffdc11;
    }

    .button_filter:before {
        content: "";
        margin-left: -55px;
    }

    .modal_menu_filter {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 98%;
        padding-left: 10px;
        padding-top: 5px;
        padding-right: 10px;
    }

    .modal_menu_filter_item {
        justify-content: flex-start;
    }

        .modal_menu_filter_item > div {
            justify-content: flex-start;
            width: 99%;
            max-width: 145px;
            height: fit-content;
            padding-bottom: 3px;
            margin-bottom: 4px;
            padding-top: 3px;
        }

            .modal_menu_filter_item > div p {
                font-size: 11px;
            }

            .modal_menu_filter_item > div:hover {
                -webkit-box-shadow: -0.1px 2px 0.1px 0px #ffdc11;
                box-shadow: -0.1px 2px 0.1px 0px #ffdc11;
                background-color: #1e2024;
            }

    .wrap_menu_items {
        font-size: 11px;
        justify-content: flex-start;
    }

    .menu_item {
        margin-left: 15px;
        margin-right: 25px;
        padding: 0px 3px 2px 2px;
    }
}

@media (max-width: 930px) {

    .wrap_menu_items, #go_line_2 {
        display: none;
    }

    .menu_search {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffF;
        z-index: 5;
        cursor: pointer;
        position: fixed;
        left: 25px;
        font-size: 11px;
    }

    #go_line_2:checked ~ .wrap_menu_items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5px 10px 4px 5px;
        width: 130px;
        background-color: #292c31;
        box-shadow: inset 0px 2px 0px 0px #ffdc11;
        position: absolute;
        top: 93px;
        left: 0px;
        font-size: 11px;
    }

    .menu_search::after {
        content: "\276F";
        font-size: 11px;
        padding-left: 8px;
        color: #ffdc11;
    }

    .menu_item {
        width: 100%;
        height: 25px;
        padding-bottom: 3px;
        padding-top: 3px;
        position: relative;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        margin-left: 0px;
    }

    .wrap_menu_items a {
        width: 93%;
        position: absolute;
        padding: 7px 5px 7px 7px;
    }

        .wrap_menu_items a:before {
            content: " \2022";
            padding-right: 7px;
            fill: #FFF;
            opacity: 0.38;
        }

    .menu_item:hover {
        box-shadow: 0px 2px 0px 0px #ffdc11;
        background-color: #1e2024;
        box-shadow: 0px 2px 0px 0px #ffdc11;
    }

    .menu_item a {
        color: #fff;
    }

    a.active_menu_item {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (max-width: 670px) {

    .header .logo p a {
        font-size: 22px;
        margin-left: 13px;
    }

    .top_menu_language_link {
        font-size: 11px;
    }
}

@media (max-width: 470px) {

    .feedback .gm {
        display: none;
    }

    .feedback svg {
        width: 19px;
        height: 19px;
        margin-right: 5px;
    }

    .header .logo p a {
        font-size: 20px;
        margin-left: 9px;
    }

    #go_line_2:checked ~ .wrap_menu_items {
        top: 80px;
    }

    .header_wrap_line_1 {
        height: 45px;
    }

    .header_wrap_line_2 {
        height: 35px;
    }

    .header_line_2 {
        font-size: 11px;
    }

    .header_wrap_line_3 {
        top: 46px;
    }

    .button_filter:before {
        padding-right: 10px;
        font-size: 10px;
    }

    .header {
        height: 80px;
    }

    .main_wrap {
        top: 80px;
        min-height: calc(100% - 80px);
    }
}

@media (max-width: 380px) {

    .feedback {
        padding-top: 4px;
        padding-right: 2px;
        font-size: 8px;
    }

        .feedback .fb a {
            font-size: 8px;
        }

        .feedback svg {
            width: 13px;
            height: 13px;
            margin-right: 3px;
        }

    .header .logo p a {
        font-size: 18px;
        margin-left: 9px;
        padding-right: 5px;
    }

    .top_menu_language_link {
        font-size: 10px;
        margin-right: 5px;
        padding-left: 0;
    }

    .modal_language_select_ul {
        right: 0px;
    }

    .top_menu_language_link:after {
        margin-left: 5px;
        top: 9px;
        border-left: 3px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #ffdc11;
    }
}

@media (max-width: 980px) and (max-height: 400px) {

    .modal_menu_filter_item > div {
        padding-bottom: 1px;
        padding-top: 1px;
    }
}

/* #endregion media header */

/* #region media content */

@media (max-width: 1410px) {

    .left_sidebar {
        display: none;
    }

    .right_sidebar {
        display: none;
    }
}

@media (max-width: 1220px) {

    .table_item {
        width: calc(50% - 30px);
    }

    .right_block_table_item {
        width: calc(100% - 120px);
    }

    .table_item_title_team {
        width: calc(100% - 70px);
    }

    .score {
        width: 70px;
    }

    .score_period {
        display: none;
    }

    .wrap_stat_sport, .wrap_stat_champ {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (max-width: 1023px) {

    .title_champ {
        margin-left: 16px;
    }

    .rectangle {
        margin-left: 16px;
    }

    .table_item {
        width: calc(50% - 24px);
        margin-left: 16px;
        margin-bottom: 16px;
    }

    .left_block_table_item {
        width: 88px;
    }

    .right_block_table_item {
        width: calc(100% - 88px);
    }


    .table_item_look {
        padding-right: 5px;
    }

        .table_item_look svg {
            width: 11px;
            padding-top: 1px;
        }

        .table_item_look p {
            font-size: 14px;
            padding-right: 6px;
            padding-left: 8px;
        }

    .stat_icon {
        padding-right: 3px;
    }

        .stat_icon svg {
            width: 16px;
        }

    .table_item_time {
        padding-left: 8px;
    }

        .table_item_time p {
            font-size: 17px;
        }

    .table_item_period {
        padding-left: 8px;
    }

    .table_item_title_team a {
        font-size: 14px;
    }

    .table_item_title_liga p {
        font-size: 11px;
    }

    .score_main {
        font-size: 14px;
    }

    .translation_sport {
        width: calc(100% - 20px);
    }

    .wrap_tvzone {
        width: calc(100% - 20px);
    }

    .wrap_videoCon {
        width: calc(100% - 40px);
    }

    .wrap_middle_center {
        font-size: 24px;
    }

    .team_wrap_left p, .team_wrap_right p {
        font-size: 18px;
    }

    .wrap_sport_liga p {
        font-size: 13px;
    }

    .wrap_middle_top p {
        font-size: 13px;
    }

    .wrap_videoCon .testvideozone {
        width: 510px;
        height: 340px;
    }


    .wrap_videoCon .video_block {
        width: 750px;
    }
}

@media (max-width: 980px) {

    .wrapper_table {
        padding-top: 20px;
    }

    .rectangle {
        height: 20px;
    }

    img.icon_sport_viewer {
        width: 19px;
        height: 19px;
    }

    .title_sport p {
        font-size: 16px;
    }

    .table_item_title_team {
        padding-left: 9px;
        width: calc(100% - 42px);
    }

    .table_item_title_liga {
        padding-left: 9px;
    }

    .table_item_time p {
        font-size: 16px;
        padding-top: 2px;
    }

    .table_item_time svg {
        width: 20px;
    }

    .score {
        padding-right: 9px;
        width: 42px;
    }

    .translation_sport .table_item {
        margin-bottom: 15px;
    }

    .score_main_right p, .score_main_left p {
        padding: 4px 12px 4px 12px;
    }

    .wrap_tvzone {
        height: 40px;
    }

    .button_play_broadcast {
        width: 40px;
        height: 40px;
    }

    #btn svg {
        width: 14px;
        height: 16px;
    }

    .wrap_tvzone p {
        font-size: 17.5px;
    }

    .button_tvzone {
        width: 120px;
        height: 40px;
    }

    #button_1, #button_2 {
        width: 60px;
        height: 40px;
    }

        #button_1 svg {
            width: 17px;
        }

        #button_2 svg {
            width: 20px;
        }

    .wrap_stat_sport, .wrap_stat_champ {
        margin-top: 65px;
    }

    .stat_menu_link {
        margin-left: 10px;
    }

        .stat_menu_link a, .stat_menu_link p {
            font-size: 11px;
            margin-left: 5px;
        }

    .stat_sport_item p {
        font-size: 15px;
        letter-spacing: 0;
    }

    .wrap_main_stat.fixtures_menu.active, .wrap_main_stat.teams_menu.active {
        margin-top: 95px;
        padding-left: 7px;
        padding-right: 7px;
    }

    .wrap_teams_table_1 p:last-child {
        margin-left: 15px;
    }

    .wrap_teams_table_1 p:first-child {
        width: 35px;
        margin-left: 10px;
    }

    .teams_table_title p {
        font-size: 13px;
    }

    .wrap_main_stat.team, .wrap_main_stat.game_top {
        margin-top: 50px;
        padding-left: 7px;
        padding-right: 7px;
    }

    .wrap_gm_st p {
        font-size: 19px;
    }

    .wrap_score_sets_st p, p.date_game_st {
        font-size: 15px;
        letter-spacing: -0.5px;
    }

    .wrap_main_stat.game_top.video {
        margin-top: -72px;
    }
}

@media (max-width: 840px) {

    .wrap_videoCon .video_block {
        width: 600px;
    }
}

@media (max-width: 767px) {

    .table_item {
        width: calc(100% - 32px);
        margin-bottom: 12px;
    }

    .left_block_table_item {
        width: 120px;
    }

    .right_block_table_item {
        width: calc(100% - 120px);
    }

    .table_item_title_team {
        width: calc(100% - 270px);
    }

    .score {
        width: 270px;
    }

    .score_period {
        display: flex;
    }

    .wrap_middle_bottom p {
        font-size: 14px;
    }

    .wrap_sport_liga p {
        font-size: 11px;
    }

        .wrap_sport_liga p + p {
            font-size: 10.5px;
        }

    img.icon_sport_viewer {
        margin-right: 10px;
        margin-left: 10px;
    }

    .wrap_middle_top p {
        font-size: 11px;
    }

    .wrap_middle_center {
        font-size: 20px;
    }

    .team_wrap_left p, .team_wrap_right p {
        font-size: 15.5px;
    }

    .wrap_middle {
        margin-bottom: 42px;
    }

    .wrap_videoCon .testvideozone {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .wrap_videoCon .video_block {
        width: 520px;
    }

    .wrap_stat_champ {
        margin-top: 55px;
    }

    .wrap_stat_sport, .wrap_stat_champ {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stat_sport_item img, .stat_champ_item img {
        width: 18px;
        height: 18px;
        margin-right: 15px;
        margin-left: 15px;
    }

    .stat_sport_item::after, .stat_champ_item::after {
        right: 10px;
        font-size: 15px;
    }

    p.date_game_st, .wrap_score_sets_st {
        height: 55px;
    }

    .wrap_gm_st p {
        font-size: 17px;
        letter-spacing: -0.5px;
    }
}

@media all and (max-width: 720px) {

    .translation_sport .table_item {
        height: 120px;
    }

    .wrap_sport_liga p {
        display: none;
    }

    .wrap_middle {
        margin-bottom: 32px;
    }

    .wrap_middle_top {
        height: auto;
    }

    .wrap_middle_bottom {
        bottom: 13px;
    }

    .wrap_left, .wrap_right {
        height: 115px;
    }
}

@media (max-width: 720px) {

    .wrap_tvzone p {
        font-size: 17px;
    }

    .wrap_videoCon .video_block {
        width: 490px;
    }

    .wrap_main_stat .result_teams {
        letter-spacing: -0.3px;
    }

    .wrap_main_stat .result_date_time {
        letter-spacing: -0.5px;
    }
}

@media (max-width: 650px) {

    .table_item_title_liga p {
        font-size: 11px;
    }

    .table_item_title_team a {
        font-size: 12px;
    }

    .table_item_time {
        color: #959595;
    }

    .table_item_look img {
        width: 17px;
    }

    .score_main {
        padding-right: 5px;
    }

    .score_period_top_item {
        padding-right: 0px;
        width: 18px;
    }

    .score_period_bottom_item {
        padding-right: 0px;
        width: 18px;
    }

    .team_wrap_left p, .team_wrap_right p {
        font-size: 14px;
    }

    .wrap_middle_center {
        font-size: 17px;
    }

    .score_main_right p, .score_main_left p {
        padding: 3px 10px 3px 10px;
    }

    .wrap_middle_bottom p {
        font-size: 13px;
    }

    .wrap_middle_top p {
        font-size: 10px;
    }

    .wrap_videoCon .video_block {
        width: 100%;
    }

    .wrap_videoCon {
        width: calc(100% - 20px);
        margin-top: -19px;
        padding-bottom: 0;
        background-color: rgba(40, 45, 50, 0);
    }

        .wrap_videoCon .testvideozone {
            margin-bottom: 3px;
            margin-top: 0;
        }

    .translation_sport .table_item {
        margin-bottom: 5px;
    }
}

@media (max-width: 639px) {

    .title_champ {
        margin-left: 5px;
    }

    .rectangle {
        margin-left: 5px;
    }

    .table_item {
        width: calc(100% - 10px);
        margin-left: 5px;
    }

    .left_block_table_item {
        width: 88px;
    }

    .right_block_table_item {
        width: calc(100% - 88px);
    }

    .table_item_title_team {
        width: calc(100% - 50px);
        padding-left: 5px;
    }

    .score {
        width: 50px;
    }

    .score_period {
        display: none;
    }

    .score_main_right {
        padding-left: 2px;
    }

    .score_main_left {
        padding-right: 2px;
    }

    .title_wrap_left {
        left: 0;
        top: 0;
    }

    .wrap_left {
        padding-right: 5px;
    }

    .wrap_right {
        padding-left: 5px;
    }

    .score_main_right p, .score_main_left p {
        padding: 2px 6px 2px 6px;
    }

    .wrap_sport_liga p + p {
        font-size: 10px;
    }

    .wrap_videoCon .testvideozone {
        width: 390px;
        height: 260px;
    }

    .wrap_tvzone {
        height: 35px;
    }

    .button_play_broadcast {
        width: 35px;
        height: 35px;
    }

    #btn svg {
        width: 12px;
        height: 14px;
    }

    .wrap_tvzone p {
        font-size: 15px;
    }

    .button_tvzone {
        width: 100px;
        height: 35px;
        right: 3px;
    }

    #button_1, #button_2 {
        width: 50px;
        height: 35px;
    }

        #button_1 svg {
            width: 15.5px;
        }

        #button_2 svg {
            width: 18.5px;
        }

    .wrap_gm_st p:first-child {
        margin-left: 7px;
    }

    .wrap_gm_st p:last-child {
        margin-right: 7px;
    }

    .wrap_gm_st p {
        line-height: 1;
    }

    .wrap_score_sets_st p, p.date_game_st {
        font-size: 12px;
    }

    .wrap_gm_st p {
        font-size: 15px;
    }

        .wrap_gm_st p:first-child, .wrap_gm_st p:last-child {
            overflow: hidden;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }
}

@media (max-width: 570px) {

    .game_item_stat .result_date_time {
        border-right: 1px solid #d8d8d8;
    }

    .game_item_stat .result_teams {
        border-right: none;
    }

    .result_score {
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .result_period_score {
        width: auto;
    }

    p.title_teams_stat {
        font-size: 13px;
    }

    p.name_team_st_res {
        font-size: 14px;
    }

    .wrap_title_st {
        align-items: flex-start;
    }

    .wrap_rect {
        width: 170px;
    }

        .wrap_rect p {
            font-size: 13px;
            width: 18px;
            height: 18px;
        }

    .wrap_percent > div {
        margin-right: 10px;
        width: 30px;
        height: 65px;
    }

    .wrap_wrap_title_st {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 0;
    }

    .wrap_title_st {
        margin: 0 auto;
        width: auto;
        margin-bottom: 25px;
    }

        .wrap_title_st p:first-child {
            font-size: 11px;
            letter-spacing: 0.2px;
        }

    .wrap_percent {
        margin-left: 15px;
    }

    .title_prcnt p:first-child {
        font-size: 16px;
    }

    .title_prcnt p:last-child {
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .title_prcnt {
        justify-content: flex-end;
    }
}

@media (max-width: 530px) {

    .click_dop {
        position: absolute;
        left: 46%;
        bottom: 3px;
        width: 130px;
        height: 35px;
        cursor: pointer;
    }

    .item_sport_6 p.item_score_set_2, .item_sport_4 p.item_score_set_2, .item_sport_10 p.item_score_set_2 {
        display: none;
    }

    .item_sport_6 .match_details, .item_sport_4 .match_details, .item_sport_10 .match_details {
        display: flex;
        margin-left: 10px;
        box-sizing: border-box;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .item_sport_6 .match_details_svg, .item_sport_4 .match_details_svg, .item_sport_10 .match_details_svg {
        display: flex;
        position: relative;
        box-sizing: border-box;
        width: 15px;
        height: 15px;
        transform: rotateZ(180deg );
        stroke: #e7552f;
        padding: 0;
        margin-left: 5px;
        z-index: 9;
    }

    .match_details_svg.active {
        transform: rotateZ(0deg );
    }

    .translation_sport {
        flex-direction: column;
    }

    .item_sport_6 + .wrap_match_details.active, .item_sport_4 + .wrap_match_details.active, .item_sport_10 + .wrap_match_details.active {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        margin-top: 7px;
        padding-bottom: 5px;
        margin-bottom: 10px;
        box-shadow: 0px 7px 8px 0 rgb(0 0 0 / 15%);
        border-radius: 2px;
    }

    .score_details {
        position: relative;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        width: 200px;
        height: auto;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        font-size: 12px;
        color: #414548d4;
        margin-bottom: 5px;
    }

        .score_details p {
            height: 17px;
            margin-left: 65px;
        }

    .wrap_match_details div:last-child {
        border-bottom: none;
    }

    p.match_details {
        color: #e7552f;
        opacity: 0.7;
    }

    .match_details_click {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .wrap_stat_champ {
        padding-left: 7px;
        padding-right: 7px;
    }

    .stat_champ_item p {
        padding-right: 20px;
        font-size: 13.5px;
    }

    .stat_sport_item img, .stat_champ_item img {
        margin-right: 10px;
        margin-left: 10px;
    }

    .stat_champ_item::after {
        right: 0px;
    }

    .wrap_teams_table_1 p:first-child {
        width: 20px;
        margin-left: 5px;
    }

    .wrap_teams_table_1 p:last-child {
        margin-left: 7px;
        min-width: 100px;
    }

    .teams_table p, .teams_table_title p {
        font-size: 12px;
    }

    .wrap_teams_table_2 {
        margin-right: 0;
    }

    .wrap_teams_table_3, .wrap_teams_table_4 {
        width: 120px;
    }

    .stat_menu_link a:nth-child(5) {
        flex-wrap: nowrap;
        overflow: hidden;
        white-space: nowrap;
        max-width: 100px;
    }

    .stat_menu_link p:nth-child(7) {
        max-width: 100px;
    }
}

@media all and (max-width: 515px) {

    img.icon_sport_viewer.index {
        margin-right: 4px;
    }
}

@media (max-width: 480px) {

    .wrap_middle_top {
        margin-bottom: 0;
    }

        .wrap_middle_top p {
            font-size: 8px;
        }

    .title_wrap_left {
        width: 76%;
    }

    .wrap_middle_center {
        height: 44px;
    }

    .wrap_middle_bottom p {
        font-size: 12px;
    }

    .wrap_left, .wrap_right {
        height: 110px;
    }

    img.icon_sport_viewer {
        margin-right: 7px;
        margin-left: 7px;
    }

    .team_wrap_left p, .team_wrap_right p {
        font-size: 12px;
    }

    .team_wrap_left {
        margin-right: 2px;
        margin-left: 5px;
    }

    .team_wrap_right {
        margin-right: 5px;
        margin-left: 2px;
    }

    .wrap_middle_center {
        font-size: 15px;
    }

    #btn svg {
        width: 11px;
        height: 13px;
    }

    .stat_menu_link a, .stat_menu_link p {
        font-size: 10.5px;
        letter-spacing: -0.5px;
    }
}

@media (max-width: 470px) {
    .wrap_stat_champ_menu {
        top: 117px;
    }

    .wrap_main_stat.fixtures_menu.active, .wrap_main_stat.teams_menu.active {
        margin-top: 85px;
    }

    .wrap_main_stat.team, .wrap_main_stat.game_top {
        margin-top: 40px;
    }
}

@media (max-width: 415px) {

    .score_period {
        display: none;
    }

    .table_item_title_team a {
        line-height: 1.2;
    }

    .rectangle {
        height: 18px;
    }

    img.icon_sport_viewer {
        width: 15px;
        height: 15px;
    }

    .title_sport p {
        font-size: 14px;
    }

    .wrap_videoCon .testvideozone {
        width: 294px;
        height: 196px;
    }

    .game_item_stat .result_score {
        font-size: 12px;
        padding: 0;
    }

    .game_item_stat .result_total_score {
        width: 25px;
    }

    .game_item_stat .result_date_time {
        width: 33px;
        font-size: 13px;
    }
}

@media (max-width: 318px) {
    .wrap_videoCon .testvideozone {
        width: 258px;
        height: 172px;
    }
}

/* #endregion media content */

/* #region media guide*/

@media (max-width: 1100px) {

    .wrap_guide {
        padding: 42px 70px 42px 70px;
    }

    figure.inst {
        margin: 10px 0px 10px 0px;
    }
}

@media (max-width: 980px) {

    .wrap_guide {
        padding: 37px 55px 37px 55px;
    }

    .main_text h1, .wrap_terms h2 {
        margin-bottom: 20px;
    }

    .main_text h3 {
        margin: 0 0 20px 0;
    }

}

@media (max-width:900px) {

    #arrow_next_obs label, #arrow_next_rtsp label, #arrow_next label {
        right: 0;
    }

    #arrow_prev_obs label, #arrow_prev_rtsp label, #arrow_prev label {
        left: 0;
    }
}

@media (max-width:800px) {

    .slides_obs img, .slides_rtsp img {
        width: 500px;
        height: 377px;
    }

    .switchers_obs, .switchers_rtsp {
        top: 420px;
    }

    .switcher_obs, .switcher_rtsp {
        width: 10px;
        height: 10px;
    }

    #arrow_next_obs label, #arrow_prev_obs label, #arrow_prev_rtsp label, #arrow_next_rtsp label {
        top: 411px;
        font-size: 20px;
    }

    .slides_obs figcaption, .slides_rtsp figcaption {
        margin-top: 50px;
    }

    .slides img {
        width: 500px;
        height: 360px;
    }

    .switchers {
        margin-top: 402px;
    }

    .switcher {
        width: 10px;
        height: 10px;
    }

    #arrow_next label, #arrow_prev label {
        top: 393px;
        font-size: 20px;
    }

    .slides figcaption {
        margin-top: 50px;
    }

    .inst figcaption {
        font-size: 14px;
    }
}

@media (max-width:740px) {

    .details_label {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .how + ul, .what + ul {
        margin-bottom: 10px;
    }

    .wrap_guide {
        padding: 37px 25px 37px 25px;
    }

    .wrap_terms p {
        text-indent: 36px;
    }

        .wrap_terms p.ind {
            text-indent: 50px;
        }

}

@media (max-width:670px) {

    .main_text, .main_text h1, .main_text h2, .main_text h3 {
        font-size: 14px;
    }

        .wrap_terms h2 {
            font-size: 16px;
        }

    .wrap_details p, .guide label {
        font-size: 14px;
    }

    .wrap_details + p {
        font-size: 14px;
    }

    .main_text a {
        font-size: 13px;
    }

    .main_text h3 {
        margin: 0 0 15px 0;
    }

    .main_text h1, .wrap_terms h2 {
        margin-bottom: 15px;
    }

    .wrap_guide {
        padding: 30px 15px 30px 15px;
    }

    .wrap_rtsp, .wrap_rtmp {
        margin-bottom: 10px;
    }

    .main_text .logo {
        padding: 0 2.5px 0.5px 1px;
    }

    .rtmp_label, .rtsp_label, .use_label, .install_label {
        margin-top: 5px;
    }

    .wrap_rtsp + p {
        margin-top: 5px;
    }

    .wrap_install {
        margin-bottom: 20px;
    }

    img.zoom {
        width: 200px;
        height: 154px;
    }

    figure.inst {
        margin: 5px 0px 5px 0px;
    }

    .wrap_install p:nth-of-type(2) {
        margin-bottom: 5px;
    }
}

@media (max-width:570px) {

    .main_text, .main_text h1, .main_text h2, .main_text h3 {
        font-size: 13px;
    }

        .wrap_terms h2 {
            font-size: 15px;
        }

    .wrap_details p, .guide label {
        font-size: 13px;
    }

    .wrap_details + p {
        font-size: 13px;
    }

    .main_text a {
        font-size: 12px;
    }

    #img_1_rtsp:checked ~ #first_rtsp, #img_2_rtsp:checked ~ #second_rtsp, #img_3_rtsp:checked ~ #third_rtsp, #img_4_rtsp:checked ~ #fourth_rtsp, #img_1_obs:checked ~ #first_obs, #img_2_obs:checked ~ #second_obs, #img_3_obs:checked ~ #third_obs, #img_4_obs:checked ~ #fourth_obs, #img_5_obs:checked ~ #fifth_obs {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .slides_obs img, .slides_rtsp img {
        width: 430px;
        height: 324px;
    }

    .slides_obs figcaption, .slides_rtsp figcaption {
        margin-top: 35px;
        padding-bottom: 5px;
        font-size: 12px;
    }

    .switchers_obs, .switchers_rtsp {
        top: 353px;
    }

    #arrow_next_obs label, #arrow_prev_obs label, #arrow_prev_rtsp label, #arrow_next_rtsp label {
        top: 345px;
        font-size: 18px;
    }

    #img_1:checked ~ #first, #img_2:checked ~ #second, #img_3:checked ~ #third, #img_4:checked ~ #fourth, #img_5:checked ~ #fifth, #img_6:checked ~ #sixth, #img_7:checked ~ #seventh, #img_8:checked ~ #eighth {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .slides img {
        width: 430px;
        height: 310px;
    }

    .slides figcaption {
        margin-top: 40px;
        padding-bottom: 5px;
        font-size: 12px;
    }

    .switchers {
        margin-top: 339px;
    }

    #arrow_next label, #arrow_prev label {
        top: 333px;
        font-size: 18px;
    }

    .inst figcaption {
        font-size: 13px;
    }

    img.zoom {
        width: 125px;
        height: 96.5px;
    }

        :not(:active) > img.zoom:not(:hover), img.zoom:active {
            pointer-events: none;
            box-shadow: 0px 0px 4px 0px rgba(40, 45, 50, 0.6);
        }
}

@media (max-width:480px) {

    .wrap_terms p {
        text-indent: 22px;
    }

        .wrap_terms p.ind {
            text-indent: 30px;
        }

    .wrap_guide {
        padding: 30px 10px 30px 10px;
    }

    .wrap_rtsp, .wrap_rtmp {
        margin-bottom: 5px;
    }

    .slides_obs img, .slides_rtsp img {
        width: 360px;
        height: 271px;
    }

    .switchers_obs, .switchers_rtsp {
        top: 297px;
    }

    #arrow_next_obs label, #arrow_prev_obs label, #arrow_prev_rtsp label, #arrow_next_rtsp label {
        top: 293px;
        font-size: 17px;
    }

    .slides img {
        width: 360px;
        height: 259px;
    }

    .switchers {
        margin-top: 285px;
    }

    #arrow_next label, #arrow_prev label {
        top: 281px;
        font-size: 17px;
    }

    .slides_obs figcaption, .slides_rtsp figcaption, .slides figcaption {
        font-size: 11px;
    }

    .main_text, .main_text h1, .main_text h2, .main_text h3  {
        font-size: 11.5px;
    }

       .wrap_terms h2 {
            font-size: 13px;
        }

    .wrap_details p, .guide label {
        font-size: 11.5px;
    }

    .wrap_details + p {
        font-size: 11.5px;
    }

    .main_text h3, .details_label, .wrap_details p {
        text-indent: 20px;
    }

    .how + ul, .what + ul {
        margin-left: 20px;
    }

    .rtmp_label, .rtsp_label, .use_label, .install_label {
        margin-left: 5px;
    }

    .inst figcaption {
        font-size: 11.5px;
    }
}

@media (max-width:400px) {

    .wrap_guide {
        padding: 13px 5px 13px 5px;
    }

    .slides_obs img, .slides_rtsp img {
        width: 290px;
        height: 218px;
    }

    .switchers_obs, .switchers_rtsp {
        top: 243px;
    }

    .switcher_obs, .switcher_rtsp {
        width: 8px;
        height: 8px;
    }

    #arrow_next_obs label, #arrow_prev_obs label, #arrow_prev_rtsp label, #arrow_next_rtsp label {
        top: 240px;
        font-size: 16px;
    }

    .slides img {
        width: 290px;
        height: 209px;
    }

    .switchers {
        margin-top: 230px;
    }

    .switcher {
        width: 8px;
        height: 8px;
    }

    #arrow_next label, #arrow_prev label {
        top: 228px;
        font-size: 16px;
    }

    .slides figcaption {
        margin-top: 35px;
    }

    p span.whitespace:before {
        content: "\200A";
        position: absolute;
    }

    figure.inst {
        padding: 5px;
        border: 1px solid rgba(40, 45, 50, 0.34);
        margin: 2.5px 0px 2.5px 0px;
    }

    img.zoom {
        width: 87px;
        height: 67px;
    }

    .inst figcaption {
        font-weight: normal;
        padding: 5px;
    }
}

/* #endregion media guide*/

/* #region media footer */

@media (min-width: 1140px) {

    .footer_skew_center {
        width: 1100px;
        -webkit-transform: skew(-26deg);
        -moz-transform: skew(-26deg);
        -o-transform: skew(-26deg);
    }

    .footer_center {
        width: 1090px;
        -webkit-transform: skew(26deg);
        -moz-transform: skew(26deg);
        -o-transform: skew(26deg);
    }
}

@media (max-width: 830px) {

    .footer_logo p {
        font-size: 17px;
    }

    .footer_center {
        font-size: 11px;
    }

    .footer svg {
        width: 18px;
    }
}

@media (max-width: 560px) {

    .footer_feedback {
        display: none;
    }
}
/* #endregion media footer */

/* #region media result */

@media (max-width: 1300px) {

    .wrap_result {
        margin-top: 10px;
    }

    .wrap_result_games {
        margin-left: 10px;
    }

    .result_menu {
        margin-left: 10px;
    }

        .result_menu.calendar {
            margin-left: 7px;
        }

    .fixtures_menu.result_menu.calendar {
        margin-left: 0;
    }
}

@media (max-width: 980px) {

    .wrap_result {
        margin-top: 53px;
    }
}

@media (max-width: 930px) {

    .result_sports_filter {
        width: 197px;
    }

    .result_item {
        height: 30px;
        font-size: 14px;
    }

        .result_item p::before {
            width: 18px;
            height: 18px;
        }

        .result_item p::after {
            width: 18px;
            height: 18px;
        }

    .name_result_sport {
        height: 30px;
    }

    img.icon_sport_result {
        width: 18px;
        height: 18px;
    }

    .wrap_champ_result {
        font-size: 12px;
    }

    .result_item {
        margin-bottom: 7px;
    }

    .wrap_result_sport {
        margin-bottom: 7px;
    }

        .wrap_result_sport .result_score {
            width: 230px;
        }


    .result_date_time.res {
        width: 40px;
    }

    .datepicker-here {
        width: 170px;
    }

    .schedule .result_date_time.res {
        width: max-content;
    }
}

@media (max-width: 830px) {

    .wrap_result_games {
        width: 100%;
    }

    .result_sports_filter_remove {
        display: none !important;
    }

    .result_sports_filter.add_res_menu2 {
        display: flex;
        width: 180px;
        margin-top: -53px;
        height: auto;
        z-index: 999;
        right: 0;
        position: absolute;
        background-color: #292c31;
        border-top: 2px solid #ffdc11;
        padding-bottom: 5px;
    }

    .result_sports_filter.result_sports_filter_remove {
        display: flex;
    }

    .result_sports_filter.add_res_menu2.result_sports_filter_remove {
        display: none;
    }

    .result_sports_filter {
        display: none;
    }

    .result_item {
        border: none;
        box-shadow: none;
        color: #ffffff;
        background-color: #292c31;
        border-radius: 0;
        margin: 5px 5px 0 5px;
        border-bottom: 2px solid #292c31;
    }

        .result_item::after {
            display: none;
        }

        .result_item p::before {
            margin-left: 7px;
        }

        .result_item p {
            margin-left: 8px;
            font-size: 11px;
            color: white;
            text-transform: uppercase;
        }

        .result_item:hover {
            background-color: #1e2024;
            margin: 5px 5px 0 5px;
            border-bottom: 2px solid #ffeb3b;
            transition: all 0.4s ease;
        }

        .result_item.res_color {
            background-color: #1e2024;
            margin: 5px 5px 0 5px;
            border-bottom: 2px solid #ffeb3b;
        }

    .button_filter_menu_result.add_res_menu {
        display: flex;
        position: absolute;
        right: 20px;
        cursor: pointer;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .button_filter_menu_result svg {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .button_filter_menu_result p {
        padding-right: 7px;
        color: #fff;
        font-size: 11px;
    }

    .name_champ_result p:hover {
        color: #373636;
    }

    .name_champ_result p {
        font-size: 11.5px;
    }

    .name_result_sport p {
        font-size: 11.5px;
    }

    .datepicker-here {
        width: 140px;
    }
}

@media (max-width: 760px) {

    .result_menu {
        font-size: 11px;
    }

    .video_block.stat svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 570px) {

    .wrap_res_teams_score {
        flex-direction: column;
    }

    .result_teams {
        border-right: none;
    }

    .result_score {
        border-right: none;
        font-weight: bold;
        color: #e7552f;
    }

    .schedule .result_date_time {
        padding-left: 10px;
    }

    .schedule .wrap_res_teams_score {
        justify-content: center;
    }

    .schedule .result_teams {
        padding-left: 10px;
    }

    .video_block.stat svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 470px) {

    .video_block.stat svg {
        width: 40px;
        height: 40px;
    }

    .wrap_result_menu {
        top: 80px;
        height: 33px;
    }

    .result_menu {
        font-size: 10.5px;
        letter-spacing: -0.5px;
    }

    .wrap_result {
        margin-top: 45px;
    }

    .wrap_result_menu {
        height: 38px;
    }

    .result_sports_filter.add_res_menu2 {
        margin-top: -45px;
    }

    .result_expand p, .result_marked p {
        display: none;
    }

    .result_marked {
        margin-right: 30px;
    }

        .result_marked::after {
            content: "\2713";
        }

    .calendar::after {
        padding-bottom: 2px;
    }

    .datepicker-here {
        height: 18px;
        font-size: 12px;
    }

    .result_menu.calendar {
        font-size: 12px;
    }

    .schedule .result_date_time.res {
        flex-direction: column;
        justify-content: center;
    }

    .schedule .result_date_time p {
        display: none;
    }
}

@media (max-width: 390px) {

    .video_block.stat svg {
        width: 33px;
        height: 33px;
    }
}

@media (max-width: 980px) and (max-height: 400px) {

    .result_item {
        height: 23px;
    }
}

/* #endregion media result */

/* #region media about */

@media (max-width: 1300px) {

    .container_1 .logo {
        font-size: 72px;
    }

    .text_list_1 p {
        font-size: 48px;
    }

    .container_5 p {
        font-size: 20px;
    }
}

@media (max-width: 980px) {

    .container_1 .logo {
        font-size: 62px;
    }

    .text_list_1 p {
        font-size: 38px;
        margin-top: 25px;
        line-height: 1.3;
    }

    .text_list_1 {
        top: 18vh;
    }

    .container_2 > p {
        font-size: 20px;
        margin-bottom: 60px;
        max-width: 700px;
    }

    .text_list_2 {
        max-width: 720px;
    }

    .img2 img {
        width: 370px;
        height: 208px;
    }

    .wrap_ul_list_2 {
        margin-left: 50px;
    }

    .wrap_text_list_2 p {
        font-size: 22px;
    }

    .container_2 {
        justify-content: flex-start;
        align-items: center;
        height: 90%;
    }

    .container_4 p {
        font-size: 22px;
    }

    p.text_4_3 {
        font-size: 32px;
    }

    .container_5 p {
        line-height: 1.3;
    }

    p.text_5_1 {
        margin-top: 8vh;
    }

    .container_3 p {
        font-size: 20px;
        margin-top: 40px;
        max-width: 700px;
    }

    .wrap33 {
        margin-top: -167px;
    }
}

@media (max-width: 840px) {

    .wrap_text_4 {
        justify-content: space-around;
    }

    p.text_4_3 {
        position: absolute;
    }

    .container_5 p {
        font-size: 18px;
    }

    p.text_4_2, p.text_4_1 {
        position: relative;
        margin: 0;
        left: 0;
        right: 0;
    }
}

@media (max-width: 780px) {

    .container_1 .logo {
        font-size: 42px;
    }

    .text_list_1 p {
        font-size: 32px;
    }

    .text_list_1 {
        max-width: 70vw;
    }

    svg.svg_bottom {
        width: 40px;
        height: 40px;
        bottom: 18vh;
        left: calc(50vw - 20px);
        -webkit-animation: move 1.2s .4s infinite alternate;
        animation: move 1.2s .4s infinite alternate;
    }

    .container_2 {
        height: 100%;
    }

        .container_2 > p {
            font-size: 18px;
            margin-bottom: 0;
            margin-top: 15px;
            max-width: 80vw;
            line-height: 1.4;
            font-weight: 100;
            margin-bottom: 20px;
            margin-top: 30px;
            text-align: justify;
            text-indent: 30px;
        }

    .text_list_2 {
        margin-top: 30px;
    }

    .wrap_text_list_2 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrap_ul_list_2 {
        margin-left: 20px;
        padding: 15px;
    }

    .wrap_text_list_2 p {
        font-size: 18px;
    }

    .container_4 p {
        font-size: 18px;
    }

    p.text_4_1 {
        bottom: inherit;
        max-width: 150px;
    }

    p.text_4_2 {
        max-width: 200px;
    }

    p.text_4_3 {
        font-size: 28px;
        bottom: inherit;
    }

    .container_5 p {
        line-height: 1.2;
        text-indent: 40px;
    }

    .container_3 p {
        font-size: 18px;
        margin-top: 20px;
        max-width: 600px;
    }

    .container33 {
        margin: 0;
    }

    .wrap33 {
        margin-top: -197px;
    }
}

@media (max-width: 660px) {

    .container_2 > p {
        margin-bottom: 70px;
    }

    .wrap_text_list_2 p {
        font-size: 20px;
        color: #363535;
        opacity: 0.91;
        font-weight: bold;
        line-height: 1;
        font-style: oblique;
        color: #000000bd;
    }

    .text_list_2 {
        max-width: 310px;
        margin-top: 50px;
    }

    .wrap_ul_list_2 {
        background: #f7f7f77d;
        box-shadow: 0 2px 8px 0 #000000a1;
        z-index: 9;
        padding: 25px;
        margin-left: 0px;
    }

        .wrap_ul_list_2 p:before {
            width: 10px;
            height: 10px;
            padding-right: 2px;
        }

    .img2 {
        display: flex;
        position: absolute;
    }

        .img2 img {
            width: 90vw;
            height: calc((90vw)/1.8);
            opacity: 0.65;
            box-shadow: none;
        }

    .w_btn p, .clbr_btn p {
        font-size: 26px;
    }

    .w_btn svg, .clbr_btn svg {
        width: 28px;
        height: 28px;
    }

    .container_5 p {
        font-size: 16px;
        margin-left: 10%;
        max-width: 80%;
        z-index: 9;
    }

    .img5 {
        width: 100%;
    }

    .active .img5 img {
        opacity: 0.4;
    }
}

@media (max-width: 540px) {
    .container_2 > p {
        margin-bottom: 50px;
    }

    .w_btn p, .clbr_btn p {
        font-size: 22px;
    }

    .w_btn svg, .clbr_btn svg {
        width: 24px;
        height: 24px;
    }

    .wrap_w_btn, .wrap_clbr_btn {
        width: 100%;
    }

    .container_4 p {
        padding: 10px;
    }

    p.text_4_3 {
        padding: 20px;
    }

    p.text_5_1 {
        margin-top: 4vh;
    }

    .container33 {
        display: none;
    }

    .img3 {
        display: flex;
        position: relative;
        max-width: 1200px;
        height: 100vh;
    }

        .img3 img {
            width: 100vw;
            height: 100vh;
            margin: 0 auto;
            box-shadow: 0 2px 8px 0 #000000a1;
            object-fit: cover;
        }

    .container_3 p {
        position: absolute;
        z-index: 9;
        font-style: oblique;
        max-width: 90%;
        text-align: justify;
        text-indent: 45px;
        top: 50px;
        background: #ffffff36;
        padding: 15px;
        border-radius: 2px;
    }

    .container_3 p {
        opacity: 0;
    }

    .active .container_3 p {
        opacity: 1;
        transition: all ease 2s;
        transition-delay: 0.8s;
    }
}

@media (max-width: 440px) {

    .container_1 .logo {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .text_list_1 p {
        font-size: 22px;
    }

    .text_list_1 {
        top: 12vh;
    }

    .container_2 > p {
        font-size: 15px;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .wrap_text_list_2 p {
        font-size: 16px;
    }


    .text_list_2 {
        max-width: 310px;
        margin-top: 50px;
    }

    .wrap_ul_list_2 {
        padding: 15px;
    }

        .wrap_ul_list_2 p:before {
            width: 10px;
            height: 10px;
            padding-right: 2px;
        }

    .img2 img {
        width: 96vw;
    }

    .w_btn p, .clbr_btn p {
        font-size: 18px;
    }

    .w_btn svg, .clbr_btn svg {
        width: 20px;
        height: 20px;
        margin-left: 15px;
    }

    .wrap_text_4 {
        align-items: flex-start;
        height: 100%;
        margin-top: 8vh;
        max-width: 300px;
    }

    p.text_4_0 {
        display: flex;
        font-style: oblique;
    }

    p.text_4_1, p.text_4_2 {
        display: none;
    }

    p.text_4_3 {
        bottom: 20%;
        padding: 15px;
    }

    .img4 {
        margin-top: -100px;
    }

    .container_3 p {
        font-size: 16px;
        max-width: 80%;
    }
}

/* #endregion media about */

/* #endregion media */

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: 0 !important;
}








.wrap_match_progress {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    box-sizing: border-box;
    min-width: 378px;
    max-width: 378px;
}

.title_set {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.title_set_item {
    position: relative;
    display: flex;
    box-sizing: border-box;
    margin: 0 4px 4px 0;
    padding: 3px 10px 3px 11px;
    border-radius: 4px;
    background-color: rgba(40, 45, 50, 0.05);
    cursor: pointer;
}

    .title_set_item.active {
        background-color: #fcdd02;
    }

    .title_set_item p {
        width: max-content;
        opacity: 0.87;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.43;
        letter-spacing: -0.1px;
        color: #282d32;
    }

    .title_set_item.active p {
        font-weight: 600;
    }

    .title_set_item.current p {
        color: #e7552f;
    }

    .title_set_item.current.active p {
        color: #282d32;
    }

.match_progress {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-right: 5px;
    box-sizing: border-box;
}

    .match_progress.active {
        display: flex;
    }

p.title_progress {
    width: 100%;
    /*    margin-bottom: 8px;*/
    font-size: 14px;
    font-weight: bold;
    line-height: 1.43;
    letter-spacing: 0.3px;
    text-align: center;
    opacity: 0.87;
    color: #282d32;
    border-bottom: 1px solid #efeff0;
    padding-bottom: 10px;
    padding-top: 5px;
    box-sizing: border-box;
}

.progress_item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #efeff0;
    padding-top: 6px;
    padding-bottom: 4px;
    box-sizing: border-box;
}

    .progress_item .points {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 35px;
    }

        .progress_item .points img {
            position: relative;
            width: 16px;
            height: 16px;
            padding-left: 3px;
            padding-right: 3px;
        }

        .progress_item .points p {
            position: relative;
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            /*            line-height: 1.25;*/
            text-align: center;
            color: #282d32;
            opacity: 0.87;
            min-width: 80px;
            height: 100%;
        }

            .progress_item .points p span {
                position: relative;
                width: 50%;
                margin-left: 5px;
                margin-right: 5px;
                box-sizing: border-box;
            }

                .progress_item .points p span.win {
                    color: #e7552f;
                }

    .progress_item p.detailed_points {
        margin: 0 3px;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.33;
        text-align: center;
        color: #282d32;
        opacity: 0.54;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        flex-wrap: wrap;
    }

        .progress_item p.detailed_points span {
            padding-left: 2px;
            padding-right: 2px;
            box-sizing: border-box;
        }

            .progress_item p.detailed_points span.bp {
                padding-top: 1px;
                /* text-align: center; */
                color: white;
                /* border-radius: 4px; */
                /* border: solid 1px #efeff0; */
                /* box-sizing: border-box; */
                background-color: #555555;
                /* padding-left: 4px; */
                /* padding-right: 4px; */
                line-height: 1;
                /* width: 24px; */
                /* height: 14px; */
                /* margin: 3px 28px 0 8px; */
                padding: 2px 4px 0px 4px;
                border-radius: 2px;
                margin-bottom: 1px;
                margin-left: 2px;
                /* background-color: #7587e2; */
                margin-right: 2px;
            }

/*.points p span.win:before {
    content: url("../img/sport/tennis_orange.svg");
    width: 16px;
    height: 16px;
}*/

.left_points, .right_points {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.left_points {
    justify-content: flex-end;
}

.right_points {
    justify-content: flex-start;
}

