@charset "utf-8";
html {
    font-family: "PTSans", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-size: clamp(
            var(--min-font-size) * 1px,
            var(--font-float-size),
            var(--max-font-size) * 1px
    );
    --dark-fone: #3d0a0d;
    --first-color: #1d40a5;
    --second-color: #a32321;
    --first-color: #1A0076;
    --second-color: #32149f;
}

body {
    margin: 0;
    min-height: 100vh;
    max-width: 100vw;
    background-color: #cdcdcd;
}

body.innerpage {
    background-image: url(/images/section1-41.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

body::before {
}

b,
strong {
    font-family: "PTSans-Bold", "Helvetica", "Arial", sans-serif;
}

i,
em {
    font-family: "PTSans-Italic", "Helvetica", "Arial", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Exo_2", "Helvetica", "Arial", sans-serif;
}

h1 {
    font-size: 1.5rem;
    width: fit-content;
    margin: .5rem auto;
}

h2 {
    margin: .3em;
    text-align: center;
}

header > h1, header > .h1 {
    display: none;
    position: absolute;
    font-size: 1.1em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Exo_2';
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: #FFF !important;
    width: 100%;
    padding: 0 0 0 50px;
    box-sizing: border-box;
}

a {
    color: #035f9c;
}

a:hover {
    color: #c33f00;
}

.center {
    text-align: center;
}

/* buttons begin */

.btn-menu::before {
    content: '\f0c9';
}

.btn-close::before {
    content: '\f00d';
}

/* buttons end */

/* header begin */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    color: #FFFFFF;
    font-size: .9rem;
    z-index: 9;
    flex-direction: column;
}

.head-shadow {
    box-shadow: 0 0 90px 111px var(--dark-fone);
    position: absolute;
    width: 100%;
}

.scrolled > .head-shadow {
    box-shadow: 0 0 37px 43px var(--dark-fone);
}

.nav-half {
    display: flex;
    box-sizing: border-box;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.nav-half.right {
    padding-left: 70px;
    padding-left: calc(92px + 2em);
    justify-content: flex-start;
}

.header-links {
    display: flex;
    justify-content: space-between;
    padding: 5px 100px;

    transition: .3s;
    position: relative;
    top: 0px;
    background-color: var(--first-color);
    align-items: center;
}

.scrolled .header-links {
    top: -999px;
}

.wrapped-items {
    display: flex;
    gap: 2em;
    transition: .3s;
    margin-left: 120px;
}

.header-links > div > a {
    transition: .3s ease;
}


.header-links > div > a:hover {
    background: rgb(255 255 255 / 97%);
    color: #000;
}

.menu-button {
    width: 50px;
    height: 50px;
    position: relative;
    background-color: var(--second-color);
    display: none;
    z-index: 2;
}

header label[for='menu-checker'] {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    line-height: 40px;
    transition: .3s;
    text-align: center;
}

header a {
    text-decoration: none;
}

a.link-wrapped {
    border-radius: 18px;
    padding: 5px;
    position: relative;
    box-sizing: border-box;
    color: #fff;
}

.link-wrapped.auth {
    color: #fff;
}

.link-wrapped.auth::before {
    content: '\f007';
    margin: 0 5px;
}

.link-wrapped.email::before {
    content: '\f0e0';
    margin: 0 5px;
}

.link-wrapped.whatsapp::before {
    content: '\f232';
    margin: 0 5px;
}

.link-wrapped.expandable > span::after {
    content: '\f107';
    margin: 0 5px;
}

.link-wrapped.expandable > span {
    cursor: default;
}

div.expandable > ul {
    opacity: 0;
    z-index: 2;
    position: absolute;
    top: -999px;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #FFF;
    max-width: 100vw;
    min-width: 100%;
    border-radius: 15px;
    border-top-left-radius: 0;
    transition: opacity .3s;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: -1;
    box-shadow: 0 0 14px -6px #000000;
    max-height: calc(100vh - 115px);
}

.link-wrapped.expandable > ul {
    /* z-index: 10; */
}

.header-menu div.expandable > ul {

    margin-top: 6px;
}


div.expandable > ul > li:not(:last-child) {
    border-bottom: 2px ridge #eee;
}

div.expandable > ul > li:first-child {
    border-top-right-radius: 12px;
    overflow: hidden;
}

div.expandable > ul > li:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

div.expandable > ul > li > a:hover {
    background: #e2e2e2;
}

div.expandable > ul > li > a {
    padding: 7px;
    display: flex;
    align-items: center;
    color: #555;
    gap: 5px;
}

div.expandable > ul > li > a {
    padding: 3px 6px;
    white-space: nowrap;
}

div.expandable > ul > li > a > img {
    width: 25px;
    height: 25px;
}

div.expandable:hover > ul {
    opacity: 1;
    z-index: 5;
    padding: 3px;
    top: 100%;
}

#menu-checker:checked ~ .menu-button label[for='menu-checker']:first-child,
label[for='menu-checker']:last-child {
    width: 0px;
    height: 0px;
    font-size: 0px;
    opacity: 0;
}

#menu-checker:checked ~ .menu-button label[for='menu-checker']:last-child,
label[for='menu-checker']:first-child {
    width: 40px;
    height: 40px;
    font-size: 40px;
    opacity: 1;
}

.link-images {
    display: flex;
    align-items: center;
    transition: .3s;
}

span.link-images > a {
    margin: 0 10px;
    display: inline-flex;
    width: 35px;
    height: 35px;
    position: relative;
    justify-content: center;
    align-items: center;
}

.link-images > a > img {
    transform: scale(1);
    transition: .3s;
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: absolute;
}

.link-images > a:hover > img {
    transform: scale(1.2);
}

nav.header-menu {
    display: flex;
    justify-content: center;
    background-color: var(--second-color);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-shadow: 0 6px 0 0 #fff;
    height: 40px;
}

.scrolled nav.header-menu {
    position: absolute;
    top: 0;
}

nav.header-menu > .nav-half > div {
    position: relative;
    height: 100%;
    z-index: 5;
    white-space: nowrap;
}

nav.header-menu > .nav-half > div > a, nav.header-menu > .nav-half > div > label, nav.header-menu > .nav-half > div > label > a {
    color: #FFF;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    text-align: center;
    height: 100%;
    align-items: center;
    font-weight: bold;
}

nav.header-menu > .nav-half > div > label {
    cursor: default;
}

nav.header-menu > .nav-half > div::after {
    content: '';
    height: 6px;
    background-image: linear-gradient(to right, var(--second-color), transparent);
    width: 0%;
    transition: .3s;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0 auto;
}

.header-menu > .nav-half > div:hover::after {
    width: 100%;
}

.logo {
    position: absolute;
    top: 10px;
    left: 5%;
    transition: width .3s ease, height .3s ease;
    z-index: 2;
    overflow: hidden;
    width: 120px;
    height: 120px;
}

.logo.inner {
    width: 80px;
    height: 80px;
    top: 2px;
    left: 10px;
}

.logo.smaller {
    width: 80px;
    height: 80px;
}

.logo-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.logo-hover:first-of-type {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.logo-hover:last-of-type {
    left: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.logo img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scrolled .logo {
    top: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%) translateY(-50%);
}

.header-line {
    height: 50px;
    flex: 1 0 100%;
}

.nav-wrapper {
    background-color: var(--first-color);
}

/* header end */

/* main begin */

main {
    margin-top: 91px;
    flex-grow: 1;
}

.main-slides {
    margin-top: 91px;
}

.main-slides + main {
    margin-top: 0;
}

.main-slides {
    margin-top: 91px;
}

main > .news-calendar {
    height: min(440px, 100vh);
    padding: 60px 5%;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

main.main_page_top {
    position: relative;
}

main.main_page_top::before {
    content: '';
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url(/images/section1-41.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.news-calendar.has-slide {
    height: min(510px, 100vh);
}

main > .news-calendar > .nc-block.news {
    flex-basis: 70%;
    flex-grow: 2;
    flex-shrink: 0;
}

.news-calendar .nc-block {
    margin-top: 0;
    height: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}

main .cal-month {
    background: var(--second-color);
    color: #FFFFFF;
}

a.news-header {
    font-size: 1.2em;
    font-family: 'PTSans', sans-serif;
    font-weight: bold;
    color: #000000;
}

.tourn-tables {
    padding: 0 5% 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    background: none;
    position: relative;
    flex-wrap: wrap;
}

.tourn-tables > h2 {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
    z-index: 2;
    flex: 1 0 100%;
}

.tourn-tables > h2:not(:first-child) {
    margin-top: 30px;
}

.tourn-tables > div {
    width: auto;
    max-width: 100%;
    margin: 0;
    transition: .4s;
    flex: 1 1 40%;
}

.tourn-tables table, .tourn-tables .mc-match {
    background: #FFF;
}

.disq {
    background-color: #000;
    background-position: top center;
}

.partners {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.partners:not(:first-child):not(:only-child) {
    margin-top: 20px;
}

section.partners-block {
    background: none;
}

.partners-block h2,
.partners-footer > h2 {
    margin: 0 0 1em;
}

.partners-block h2::before {
    display: none;
}

.partners-footer {
    padding: 30px 0;
}


.media-tiles-header {
    background: var(--first-color);
}

.photo > .media-tiles-header {
    background: var(--second-color);
}

.media-tiles-header::before {
    color: #FFFFFF;
    opacity: 1;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.media-separator {
    background: none;
}

.media-tiles-header > h2 {
    visibility: hidden;
}

.sportprotocol > .main {
    width: min(950px, 100%) !important;
    margin: 125px auto 20px !important;
    border-radius: 15px;
}

.main {
    margin: 130px 5% 50px !important;
    padding-bottom: 30px;
}

div.main > main {
    margin: 0;
    flex: 1 1 75%;
}

div.main > aside {
    padding: 0 0 0 30px;
}

.rowGames:not(:empty) {
    margin: 50px 5% 0;
}

body.innerpage > .rowGames:not(:empty) {
    margin: 135px 5% 0px;
}

body.innerpage > .rowGames:not(:empty) + div.main {
    margin: 50px 5% !important;
}

body.innerpage.sportprotocol > .rowGames:not(:empty) + div.main {
    margin: 50px auto !important;
}

body.innerpage.sportprotocol .match-item-header-bottom {
    flex-direction: column;
}

.main-row-games {
    background: #FFFFFF;
    border-radius: 10px;
}

.slick-slide > div {
    height: 100%;
    box-sizing: border-box;
}

.slick-slide:first-child > div {
    margin-left: 0;
}

.slick-slide:last-child > div {
    margin-right: 0;
}

.slick-slide .mc-match {
    border: none;
    border-radius: 10px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

main.main_page_top.dark-bg > .rowGames .slick-prev::before,
main.main_page_top.dark-bg > .rowGames .slick-next::before,
body.innerpage.dark-bg > .rowGames .slick-prev::before,
body.innerpage.dark-bg > .rowGames .slick-next::before {
    color: #FFFFFF;
}

.slick-prev:before {
    transform: rotate(180deg);
}

.slick-track {
    display: flex;
}

.slick-slide {
    height: unset;
}

.slick-slide > div > div {
    height: 100%;
    box-sizing: border-box;
    padding: 6px;
    position: relative;
}

.slick-slide:not(:last-child) > div > div {
    padding-right: 18px;
}

.slick-slide:not(:last-child) > div > div::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 10%, #000000 50%, #FFFFFF 90%, #FFFFFF 100%);
}

.slick-slide .mc-match-team {
    border: none;
    flex-grow: 1;
}

.slick-slide .mc-match-result {
    font-size: 1.2em;
}

.slick-slide .mc-match-teamsresult {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.slick-prev::before, .slick-next::before {
    font-family: 'icons';
}

.slick-prev::before {
    content: '\f053';
}

.slick-next::before {
    content: '\f054';
}

#game-slider .mc-match-media {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: #FFF;
    transition: opacity .3s;
    border-radius: 0;
    border: none;
}

#game-slider .mc-match:hover .mc-match-media {
    opacity: .9;
}

.prof-league {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #aaa;
}

.prof-league > .group-item {
    border: none;
}

.main_page_top .group-item.knockout {
    flex-basis: 100%;
}

.tourn-tables .gt-table {
    max-height: unset;
}

/* main end */

/* footer begin */
footer {
    background: var(--first-color);
    color: #e6e6e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 5%;
}

footer a {
    color: #faebd7;
}

footer a:hover {
    color: #a3ffae;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    line-height: 1;
    font-size: .9em;
}

.footer-links a {
    text-decoration: none;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    font-style: normal;
    gap: 5px;
}

footer span::before {
    vertical-align: middle;
    display: inline-block;
    width: 24px;
}

footer .location::before {
    content: '\f3c5'
}

footer .phone::before {
    content: '\f879';
}

footer .email::before {
    content: '\f0e0';
}

footer .whatsapp::before {
    content: '\f232';
}

footer .telegram::before {
    content: '\f3fe';
}

footer .vk::before {
    content: '\f189';
}

footer .youtube::before {
    content: '\f167';
}

footer .ok::before {
    content: '\f264';
}

footer .developer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    font-size: .9em;
}

.footer-sponsors-wrapper {
    margin: 0 5% 50px;
    background: #FFF;
    border-radius: 10px;
    padding: 15px;
    flex-basis: 100%;
}

.footer-sponsors-wrapper > h4 {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: initial;
    margin: 0 0 20px;
}

.footer-sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.bottom-slides {
    margin: 30px 5%;
}

/* footer end */


@media (min-width: 1001px) {
    section.tourn-tables .gt-item:not(:only-child) {
        max-width: 33.3%;
    }

    .nav-half > div:nth-child(n+2) {
        margin-left: 3em;
    }

    .nc-buttons {
        margin-left: 5%;
    }

    .scrolled nav.header-menu {
        background-color: var(--first-color);
    }
}

@media (max-width: 1800px) and (min-width: 1001px) {
    .cal-counters {
        justify-content: flex-end;
    }

    .cal-counters > span {
        color: transparent;
    }

    .cal-counters > span.cal-matches::before {
        color: #000000;
    }

    .cal-counters > span.cal-birthdays {
        display: none;
    }
}

@media (max-width: 1200px) {
    main > .news-calendar > .nc-block.news {
        flex-grow: 1;
        flex-shrink: 1;
    }
}

@media (max-width: 1000px) {
    html {
        --min-font-size: 16;
    }

    .menu-button {
        display: block;
    }

    .logo {
        display: none;
    }

    header {
        flex-direction: row;

        background: var(--first-color);
    }

    header > h1, header > .h1 {
        display: block;
        z-index: 1;
    }

    .header-links {
        background: none;
    }

    .head-shadow {
        /* background: linear-gradient(to bottom, var(--dark-fone), 87%, transparent); */
        box-shadow: 0 0 21px 62px var(--dark-fone) !important;
    }

    .nav-wrapper {
        flex-grow: 1;
        display: flex;
    }

    .header-links {
        padding: 0;
        justify-content: space-around;
        width: 100%;
        align-items: stretch;
    }

    .scrolled .header-links {
        top: 0px;
    }

    .link-images, .wrapped-items {
        position: fixed;
        top: 50px;
        height: 35px;
        background: #FFF;
        left: -999px !important;
        width: 100%;
        justify-content: center;
    }

    nav.header-menu {
        position: absolute;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        top: 120px !important;
        left: -999px !important;
        padding: 0px 10px 10px;
        background: var(--block-fone);
        box-shadow: 1px 1px 14px -6px #000;
        box-sizing: border-box;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
        transition: .3s;
        transform: none !important;
        height: auto;
    }

    #menu-checker:checked ~ .nav-wrapper > nav.header-menu, #menu-checker:checked ~ .nav-wrapper .link-images, #menu-checker:checked ~ .nav-wrapper .wrapped-items {
        left: 0px !important;
    }

    .nav-half {

        padding-left: 0 !important;
        padding-right: 0 !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: flex-start;
    }

    nav.header-menu > .nav-half > div {
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 0;
        width: 100%;
    }

    nav.header-menu > .nav-half.left > div, nav.header-menu > .nav-half.right > div:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }

    nav.header-menu > .nav-half > div > a, nav.header-menu > .nav-half > div > label > a, nav.header-menu > .nav-half > div > label {

        display: flex;
        width: 100%;
        height: 40px;


        color: var(--base-font-color);

        align-items: center;
    }

    .nav-half > div > label {
        position: relative;
    }

    nav.header-menu > .nav-half > div::after {
        display: none;
    }

    .expandable > label::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 2;
    }

    div.expandable .submenu-expander ~ ul {
        opacity: 1 !important;
        z-index: -1 !important;
        transition: none;
        width: 100%;
        display: none;
        border-top-left-radius: 15px;
    }

    div.expandable .submenu-expander ~ ul > li:first-child {
        border-top-left-radius: 12px;
    }

    div.expandable .submenu-expander:checked ~ ul {
        position: static;
        max-height: 100vh;
        z-index: 2 !important;
        display: flex;
    }

    div.expandable > ul > li {
        padding: 10px;
    }

    .wrapped-items {
        top: 85px;
        width: 100%;
        margin: 0 !important;
    }

    a.link-wrapped {
        width: 25px;
        color: #000 !important;
        overflow: hidden;
    }

    .link-wrapped {
        position: static;
        display: flex;
        align-items: center;
    }

    .link-wrapped.expandable:hover {
    }

    .link-wrapped.expandable > ul {
        width: 100%;
        z-index: -1;
    }

    .link-wrapped.expandable:hover > ul {
        z-index: 3;
    }

    .rowGames:not(:empty) {
        margin: 14px 25px;
    }

    main {
        margin-top: 50px;
    }

    main > .news-calendar {
        padding: 0;
    }

    div.main {
        margin-top: 50px !important;
    }

    body.sportarticle div.main > aside,
    body.sportphoto div.main > aside,
    body.sportvideo div.main > aside {
        padding: 0;
    }

    body.innerpage > .rowGames:not(:empty) {
        margin-top: 50px !important;
    }

    .news-calendar .nc-block {
        border-radius: 0;
    }

    .nc-buttons {
        display: block;
    }

    .nc-button {
        margin: 30px 0;
    }

    .nc-block {
        margin-left: auto;
        margin-right: auto;
        height: min(400px, 100vh) !important;
    }

    .main-slides {
        margin-top: 50px;
    }

    .cal-counters {
        gap: 9px;
    }

    .playoff-stage {
        flex-basis: 100%;
    }

    .tourn-tables > div {
        flex-basis: 100%;
    }

    footer {
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    body.sportteam .select2-container {
        width: calc(90vw - 35px) !important;
    }
}

@media (max-width: 512px) {
    .slick-slide:not(:last-child) > div > div::after {
        display: none;
    }
}