@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	src: url('/static/fonts/Lato_400.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 600;
	src: url('/static/fonts/Lato_600.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 700;
	src: url('/static/fonts/Lato_700.woff2') format('woff2');
	font-display: swap;
}

@font-face {
	font-family: 'Comfortaa';
	font-style: normal;
	font-weight: 300;
	src: url('/static/fonts/Comfortaa_300.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Comfortaa';
	font-style: normal;
	font-weight: 400;
	src: url('/static/fonts/Comfortaa_400.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Comfortaa';
	font-style: normal;
	font-weight: 500;
	src: url('/static/fonts/Comfortaa_500.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Comfortaa';
	font-style: normal;
	font-weight: 600;
	src: url('/static/fonts/Comfortaa_600.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Comfortaa';
	font-style: normal;
	font-weight: 700;
	src: url('/static/fonts/Comfortaa_700.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	src: url('/static/fonts/Oswald.woff2') format('woff2');
	font-display: swap;
}
@font-face {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 700;
	src: url('/static/fonts/Raleway.woff2') format('woff2');
	font-display: swap;
}

:root {
	--white-color: rgb(255, 255, 255);
	--black-color: rgb(0, 0, 0);
	--text-color: rgb(26, 49, 60);
	--yellow-color: rgb(255, 225, 68);

	--header-back: rgb(10, 30, 54);

	--bottom-line: rgb(254, 192, 7);
	--hdr-top: rgb(0, 0, 0, .025);
	--hdr-text: rgb(157, 175, 190);
	--hdr-main: rgb(0, 0, 0, .055);
	--hdr-matches: rgb(0, 0, 0, .15);

	--master-color: rgb(50, 75, 80);
	--second-color: rgb(81, 218, 229);
	--yellow-color: rgb(249, 205, 12);
	--blue-color: rgb(46, 154, 254);

	--facebook-color: rgb(24, 119, 242);
	--instagram-color: rgb(193, 53, 132);
	--youtube-color: rgb(255, 0, 0);

	--white-25: rgb(255, 255, 255, .25);
	--white-055: rgb(255, 255, 255, .055);
	--white-025: rgb(255, 255, 255, .025);

	--black-15: rgb(0, 0, 0, .15);

	--blue-25: rgb(46, 154, 254, .25);
	
	--fs-sm: 12px;
	--fs-base: 14px;
	--fs-lg: 16px;
	--fs-xl: 20px;
	--fs-xxl: 24px;

	--line-height: 1.5;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	font-size: var(--fs-base);
	font-weight: 400;
	line-height: var(--line-height);
	background-color: var(--white-color);
	color: var(--text-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.modal { overflow: hidden }
body.modal .overlay { display: grid }
.overlay {
	position: fixed;
	inset: 0;
	z-index: 9;
	display: none;
	background-color: rgb(0, 0, 0, .15);
	backdrop-filter: blur(4px);
}

.search_sidebar,
.menu_sidebar {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	width: 400px;
	max-width: 80%;
	height: 100%;
	z-index: 10;
	background-color: var(--master-color);
	backdrop-filter: blur(10px);
	transition: transform .5s ease, opacity .75s ease;
}
.menu_sidebar {
	left: 0;
	transform: translateX(-100%);
}
.search_sidebar {
	right: 0;
	transform: translateX(100%);
}
.search_sidebar.show,
.menu_sidebar.show {
	transform: translateX(0);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 600;
}

h1 { font-size: var(--fs-xxl) }
h2 { font-size: var(--fs-xl) }
h3 { font-size: var(--fs-lg) }
h4 { font-size: var(--fs-base) }
h5 { font-size: var(--fs-sm) }
h6 {
	font-size: var(--fs-sm);
	font-weight: 500;
}
p { margin-bottom: 1em }

a {
	color: var(--text-color);
	transition: color .2s ease;
	text-decoration: none;
}
a:hover { color: var(--blue-color) }
button {
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	border: none;
	background-color: transparent;
}
button,
input { font-size: 14px }
.btn {
	display: flex;
	gap: 5px;
	cursor: pointer;
	text-decoration: none;
	transition: .35s;
	cursor: pointer;
}
.icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.icon svg {
	max-width: 100%;
	max-height: 100%;
}
.ic_8 {
	width: 8px;
	height: 8px;
}
.ic_10 {
	width: 10px;
	height: 10px;
}
.ic_12 {
	width: 12px;
	height: 12px;
}
.ic_14 {
	width: 14px;
	height: 14px;
}
.ic_16 {
	width: 16px;
	height: 16px;
}
.ic_20 {
	width: 20px;
	height: 20px;
}
.ic_24 {
	width: 24px;
	height: 24px;
}
.ic_48 {
	width: 48px;
	height: 48px;
}

.app {
	display: flex;
	flex-direction: column;
	height: 100%;
}
header {
	display: flex;
	flex-direction: column;
	background-color: var(--master-color);
	background-image: linear-gradient(90deg, var(--master-color) 50%, var(--master-color) 80%);
	position: relative;
}
.hdr_top {
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 5px 15px;
	/* border-bottom: 1px solid rgb(255, 255, 255, .1); */
	background-color: var(--hdr-top);
}
.hdr_links {
	display: flex;
	align-items: center;
	gap: 15px;
}
.hdr_links a {
	display: flex;
	align-items: center;
	color: rgb(255, 255, 255, .99)
}
.hdr_links a:after {
	content: '•';
	padding-left: 15px;
	color: rgb(255, 255, 255, .075);
}
.hdr_links a:last-child:after { display: none }
.hdr_links a:hover { color: rgb(99, 214, 244) }
.hdr_links a:hover:after { color: rgb(255, 255, 255, .075) }

.hdr_main {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	gap: 15px;
	align-items: center;
	color: var(--white-color);
	background-color: var(--hdr-main);
	padding: 15px;
	position: relative;
}
.hdr_main .btn {
	background-color: rgb(255, 255, 255, .075);
	color: var(--white-color);
	font-size: 28px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	transition-property: background-color;
}
.hdr_main .btn:hover { background-color: rgb(255, 255, 255, .15) }

.hdr_main .btn svg {
	width: 24px;
	height: 24px;
}

.hdr_logo {
	display: grid;
	align-items: center;
}
.hdr_line { position: relative }
.hdr_line:after {
	content: '';
	position: absolute;
	right: 0;
	background-color: rgb(255, 255, 255, .075);
	width: 2px;
	height: 25px;
}
.app_logo {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 10px;
	align-items: center;
	cursor: pointer;
	padding-right: 25px;
}
.app_logo:hover .app_name { opacity: .8 }
.app_logo img { max-width: 100% }
.app_name {
	display: grid;
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	line-height: 18px;
}

.hdr_menu {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hdr_menu .menu_list { padding-right: 25px }
.menu_list {
	display: flex;
	gap: 25px;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	position: relative;
}
.menu_list a {
	display: flex;
	align-items: center;
	border-radius: 25px;
	font-size: var(--fs-lg);
	font-weight: 600;
	color: var(--white-color);
	padding: 5px 15px;
	transition-property: background-color;
	white-space: nowrap;
}
.menu_list .menu_item:hover .menu_link { color: var(--blue-color) }
.menu_list a.current {
	background-color: #ffce12;
	color: #354b45;
}
.menu_item { display: block }
.menu_item:hover .sub_box {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.menu_item:not(:hover) .sub_box { transition: .15s }
.sub_box {
	z-index: 5;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: transform .3s ease, opacity .75s ease, visibility .3s;

	position: absolute;
	display: grid;
	grid-template-columns: 250px 1fr;
	border-radius: 12px;
	background-color: var(--white-025);
	backdrop-filter: blur(30px);
	border: 1px solid var(--white-055);
	box-shadow: 0 10px 40px rgba(255, 255, 255, .1);
	left: 15px;
	right: 35px;
	padding: 15px;
}
.sub_menu {
	margin: 0;
	padding: 0;
	padding-right: 15px;
	list-style: none;
	border-right: 1px solid rgb(255, 255, 255, .075);
}
.sub_menu a {
	border-radius: 5px;
	border: 1px solid transparent;
	opacity: .85;
	transition: .35s;
}
.sub_menu a:hover {
	opacity: 1;
	background-color: var(--white-025);
	border-color: var(--white-055);
	color: #00d6eb;
	box-shadow: 0px 0px 1px 1px rgb(255, 255, 255, .015);
}

.sub_content {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
	padding-left: 15px;
}
.sub_content .news_box {
	border-radius: 5px;
	background-color: transparent;
	padding: 5px;
	border: 1px solid rgb(255, 255, 255, .075);
}
.sub_content .news_box:hover {
	background-color: rgb(255, 255, 255, .075);
	border-color: rgb(255, 255, 255, .25);
}
.sub_content .news_box .news_img {
	border-radius: 5px;
	overflow: hidden;
}
.sub_content .news_box h3 {
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
}

.hdr_tools {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 25px;
}
.hdr_lang {
	cursor: pointer;
	position: relative;
}
.curr_lang {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 15px;
	border-radius: 25px;
	transition: background-color .5s;
	color: var(--white-color);
	text-transform: uppercase;
	cursor: pointer;
}
.curr_lang .fill { fill: var(--white-color) }
.curr_lang:hover { background-color: rgb(255, 255, 255, .075) }
.curr_lang .chevron { transform: rotate(90deg) }
.curr_lang .chevron .stroke { stroke: rgb(255, 255, 255, .5) }
.lang_list {
	position: absolute;
	left: -20px;
	width: 125px;
	display: grid;
	border-radius: 5px;
	background-color: var(--white-025);
	backdrop-filter: blur(20px);
	border: 1px solid var(--white-055);

	z-index: 1;
	visibility: hidden;
	opacity: 0;
	transform: translateY(10px);
	transition: transform .5s ease, opacity .75s ease;
}
.lang_list a {
	padding: 10px;
	white-space: nowrap;
	color: var(--white-color);
	display: flex;
	align-items: center;
	gap: 10px;
}
.lang_list a.current strong {
	background-color: var(--white-color);
	color: var(--master-color);
}
.lang_list a.current span { font-weight: 500 }
.lang_list a:hover { background-color: var(--white-055) }
.lang_list a strong {
	font-weight: 600;
	font-size: 10px;
	border: 1px solid;
	border-radius: 3px;
	padding: 0 2px;
}

.hdr_lang .chevron { transition: all .15s ease-in-out }
.hdr_lang.show .chevron { transform: rotate(270deg) }
.hdr_lang.show .curr_lang { background-color: rgb(255, 255, 255, .075) }
.hdr_lang.show .lang_list {
	visibility: visible;
	opacity: 1;
	transform: translateY(2px);
}

.hdr_main .btn_search { font-size: 16px }

.hdr_matches {
	display: grid;
	align-items: center;
	gap: 15px;
	grid-template-columns: auto 1fr auto auto;
	background-color: var(--hdr-matches);
	padding: 15px;
}
.hdr_matches .btn_scroll {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 2px solid var(--white-color);
	background-color: transparent;
	border-radius: 50%;
	opacity: .75;
}
.hdr_matches .btn_scroll.prev svg { transform: rotate(180deg) }
.hdr_matches .btn_scroll .stroke { stroke: var(--white-color) }
.hdr_matches .btn_scroll:hover {
	opacity: 1;
	background-color: var(--white-color);
}
.hdr_matches .btn_scroll:hover .stroke { stroke: var(--master-color) }
.hdr_matches .btn_scroll.disabled {
	opacity: .15;
	pointer-events: none;
}

.hdr_match_wrap {
	display: grid;
	overflow-x: hidden;
	border-radius: 10px;
	user-select: none;
	-webkit-user-select: none;

	touch-action: pan-y;
	-ms-touch-action: pan-y;
	cursor: grab;
}
.hdr_match_wrap.dragging { cursor: grabbing }
.match_boxes {
	display: flex;
	gap: 10px;
	transition: .3s;
}
.match_box {
	position: relative;
	display: grid;
	gap: 5px;
	align-items: start;
	min-width: 250px;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 10px;
	color: var(--white-color);
	background-color: var(--white-025);
	border: 1px solid var(--white-055);
	transition: .75s;
	cursor: pointer;

	scroll-snap-align: start;
	scroll-snap-stop: always;
}
.match_box a {
	position: absolute;
	inset: 0;
}
.match_box .neon { opacity: .45 }
.match_box:hover {
	border-color: var(--white-25);
	background-color: var(--white-055);
	box-shadow: 0px 0px 10px 1px rgb(255, 255, 255, .075)
}
.match_box:hover .neon { opacity: 1 }
.match_tour {
	font-size: .75rem;
	color: var(--blue-color);
	transition: .45s;
}
.match_time {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	transition: .45s;
}
.match_time .icon { display: none }
.match_time.is_live {
	color: var(--red-color);
	grid-template-columns: auto 1fr auto;
}
.match_time.is_live .icon {
	display: inline;
	animation: blink 2s steps(1) infinite;
	transition: .3s;
}

@keyframes blink {
	0%, 83.33% { opacity: 1 }
	83.34%, 100% { opacity: 0 }
}
.match_time span {
	border: 1px solid var(--blue-color);
	color: var(--blue-color);
	border-radius: 5px;
	padding: 1px 4px;
	font-size: 10px;
	max-width: max-content;
	transition: .3s;
}
.match_time span.clr_2 {
	border-color: var(--yellow-color);
	color: var(--yellow-color);
}
.match_ads { display: none }

.match_data {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 40px;
}
.match_teams {
	display: grid;
	align-items: center;
	gap: 3px;
}
.match_teams img {
	max-width: 24px;
	border-radius: 5px;
	pointer-events: none;
}
.match_team_box {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 5px;
	align-items: center;
	font-size: 16px;
}
.match_team_box span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: max-content;
	padding: 0 7px;
	border-radius: 5px;
}
.match_team_box span.winner { background-color: var(--black-15) }
.match_team_box.winner span { font-weight: bold }
.match_score {
	display: grid;
	align-items: center;
	gap: 5px;
}
.match_score span {
	display: grid;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	min-width: 30px;
	padding: 0 5px;
	height: 24px;
	background-color: var(--white-055);
	font-size: 16px;
	font-weight: 600;
}

.btn_matches {
	align-items: center;
	padding: 10px 15px;
	color: rgb(255, 255, 255);
	border: 1px solid rgb(255, 255, 255);
	border-radius: 7px;
	opacity: .75;
}
.btn_matches svg {
	width: 20px;
	height: 20px;
}
.btn_matches:hover {
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
	opacity: 1;
}
.btn_matches:hover .stroke { stroke: rgb(0, 0, 0) }

.slider {
	display: grid;
	min-height: 560px;
	position: relative;
	background-color: var(--hdr-matches);
	position: relative;
}
.slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	padding-left: 35px;
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: .3s ease;
}
.slide:after {
	content: '';
	position: absolute;
	inset: 0;
	max-width: 75%;
	background: linear-gradient(90deg, var(--master-color) 45%, transparent 75%);
	opacity: .85;
	z-index: 1;
}
.slide.current {
	opacity: 1;
	z-index: 1;
}
.slide.current .slide_img {
	transform: translateX(0);
	opacity: 1;
}
.slide_img {
	position: absolute;
	inset: 0;
	background: center / cover no-repeat;
	transform: translateX(-145px);
	transition: .35s ease-in-out;
	opacity: .35;

}
.slide.current h2 {
	transform: translateX(0);
	opacity: 1;
}
.slide h2 {
	color: rgb(255, 255, 255);
	font: bold 48px 'Comfortaa';
	max-width: 50%;
	transform: translateX(120px);
	transition: .25s ease-in-out;
	opacity: .35;
	z-index: 2;
}
.slide.current a { transform: translateX(0) }
.slide a {
	max-width: max-content;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 25px;
	background-color: rgb(99, 214, 243);
	color: rgb(15, 35, 72);
	transform: translateX(30px);
	transition: .3s ease-out;
	z-index: 2;
}
.slider .progress_box {
	display: flex;
	gap: 10px;
	position: absolute;
	left: 25px;
	bottom: 25px;
	z-index: 3;
}
.slider .progress_bar {
	display: block;
	border-radius: 10px;
	width: 55px;
	height: 8px;
	background-color: rgb(255, 255, 255, .15);
	transition: color .3s ease;
	position: relative;
}
.slider .progress_bar i {
	display: block;
	position: absolute;
	inset: 0;;
	width: 0;
	border-radius: 16px;
	background-color: rgb(255, 255, 255);
}
.slider .progress_bar i.current { background-color: rgb(255, 255, 255, .95) }

.gray_back { background: rgb(244, 244, 244) url(/static/images/back.png) top / cover no-repeat }
.news {
	display: grid;
	gap: 15px;
	padding: 35px 15px;
}
.news .title {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}
.news .title h2 {
	font: 700 24px 'Comfortaa';
	color: rgb(26, 49, 60);
}
.news .title a {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 5px;
	color: var(--blue-color);
	transition: .3s;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: 500;
}
.news .title a i { transition: all .3s ease-in-out }
.news .title a .stroke { stroke: var(--blue-color) }
.news .title a:hover i { transform: translateX(5px) }

.news_boxes {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}
.news_box {
	position: relative;
	overflow: hidden;
	background-color: rgb(255, 255, 255);
	border-radius: 15px;
	border: 3px solid rgb(0, 0, 0, .075);
	padding-bottom: 25px;
	cursor: pointer;
	transition: box-shadow .75s ease;
}
.news_box:hover { box-shadow: 0px 0px 5px 1px rgb(34, 60, 80, .1) }
.news_box:hover img { transform: scale(1.1) } 

.news_img {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 6 / 4;
	margin-bottom: 10px;
}
.news_img img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 6 / 4;
	transition: .3s;
}
.news_box span {
	display: flex;
	gap: 5px;
	align-items: center;
	color: rgb(0, 0, 0, .5);
	font-size: 12px;
	padding: 0 10px;
}
.news_box svg {
	width: 12px;
	height: 12px;
}
.news_box h3 { padding: 0 10px }

.moments {
	display: grid;
	gap: 15px;
	padding: 35px 15px;
}
.moments h2 {
	font: 700 24px 'Comfortaa';
	color: rgb(26, 49, 60);
}
.moment_boxes {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 15px;
}
.moment_boxes:hover .moment_box { opacity: .75 }
.moment_box {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	padding-bottom: 25px;
	aspect-ratio: 4 / 6;
	cursor: pointer;
	background: center / cover no-repeat;
}
.moment_boxes .moment_box:hover {
	opacity: 1;
	box-shadow: 0px 0px 10px 1px var(--blue-25);
}
.moment_box:after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(1deg, rgba(28, 29, 34, .5) 0%, rgba(28, 29, 34, 0) 100%);
}
.moment_box i {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 2px solid rgb(255, 255, 255, .85);
	border-radius: 50%;
}
.moment_box svg {
	width: 10px;
	height: 10px;
}
.moment_box .fill { fill: rgb(255, 255, 255, .85) }
.moment_box h3 {
	position: absolute;
	display: flex;
	min-height: 50px;
	padding: 0 5px;
	bottom: 5px;
	color: rgb(255, 255, 255, .85);
	z-index: 1;
}

.tables {
	display: grid;
	gap: 15px;
	padding: 35px 15px;
	background-color: rgb(206 233 249);
}
.tables h2 {
	font: 700 24px 'Comfortaa';
	color: rgb(26, 49, 60);
}
.table_tab {
	display: flex;
	border-bottom: 1px solid rgb(210, 216, 219);
}
.btn_tab {
	padding: 5px 10px;
	font-size: 16px;
	font-weight: 500;
	color: rgb(31, 49, 59);
	cursor: pointer;
}
.btn_tab.current {
	font-weight: 600;
	color: rgb(39, 93, 174);
	border-bottom: 2px solid rgb(39, 93, 174);
}
.table_boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.table_box {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: rgb(255, 255, 255);
	border-radius: 10px;
	border: 1px solid rgb(210, 216, 219);
	padding: 15px;
	overflow: hidden;
}
.table_box h3 { font: 900 16px 'Comfortaa' }
.table_head,
.table_row {
	display: grid;
	grid-template-columns: 2fr 15fr 3fr 3fr 3fr 3fr 3fr;
	align-items: center;
	gap: 5px;
}
.table_row {
	padding: 10px 0;
	border-bottom: 1px solid rgb(210, 216, 219);
}
.table_row:last-child { border-color: transparent }
.table_head span {
	font-size: 12px;
	color: rgb(104, 123, 132);
	text-align: center;
}
.table_head span:first-child,
.table_head span:nth-child(2) { text-align: left }

.table_team {
	display: grid;
	grid-template-columns: 24px 1fr;
	align-items: center;
}
.table_row .table_team span {
	text-align: left;
	padding-right: 0;
	font-size: 14px;
	font-weight: 500;
}
.table_team img { max-height: 24px }
.table_row span:first-child {
	text-align: left;
	padding-left: 0;
}
.table_row span {
	text-align: center;
	padding: 0 5px;
	font-size: 12px;
	white-space: nowrap;
}
.table_row span:last-child {
	font-size: 16px;
	font-weight: 600;
}

.players {
	display: grid;
	gap: 15px;
	padding: 35px 0;
	background-color: rgb(246, 246, 246);
}
.players h2 {
	font: 700 24px 'Comfortaa';
	color: rgb(26, 49, 60);
	padding: 0 15px;
}
.player_boxes {
	display: flex;
	overflow-x: scroll;
	gap: 10px;
	scrollbar-width: none;
	padding-left: 15px;
}
.player_boxes::-webkit-scrollbar { display: none }
.player_box {
	display: flex;
	flex-direction: column;
	border: 1px solid rgb(214, 214, 214);
	background-color: rgb(255, 255, 255);
	min-width: 360px;
	padding: 15px;
	overflow: hidden;
	position: relative;
}
.player_box:last-child { margin-right: 15px }
.player_back {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 30em;
	max-width: 80%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	background: linear-gradient(to top left, #f6f6f6 0%, #f6f6f6 50%, transparent 0%);
}
.player_meta {
	display: grid;
	grid-template-columns: 7fr 3fr;
	gap: 10px;
	z-index: 1;
}
.player_name {
	display: grid;
	gap: 10px;
}
.player_name span { font: 700 48px 'Raleway' }
.player_name h4 { font: 500 20px 'Comfortaa' }
.player_img img {
	border-radius: 50%;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.player_pos {
	text-transform: uppercase;
	color: rgb(83, 83, 83);
	z-index: 1;
	margin-bottom: 15px;
}
.player_stats {
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1;
}
.stat_row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 10px;
	padding-left: 0;
	border-bottom: 1px solid rgb(214, 214, 214);
	border-right: 1px solid rgb(214, 214, 214);
}
.stat_row span:last-child { text-align: right }
.player_view {
	padding: 15px 0;
	text-align: right;
}
.player_view a {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 5px;
	color: var(--blue-color);
	transition: .3s;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}
.player_view a i { transition: all .3s ease-in-out }
.player_view a:hover i { transform: translateX(5px) }

.mobile {
	display: flex;
	justify-content: center;
	padding: 35px 15px;
	gap: 65px;
	text-transform: uppercase;
}
.mobile_meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 45px;
}
.mobile_slogan {
	font: italic bold 64px 'Oswald';
	line-height: 56px;
	color: rgb(39, 93, 174);
}
.mobile_get {
	display: flex;
	align-items: center;
	gap: 15px;
	font: italic bold 32px 'Oswald';
}
.mobile_buttons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.partners {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	padding: 35px 15px;
}
.partners a {
	flex: 0 0 12.5%;
	display: flex;
	align-items: center;
	background-color: #fff;
	margin: 5px;
	padding: 25px;
	border: 1px solid #e8e8e8;
	text-decoration: none;
	border-radius: 10px;
	transition: all .3s ease-in-out;
}
.partners a:hover {
	background-color: rgb(0, 0, 0, .025);
	border-color: #c8cbd0;
}
.partners a img {
	object-fit: contain;
	width: 100%;
	aspect-ratio: 6 / 3;
	transition: .3s;
}

footer {
	display: grid;
	grid-template-columns: auto 1fr 1fr 1fr;
	gap: 35px;
	padding: 55px;
	background-color: rgb(40, 40, 45);
	color: rgb(255, 255, 255);
}
.footer_meta {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.footer_logo img { max-width: 86px }
.footer_mobile {
	display: grid;
	gap: 10px;
	text-transform: uppercase;
	font: italic bold 32px 'Oswald';
	line-height: 32px;
}
.footer_block {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.footer_block h4 { font: italic bold 24px 'Oswald' }
.footer_menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font: bold 16px 'Comfortaa';
	padding-left: 10px;
}
.footer_menu a { color: rgb(255, 255, 255) }
.footer_menu a:hover { color: rgb(99, 214, 244) }

.footer_contact {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font: bold 16px 'Comfortaa';
	padding-bottom: 15px;
	border-bottom: 1px solid rgb(255, 255, 255, .15);
}
.footer_contact a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgb(255, 255, 255);
}
footer .social_box a {
	width: 32px;
	height: 32px;
}

.social_box {
	display: flex;
	gap: 10px;
}
.social_box a {
	display: flex;
	width: 24px;
	height: 24px;
	font-size: 14px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid rgb(255, 255, 255, .075);
	background-color: rgb(255, 255, 255, .05);
	color: var(--white-color);
	transition: background .5s ease;
}
.social_box a:hover { border-color: rgb(255, 255, 255, .25) }
.social_box svg {
	width: 14px;
	height: 14px;
}
.social_box a.facebook:hover { background-color: var(--facebook-color) }
.social_box a.instagram:hover { background-color: var(--instagram-color) }
.social_box a.youtube:hover { background-color: var(--youtube-color) }


.moment_watch { overflow: hidden }
.moment_watch .moment_modal { display: grid }
.moment_modal {
	position: fixed;
	inset: 0;
	z-index: 9;

	display: none;
	align-items: center;
	justify-items: center;
	background-color: rgb(0, 0, 0, .85);
	backdrop-filter: blur(4px);
}
.watch_boxes {
	display: flex;
	flex-direction: column;
	align-items: center;
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
	gap: 25px;
	scrollbar-width: none;

	height: 100vh;
	padding: 25px 0 55px;
}
.watch_boxes::-webkit-scrollbar { display: none }
.watch_box {
	display: flex;
	max-height: 90vh;
	width: auto;
	position: relative;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}
.video_player {
	display: grid;
	overflow: hidden;
	border-radius: 15px;
	aspect-ratio: 9 / 16;
	position: relative;
}
.video_player video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.moment_modal .video_player button {
	position: absolute;
	background-color: transparent;
	border-radius: 0;
	inset: 0;
	width: auto;
	height: auto;
	font-size: 56px;
	cursor: pointer;
	z-index: 1;
}
.video_player button i {
	width: 64px;
	height: 64px;
	background-color: rgb(255, 255, 255, .5);
	border-radius: 50%;
}
.moment_modal .video_player button:hover { background-color: transparent }
.video_player button.hide { opacity: 0 }
.video_tools {
	position: absolute;
	right: -55px;
	bottom: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.moment_modal button {
	background-color: rgb(255, 255, 255, .025);
	color: var(--white-color);
	font-size: 28px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 32px;
	cursor: pointer;
	place-items: center;
}
.moment_modal button:hover { background-color: rgb(255, 255, 255, .25) }
.moment_modal .btn_close {
	position: absolute;
	top: 15px;
	right: 15px;
}
.video_switch {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	gap: 15px;
}
.video_switch button { font-size: 48px }