@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: #4a4a4a;
	--first-color: #020202;
	--second-color: #dddddd;
}


body {
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  background-color: #303030;
  background-image: url(/images/section1-21.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

body::-webkit-scrollbar-thumb {
    background-color: #545454;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}

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;
    font-weight: 600;
}

.header-brand > h1 {
    margin: 0 0 0 20px;
    text-transform: uppercase;
    font-family: 'PTSans';
    letter-spacing: .1em;
    font-size: 1.3rem;
    user-select: none;
    display: flex;
    flex-direction: column;
}

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

.tourn-tables-header > h2, .disq > .disq-wrapper > h2 {
    font-family: 'PTSans-Bold';
    text-transform: uppercase;
}

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

.leaders-block > h3 {
	font-weight: 600;
}

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: relative;
    top: 0;
    width: 100%;
    display: flex;
    color: #FFFFFF;
    font-size:.9rem;
    z-index: 9;
    flex-direction: column;
}

.sportprotocol header, .sportprotocol .partners-block {
    background-color: #191b18;
    background-image: url(/images/section1-21.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

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

.header-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.header-half {
	flex: 1 0 50%;
	display: flex;
	box-sizing: border-box;
}

.header-half.left {
    padding-right: 60px;
}

.header-half.right {
    padding-left: 60px;
}

.header-half-part.nav-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.header-icons {
    height: 55px;
    padding: 10px;
}

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

.wrapped-items {
    display: flex;
    gap: 2em;
    transition: .3s;
    flex-grow: 1;
    justify-content: flex-start;
}

.wrapped-items:last-child {
    justify-content: flex-end;
}

.wrapped-items:not(:first-child):not(:last-child) {
    justify-content: center;
}

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

.menu-button {
  width: 40px;
  height: 40px;
}

.menu-button > i {font-size: 40px;}

header a {
	text-decoration:none;
}

.link-wrapped {
    border-radius: 18px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    background: rgb(255 255 255 / 97%);
    color: #000;
}

.link-wrapped::before {
	margin: 0 5px;
}

.link-wrapped.eye::before {content: '\f06e';}
.link-wrapped.email::before {content: '\f0e0';}
.link-wrapped.phone::before {content: '\f879';}
.link-wrapped.auth::before {content: '\f007';}

.link-wrapped:hover {
    background: rgb(231 231 231 / 97%);
    color: #000;
}

.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;
	padding: 3px;
	max-width: min(300px,100vw);
	min-width: 100%;
	border-radius: 15px;
	border-top-left-radius: 0px;
	transition: opacity .3s;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: -1;
	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 {
    max-width: 100%;
    box-sizing: border-box;
}

li.menu-sub {
    background-color: #ededed;
}

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

div.expandable > ul > li:last-child > a {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: 5px 6px;
	display: flex;
	align-items: center;
	color: #555;
	gap: 5px;
	box-sizing: border-box;
	max-width: 100%;
	white-space: nowrap;
}

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

div.expandable:hover > ul {
	box-shadow: 0 4px 12px -6px #000000;
	opacity: 1;
	z-index: 5;
	padding: 3px;
	top: 100%;
}

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

.link-images > a > img {transform: scale(1);transition:.3s;}

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

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

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

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

nav.header-menu > div > a, nav.header-menu > div > label, nav.header-menu > div > label > a {
    color: #FFF;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    text-align: center;
    height: 100%;
    align-items: center;
    font-family: 'PTSans-Bold';
    white-space: nowrap;
}

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

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

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

.main-menu-wrapper {
    display: flex;
    height: 40px;
    justify-content: center;
}

.main-menu-wrapper > div {
    position: relative;
    height: 100%;
}

.main-menu-wrapper > div > a {
    color: #FFF;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    text-align: center;
    height: 100%;
    align-items: center;
    font-family: 'PTSans-Bold';
    white-space: nowrap;
    margin-right: 50px;
    border-top: 2px solid;
    border-color: #FFF;
    transition: border-color .3s ease;
}

.main-menu-wrapper > div > a:hover {
    border-color: #FF0000;
    color: #bec3c5;
}

.main-menu-wrapper > div:last-child > a {
    margin: 0;
}

.logo {
    transition: .3s ease;
    z-index: 3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
	display: block;
	width: 680px;
	height: 400px;
	max-width: 100%;
	object-fit: contain;
}

.inner .logo {
    width: 100px;
    height: 100px;
    top: 5px;
    left: 5px;
}

.scrolled .logo {
    top: -999px;
    left: -999px;
}

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

/* header end */

/* main begin */

.sportprotocol header.scrolled + .main {
    margin-top: 261px !important;
}

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

main .news-calendar {
    padding: 50px 5% 100px;
    height: auto;
    gap: 50px;
}

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

main > .news-calendar > .nc-block {
	top: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	height: min(420px, calc(100vh - 45px));
	width: min(500px, 100vw);
	flex-basis: 600px;
	padding: 20px;
	background: #28282873;
	box-shadow: -11px 8px 16px -3px #000;
}

.cal-mainpage .cal-color::before {
    background: #fd6643;
}

.cal-mainpage .cal-month > span,
.cal-mainpage .cal-week-days > span {
    color: #c9c9c9;
}

.cal-mainpage .cal-week-days {
    border-top: 1px solid #303030;
}

.cal-mainpage .cal-item:not(:hover) {
    background: #c9c9c90f;
    color: #ffffff;
}

.cal-mainpage div.cal-item > .day {
    display: inline-block;
    text-shadow: none !important;
    margin: 7px 0 0 7px !important;
}

.cal-mainpage div.cal-item:hover > .day {
    color: #8d0000;
}

.cal-mainpage .cal-counters {
    display: none;
}

.cal-mainpage .cal-item:hover > .cal-counters {
    display: flex;
}

.cal-mainpage .cal-item:hover .cal-counters {
    color: #000;
}

.cal-mainpage .cal-item .cal-counters > .cal-matches::before {
    color: #000;
}

.cal-mainpage .cal-item .cal-counters > .cal-birthdays::before {
    color: #F00;
}

.cal-mainpage .cal-item:not(.clickable) {color: #323232;}

.cal-mainpage .cal-item.today {
    background: #c9c9c90f;
    box-shadow: none;
    border-bottom: 2px solid;
    border-color: #FFF;
    transition: border-color .2s;
}

.cal-mainpage .cal-item.today:hover {
    background: #b7b7b7;
    border-color: #FF0000;
}

.cal-mainpage .cal-item.today > .day {
    color: #FFF;
}

.tourn-tables {
    padding: 30px 5%;
    background: transparent;
    background: #FFF;
    /* background-image: url(/images/disq.jpg); */
    /* background-attachment: fixed; */
    /* background-repeat: no-repeat; */
    /* background-position: center top; */
    /* background-size: 100%; */
    /* background-color: #191b18; */
    /* background-blend-mode: overlay; */
}

.tourn-tables-header {
    background-color: rgb(255 255 255 / 95%);
    padding: 10px;
    border-radius: 10px;
    margin: 30px auto;
    width: fit-content;
}

.tourn-tables h2::before {
    color: #000;
}

.tab-switcher-1:checked ~ .tourn-tables-header .tab-switcher-label-1::after,
.tab-switcher-2:checked ~ .tourn-tables-header .tab-switcher-label-2::after,
.tab-switcher-3:checked ~ .tourn-tables-header .tab-switcher-label-3::after,
.tab-switcher-4:checked ~ .tourn-tables-header .tab-switcher-label-4::after,
.tab-switcher-5:checked ~ .tourn-tables-header .tab-switcher-label-5::after,
.tab-switcher-6:checked ~ .tourn-tables-header .tab-switcher-label-6::after,
.tab-switcher-7:checked ~ .tourn-tables-header .tab-switcher-label-7::after,
.tab-switcher-8:checked ~ .tourn-tables-header .tab-switcher-label-8::after,
.tab-switcher-9:checked ~ .tourn-tables-header .tab-switcher-label-9::after,
.tab-switcher-10:checked ~ .tourn-tables-header .tab-switcher-label-10::after,
.tab-switcher-11:checked ~ .tourn-tables-header .tab-switcher-label-11::after,
.tab-switcher-12:checked ~ .tourn-tables-header .tab-switcher-label-12::after {
  width:85%;
}

.tourn-tables .match-tabs-switcher > label {
    border-top-color: #afafaf;
    color: #000;
}

.tourn-tables .match-label-rosters::before {
    display: none;
}

.match-tabs-switcher > label::after {
    background: #cbcbcb;
}
.match-tabs-switcher.month-events {
	position: sticky;
  top: 0;
  z-index: 2;
  background: #FFF;
}

.tourn-tables .match-tabs {
	margin-top: 30px;
}

.leaders-wrapper {
    justify-content: space-between;
}

.leaders-block {
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e9e9e9;
    padding: 0;
    border-radius: 5px;
}

.leaders-block > h3 {
    background: #000000;
    color: #ededed;
    font-family: 'PTSans-Bold';
    font-size: 1.3em;
    text-transform: uppercase;
    padding: 9px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.media-tiles-header > h2 {
    text-shadow: 1px 1px #000000;
    color: #FFF;
}

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

.media-tiles-header {
	background-color: #b7b7b7;
}

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

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

.main {
    margin: 0 !important;
    border-radius: 0;
}

div.main > main {
    margin: 0;
    border-radius: 0;
    flex: 1 1 75%;
    padding-top: 15px;
}

div.main > aside {
    background: #efefef;
    padding: 30px;
    border-left: 1px solid #CCC;
    box-shadow: -1px 0 3px 0px #b3b3b3;
}

.partners-block {
    background: none;
}

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

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

.partners-block h2,
.partners-footer > h2 {
    margin: 0 0 1em;
    font-family: 'PTSans-Bold';
}

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

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

.partners img {
    object-fit: contain;
}

.disq-wrapper {
    background-color: rgb(255 255 255 / 90%);
}

section.disq:not(.partners-block) {
    background: #d8dcdf;
}

.disq-wrapper > h2::before {
    display: none;
}

.match-center.bg-dark.text-white a {
    color: #9acf8d;
}

.match-center.bg-dark.text-white .match-tabs-switcher > label {
    color: #FFF;
}

.match-center.bg-dark.text-white .mc-match {
    background: none;
}

.slide-inner-6 > img,
.slide-inner-7 > img {
    width: 170px;
}

body.sportleague:not([data-leagueid="2"]):not([data-leagueid="3"]) .slide-inner-6,
body.sportprotocol:not([data-leagueid="2"]):not([data-leagueid="3"]) .slide-inner-7 {
    display: none;
}

body.sportprotocol .article-share-content {
    display: none;
}

/* override holdek sport's /sport/css/style.css and /sport/css/crossover.css */

.sportleague .team-info > h1 > span {
    font-size: .9em;
    font-weight: normal;
}

body.sportprotocol {
    /* background-color: #f9f9f9; */
    /* background-image: url(/images/section1-15.jpg); */
}

.event-time {
    padding: 3px;
}

.gt-matches > .win,
.match-item-result-digit.win > a {
    color: #007c00;
}

.gt-matches > .draw,
.match-item-result-digit.draw > a {
    color: #000000;
}

.gt-matches > .lost,
.match-item-result-digit.lost > a {
    color: #FF0000;
}

.gt-match-forma > a.win {
    background-color: #007c00;
}

.gt-match-forma > a.draw {
    background-color: #000000;
}

.gt-match-forma > a.lost {
    background-color: #FF0000;
}

/* end override holdek sport's /sport/css/style.css and /sport/css/crossover.css */


    /* main end */

/* footer begin */
footer {
	background: #4e4e4e;
	color: #e6e6e6;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 5%;
	gap: 50px;
	box-sizing: border-box;
}

footer a {
    color: #faebd7;
}

footer a:hover {
    color: #a3ffae;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo > span {
    font-size: 1.2rem;
    margin-left: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #FFF;
    letter-spacing: .08em;
    user-select: none;
}

p.footer-social-header {
    font-size: 1.3em;
    color: #FFF;
}

.footer-social-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-social-wrapper > a {
    background-color: #000;
    padding: 5px 12px;
    font-size: 1.2em;
    text-decoration: none !important;
    color: #FFF;
    border: 2px ridge #a9a9a9;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.footer-social-wrapper > a:hover {
    color: #adadad;
}

.footer-social-wrapper > a::before {
    font-family: 'brands', serif;
    margin-right: 12px;
    font-size: 1.3em;
}

.footer-social-wrapper > a.vk::before {
    content: '\f189';
}

.footer-social-wrapper > a.tg::before {
    content: '\f3fe';
}

.footer-social-wrapper > a.yt::before {
    content: '\f167';
}

.footer-links {
    display: flex;
    gap: 30px;
    line-height: 1;
    font-size: 1.3em;
    flex: 1 0 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.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 .developer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    box-sizing: border-box;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
}

.copyright > span {
    display: block;
    text-align: left;
}

#div_cookie {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    padding: 10px;
    background: #ddd;
    border-radius: 10px;
    box-shadow: 0 0 4px -1px;
    z-index: 11;
    width: max-content;
    max-width: 80vw;
    box-sizing: border-box;
}

#div_cookie > p {
    margin: 0 0 10px;
}

#button_cookie {
    display: block;
    margin: 0 auto;
    padding: 7px;
    background-color: #85f185;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #FFF;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .3s;
}

#button_cookie:hover {
    background-color: #f0f8ff;
}

/* footer end */


@media (min-width: 576px) {
    .header-icons {
        padding: 10px 100px;
    }

    .inner .header-icons {
        width: 222px;
    }

    .leaders-block {
        min-width: 405px;
    }
}

@media (max-width:1450px) {
    .logo > img {
        width: 550px;
    }
}

@media (max-width:1250px) {
	nav.header-menu {
		padding-left: 215px;
	}
}

@media (max-width:1100px) {

#menu-checker:checked ~ .nav-wrapper .logo {
    z-index: -1;
}
    .header-links {
    	padding-left: 140px;
    	padding-right: 20px;
    }
	nav.header-menu {
		padding-left: 100px;
	}
}

@media (min-width:1001px) {
	nav.header-menu > div:nth-child(n+2) {
			margin-left: 2em;
	}

	header.scrolled {
	    position: fixed;
	}

	header.scrolled + main, header.scrolled + .main, .main-slides {margin-top: 221px !important;}

	.scrolled .header-brand {
	    display: none;
	}
}

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

.header-brand {
    height: auto;
    margin: 10px 10px 0 55px;
}

.header-brand > h1 > span:not(:last-child) {
    margin-right: 6px;
}

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

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

nav.header-menu::before {
    display: none;
}

#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;
    position: fixed;
}

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

#menu-checker:checked ~ .nav-wrapper > .header-links {left: 0;}

nav.header-menu > div {justify-content: center;align-items: flex-start;padding-bottom: 0!important;}

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

nav.header-menu > div > a, nav.header-menu > div > label {
    display: flex;
    width: 100%;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

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

nav.header-menu > div > a, nav.header-menu > div > label > a, nav.header-menu > div > label {
    color: var(--base-font-color);
    text-align: left;
}

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

.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;
}

div.expandable .submenu-expander:checked ~ ul {
    position: static;
    max-height: 100vh;
    z-index: 2 !important;
    display: flex;
    border-top-left-radius: 15px;
    box-shadow: 0 0 14px -6px #000000;
    margin-top: 6px;
}

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

.wrapped-items {
    display: flex;
    align-items: stretch;
    top: 35px;
    height: 35px;
    gap: 2em;
}

.link-wrapped {
	position: static;
	display: flex;
	align-items: center;
	width: 25px;
	color: #000 !important;
	overflow: hidden;
	box-sizing: border-box;
	/* padding: 0; */
}

.link-wrapped.expandable:hover {
}

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

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

.inner-logo img {
    width: 150px;
    height: 81px;
}

.inner .header-icons {
    width: 150px;
}

.inner .main-menu-wrapper {
    flex-direction: column;
    align-items: center;
    margin-left: 0 !important;!i;!;
    margin-right: 0 !important;!i;!;
    width: auto;
    height: auto;
    flex-grow: 0 !important;!i;!;
}
.inner .main-menu-wrapper > div > a {
    margin: 7px 0 0;
    margin-right: 0;
    border: 0;
}


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

.nc-block {
    height: min(480px, 100vh);
    margin: 0 0 10px;
}

main .news-calendar .nc-block.calendar {
    margin-left: auto;
    margin-right: auto;
}

.tourn-tables {
	padding: 30px 5% 5%;
}

.leaders-block {flex: 1 0 100%;box-sizing: border-box;max-width: 100%;}

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

@media (max-width: 575px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #0a0a0a;
    }
    .main-menu-wrapper {
        position: fixed;
        top: 55px;
        left: 0;
        width: 100%;
        flex-wrap: wrap;
        height: auto;
        display: none;
        background: #e5e5e5;
    }

    .main-menu-wrapper > div {
        width: 100%;
        height: 40px;
    }

    .main-menu-wrapper > div > a {
        justify-content: center;
        margin-right: 0;
        border: none;
        color: #000;
    }

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

    .inner .header-icons {
        width: 100%;
    }

    .inner .main-menu-wrapper {
        width: 100%;
    }

    #menu-checker:checked ~ .main-menu-wrapper,
    #menu-checker:checked ~ div > .main-menu-wrapper {
        display: block;
    }

    main {
        margin-top: 55px;
    }

	.logo {
		margin: 85px 30px 30px;
	}
	
	.logo > img {
	    width: 90%;
	    height: auto;
	}
}