

/* Start:/local/templates/sport/components/bitrix/menu/section/style.css?1721250973799*/
.sub-menu .items {
	/*display: flex;
	gap: 0 2rem;*/
	list-style-type: none;
}

.sub-menu .items a {
	font-weight: 700;
	color: #fff;
	transition: all .3s;
}

.sub-menu .items a:hover, .sub-menu .items a.selected {
	color: var(--color-secondary);
	text-decoration: none;
}

.sub-menu .tns-nav {
	display: flex;
	justify-items: stretch;
}

.sub-menu .tns-outer .tns-ovh {
	padding-bottom: 2rem;
}

.sub-menu .tns-outer .tns-ovh + .tns-nav {
	margin: 0 -15px 2rem;
}

.sub-menu .tns-nav button {
	width: 100%;
	height: 4px;
	border-radius: 0;
	border: 0;
	background: #D9D9D9;
}

.sub-menu .tns-nav button.tns-nav-active {
	background: var(--color-secondary);
}

@media(max-width: 575px) {
	.sub-menu .items a {
		font-size: .875rem;
	}

	.sub-menu .tns-outer .tns-ovh {
		padding-bottom: 1.5rem;
	}
}
/* End */


/* Start:/local/templates/sport/components/bitrix/news/players/bitrix/news.detail/.default/style.css?17346954176083*/
.player-detail {
	margin-bottom: 2rem;
}

/*Top*/
.player-detail .data .row {
	display: grid;
	grid-template-columns: 1fr 4fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

@media(max-width: 991px) {
	.player-detail .data .row {
		grid-template-columns: 1fr 3fr;
	}
}

@media(max-width: 767px) {
	.player-detail .data .row {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1rem;
	}
}

.player-detail .all-players {
	text-align: right;
	padding: .5rem 0;
}

.player-detail .all-players a {
	font-size: .875rem;
	color: var(--color-main);
}

.player-detail .player-top {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.player-detail .player-top > .all-players {
	display: none;
}

@media(max-width: 991px) {
	.player-detail .player-top {
		grid-template-columns: 1fr 2fr;
	}
}

@media(max-width: 767px) {
	.player-detail .player-top {
		grid-template-columns: 1fr;
		margin-top: -2rem;
	}

	.player-detail .player-top > .all-players {
		display: block;
	}
}

.player-detail .player-top .photo {
	position: relative;
	height: 415px;
	max-width: 320px;
	margin: 0 auto;
	width: 100%;
	background: #eee;
}

.player-detail .player-top .photo:before,
.player-detail .player-top .photo:after {
	content: "";
	width: 0;
	height: 0;
	z-index: 2;
	position: absolute;
}

.player-detail .player-top .photo:before {
	border-bottom: 30px solid transparent;
	border-right: 30px solid transparent;
	border-left: 30px solid #fff;
	left: 0;
	top: 0;
}

.player-detail .player-top .photo:after {
	border-top: 30px solid transparent;
	border-left: 30px solid transparent;
	border-right: 30px solid #fff;
	right: 0;
	bottom: 0;
}

.player-detail .player-top .photo img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.player-detail .player-top .name-position {
	border-top: 1px solid #EDEDED;
	border-bottom: 1px solid #EDEDED;
	padding: 1.5rem 0;
}


.player-detail .player-top .name-position .country {
	float: right;
}

.player-detail .player-top h1 {
	margin-bottom: 1rem;
}

.player-detail .player-top .position {
	color: var(--color-main);
	font-family: "Montserrat";
}

@media(max-width: 767px) {
	.player-detail .player-top .name-position {
		padding-top: 0;
		border-top: 0;
		text-align: center;
	}

	.player-detail .player-top .name-position .country {
		display: none;
	}
}

/* Data */
.player-detail .data .row .number {
	position: relative;
	z-index: 100;
	margin-left: -2rem;
	background: var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat";
	font-weight: 700;
	font-size: 5.5rem;
	color: #fff;
	text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000,
	1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

.player-detail .data .seasons {
	color: #8F8F8F;
	text-align: right;
}

.player-detail .data .stats {
	display: grid;
	grid-template-columns: 3fr 1fr;
}

.player-detail .data .stats .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
}

.player-detail .data .stats .stat {
	text-align: center;
	border: 2px solid #e8e8e8;
	background: #F5F5F5;
	padding: 1rem;
}

.player-detail .data .stats .stat .value {
	font-family: "Montserrat";
	font-size: 2rem;
	font-weight: 700;
}

.player-detail .data .stats .stat .name {
	color: #8f8f8f;
	font-size: .875rem;
}

@media(max-width: 991px) {
	.player-detail .data .stats {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 767px) {
	.player-detail .data .all-players {
		display: none;
	}

	.player-detail .data .row .number {
		margin: -50px auto 0;
		width: 100%;
		max-width: 175px;
		display: none;
	}

	.player-detail .data .seasons {
		text-align: left;
	}
}

@media(max-width: 400px) {
	.player-detail .data .stats .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/*Biography*/
.player-detail .bio-wrapper {
	padding: 3rem 0;
}

.player-detail .bio-wrapper .h2 {
	margin-bottom: 2rem;
	font-weight: 700;
}

.player-detail .bio {
	display: grid;
	grid-template-columns: 75% 25%;
}

.player-detail .bio .info {
	display: grid;
	grid-template-columns: 1fr 4fr;
}

.player-detail .bio .info .characteristics .item {
	display: flex;
	margin-bottom: 1.5rem;
	gap: .5rem;
}

.player-detail .bio .info .characteristics .item .title {
	color: #8F8F8F;
}

.player-detail .bio .info .details p {
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.player-detail .bio .info .details p:last-child {
	margin-bottom: 0;
}

.player-detail .bio .right .h2 {
	margin-bottom: 1rem;
}

.player-detail .bio .right .player-good-slider {
	margin-bottom: 1rem;
}

.player-detail .bio .right .btn {
	width: 100%;
}

@media(max-width: 991px) {
	.player-detail .bio {
		grid-template-columns: 65% 35%;
	}

	.player-detail .bio .info {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 767px) {
	.player-detail .bio-wrapper {
		padding: 1rem 0 2rem;
	}

	.player-detail .bio {
		grid-template-columns: 100%;
	}

	.player-detail .bio .info {
		grid-template-columns: 1fr 3fr;
	}
}

@media(max-width: 575px) {
	.player-detail .bio .info {
		grid-template-columns: 1fr;
	}
}


/* Tabs */
.player-detail .tabs-wrapper .tabs {
	display: flex;
	border-top: 1px solid #EDEDED;
	border-bottom: 2px solid #EDEDED;
}

.player-detail .tabs-wrapper .tns-nav {
	display: none;
}

.player-detail .tabs-wrapper .tabs .tab {
	font-weight: 700;
	padding: 1.5rem 2rem;
	cursor: pointer;
	margin-bottom: -2px;
	border-bottom: 2px solid transparent;
	transition: all .3s;
}

.player-detail .tabs-wrapper .tabs .tab.active, .player-detail .tabs-wrapper .tabs .tab:hover {
	border-color: var(--color-main);
}

.player-detail .tabs-wrapper .tabs-content .tab-content {
	padding: 3rem 0;
	line-height: 2;
	display: none;
}

.player-detail .tabs-wrapper .tabs-content .tab-content.active {
	display: block;
}

.player-detail .tabs-wrapper .tabs-content .stat-wrapper {
	overflow: scroll;
}

.player-detail .tabs-wrapper .tabs-content .related-news {
	padding-bottom: 0;
}

.player-detail .tabs-wrapper .tabs-content .related-news .divider,
.player-detail .tabs-wrapper .tabs-content .related-news .h3{
	display: none;
}
/* End */


/* Start:/local/templates/sport/components/bitrix/news.list/player_photo_slider/style.css?17198663601212*/
.player-photo-slider {
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	padding: 1.25rem 0;
	margin-top: 1rem;
}

.player-photo-slider .list .item .preview {
	padding-bottom: 60%;
	position: relative;
	overflow: hidden;
	display: block;
}

.player-photo-slider .list .item .preview img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Controls */
.player-photo-slider .tns-outer {
	position: relative;
}

.player-photo-slider .tns-controls {
	position: absolute;
	top: 45%;
	left: -30px;
	right: -30px;
	display: flex;
	justify-content: space-between;
}

.player-photo-slider .tns-controls button {
	height: 29px;
	width: 29px;
	border-radius: 50%;
	border: 0;
	background: #F2F2F2;
	color: #F2F2F2;
	position: relative;
	z-index: 1000;
}

.player-photo-slider .tns-controls button:before {
	content: "";
	background: url(/local/templates/sport/components/bitrix/news.list/player_photo_slider/images/icon_arrow_left.svg) center no-repeat;
	display: block;
	height: 13px;
	width: 8px;
	position: absolute;
	left: 10px;
}

.player-photo-slider .tns-controls button:last-child:before {
	transform: rotate(180deg);
}

@media(max-width: 1240px) {
	.player-photo-slider .tns-controls {
		left: -10px;
		right: -10px;
	}
}
/* End */


/* Start:/local/components/statistic.sport/statistic.sport.player.summary/templates/player_full/style.css?1731682881547*/
.player-summary-full {
    font-size: .75rem;
}

.player-summary-full  table {
    border-collapse: collapse;
    min-width: 100%;
}

.player-summary-full  table th, .player-summary-full td {
    padding: .5rem;
    background: #F0F0F0;
    border-bottom: 2px solid #fff;
}

.player-summary-full  table th {
    background: #0D0F0F;
    color: #fff;
}

.player-summary-full  table td.title {
    font-weight: 700;
}

.player-summary-full  table td.hover, .player-summary-full  table th.hover {
    background: var(--color-main);
    color: #fff;
}
/* End */


/* Start:/local/components/statistic.sport/statistic.sport.player.games/templates/player_games/style.css?17316828815161*/
.player-stat-module {
    font-size: .75rem;
}

.player-stat-module  table {
    border-collapse: collapse;
    min-width: 100%;
}

.player-stat-module  table th, .player-stat-module td {
    text-align: center;
    padding: .5rem;
    background: #F0F0F0;
    border-bottom: 2px solid #fff;
}

.player-stat-module  table th {
    background: #0D0F0F;
    color: #fff;
}

.player-stat-module  table td.title {
    font-weight: 700;
}

.player-stat-module  table td.hover, .player-stat-module  table th.hover {
    background: var(--color-main);
    color: #fff;
}


/* ---------------------------------------- */
.d-none {
    display: none !important;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  position: absolute;
  display: block;
  /* bottom: 50%; */
  top: 4px;
  content: "▲";
  content: "▲"/"";
}
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  position: absolute;
  display: block;
  /* top: 50%; */
  bottom: 4px;
  content: "▼";
  content: "▼"/"";
}
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc,
table.dataTable thead > tr > td.dt-ordering-asc,
table.dataTable thead > tr > td.dt-ordering-desc {
  position: relative;
  /* padding-right: 30px; */
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
  position: absolute;
  /* right: 12px; */
  right: 50%;
  top: 0;
  bottom: 0;
  width: 12px;
  transform: translate(50%, 0);
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  left: 0;
  opacity: 0.2;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc {
  cursor: pointer;
}
table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(0, 0, 0, 0.05);
  outline-offset: -2px;
}
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled span.dt-column-order:after, table.dataTable thead > tr > th.sorting_asc_disabled span.dt-column-order:before,
table.dataTable thead > tr > td.sorting_desc_disabled span.dt-column-order:after,
table.dataTable thead > tr > td.sorting_asc_disabled span.dt-column-order:before {
  display: none;
}
/* End */


/* Start:/local/templates/sport/components/bitrix/news.list/media_photo_gallery/style.css?1719866360798*/
.photo-gallery .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}

.photo-gallery .grid .item .preview {
	padding-bottom: 66%;
	position: relative;
	overflow: hidden;
	display: block;
}

.photo-gallery .grid .item .preview img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media(max-width: 768px) {
	.photo-gallery .grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.section-info .grid {
		grid-template-columns: 1fr;
	}

	.section-info .grid .left {
		margin-bottom: 2rem;
	}
}

@media(max-width: 575px) {
	.photo-gallery .grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-info .grid .right {
		display: none;
	}
}

@media(max-width: 400px) {
	.photo-gallery .grid {
		grid-template-columns: 1fr;
	}
}
/* End */


/* Start:/local/templates/sport/components/bitrix/news.list/media_video/style.css?17225146112217*/
.video-list .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    margin-bottom: 3rem;
}

@media(max-width: 991px) {
    .video-list .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 575px) {
    .video-list .grid {
        grid-template-columns: 1fr;
    }
}

.video-list .grid .item {
    border: 1px solid #DADADA;
    position: relative;
}

.video-list .grid .item a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.video-list .grid .item .tags {
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 10;
    right: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.video-list .grid .item .tags  .tag {
    font-size: .625rem;
    color: #0D0F0F;
    background: #fff;
    padding: .25rem .5rem;
    text-transform: uppercase;
}

.video-list .grid .item .preview-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.video-list .grid .item .preview-img .overlay {
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-list .grid .item .news-date {
    color: #fff;
    font-size: .75rem;
    position: absolute;
    right: 1rem;
    top: .25rem;
    z-index: 10;
}


.video-list .grid .item:hover .preview-img img {
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
}

.video-list .grid .item .preview-img a {
    width: 100%;
    display: block;
    height: 100%;
    z-index: 1000;
}

.video-list .grid .item .preview-img img {
    transition: all .3s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-list .grid .item .news-body {
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    padding: .75rem;
    grid-template-columns: 4fr 1fr;
    align-items: end;
    color: #000;
}

.video-list .grid .item .news-body .name {
    font-weight: 600;
    color: #fff;
    font-size: .875rem;
    line-height: 1.5;
}

.video-list .grid .item .news-body  .play-icon {
    text-align: right;
}
/* End */


/* Start:/local/templates/sport/components/bitrix/news.list/news_slider/style.css?17212509732547*/
.related-news {
    margin-bottom: 4rem;
}

.related-news .divider {
    display: block;
    position: relative;
    border-top: 4px solid var(--color-secondary);
    width: 100%;
    content: "";
    margin-bottom: 4rem;
}

.related-news .h3 {
    margin-bottom: 2rem;
    font-weight: 700;
}

.related-news .items {
    display: flex;
    gap: 0 .5rem;
}

.related-news .item{
    border: 1px solid #DADADA;
    position: relative;
    padding-bottom: 1rem;
}

.related-news .item .tags {
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 10;
    right: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.related-news .item .tags .tag {
    font-size: .625rem;
    color: #0D0F0F;
    background: #fff;
    padding: .25rem .5rem;
    text-transform: uppercase;
}

.related-news .item .preview-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.related-news .item:hover .preview-img img {
    width: 120%;
    height: 120%;
    left: -5%;
    top: -5%;
}

.related-news .item .preview-img img {
    transition: all .3s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news .item .news-body {
    padding: 1rem;
}

.related-news .item .news-body .name a {
    color: #0D0F0F;
    font-size: .875rem;
}

.related-news .item .news-body .news-date {
    padding-top: .5rem;
    position: absolute;
    bottom: .5rem;
    left: 1rem;
    right: 1rem;
    color: #8F8F8F;
    font-size: .75rem;
}

.related-news .item .news-body .news-date span {
    display: inline-block;
    padding-left: 1.5rem;
    background: url(/local/templates/sport/components/bitrix/news.list/news_slider/images/icon_time.svg) left center no-repeat;
}


/* Controls */
.related-news .tns-outer {
    position: relative;
}

.related-news .tns-controls {
    position: absolute;
    top: 45%;
    left: -30px;
    right: -30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}

.related-news .tns-controls button {
    height: 29px;
    width: 29px;
    border-radius: 50%;
    border: 0;
    background: #F2F2F2;
    color: #F2F2F2;
    position: relative;
}

.related-news .tns-controls button:before {
    content: "";
    background: url(/local/templates/sport/components/bitrix/news.list/news_slider/images/icon_arrow_left.svg) center no-repeat;
    display: block;
    height: 13px;
    width: 8px;
    position: absolute;
    left: 10px;
}

.related-news .tns-controls button:last-child:before {
    transform: rotate(180deg);
}

@media(max-width: 1240px) {
    .related-news .tns-controls {
        left: -10px;
        right: -10px;
    }
}
/* End */


/* Start:/local/templates/sport/components/bitrix/news.list/players_slider/style.css?17327037853052*/
.players-list {
	margin-bottom: 3rem;
}

.players-list:before {
	content: "";
	display: block;
	height: 4px;
	background: var(--color-secondary);
	margin-bottom: 3rem;
}

/* Tabs */
.players-list .tabs {
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.players-list .tabs .tab {
	cursor: pointer;
	font-size: .75rem;
	color: #8F8F8F;
	border-radius: 3px;
	padding: .2rem .5rem;
	transition: all .3s;
}

.players-list .tabs .tab:hover {
	color:var(--color-main);
}

.players-list .tabs .tab.active {
	color: #fff;
	background: var(--color-main);
}

.players-list .tab-content {
	display: none;
}

.players-list .tab-content.active {
	display: block;
}


/*  Items */
.players-list .list .players-item {
	position: relative;
	overflow: hidden;
}

.players-list .list .players-item .photo {
	/*height: 250px;*/
	height: 290px;
	position: relative;
	background: #000;
	border-bottom: 3px solid var(--color-main);
	margin-bottom: .5rem;
}

.players-list .list .players-item .photo .country {
	position: absolute;
	z-index: 100;
	right: 1rem;
	bottom: .5rem;
}

.players-list .list .players-item .photo .number {
	z-index: 100;
	bottom: -30px;
	left: 0;
	position: absolute;
	font-size: 2.25rem;
	font-family: "Montserrat";
	color: var(--color-main);
	text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000,
	1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
	background: #fff;
	width: 60px;
	height: 50px;
	display: flex;
	align-items:center;
	justify-content: center;
	font-weight: 700;
}

.players-list .list .players-item .photo .preview_picture {
	transition: all .3s;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.players-list .list .players-item .photo a {
	display: block;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: 10;
}

.players-list .list .players-item .birthday {
	color: #8F8F8F;
	font-size: .75rem;
	text-align: right;
}

.players-list .list .players-item .name {
	text-align: center;
	margin: .5rem 0;
}

.players-list .list .players-item .name a {
	font-family: "Montserrat";
	color: #0D0F0F;
	font-weight: 700;
}

.players-list .list .players-item .position {
	text-align: center;
	font-size: .75rem;
}


/* Controls */
.players-list .tns-outer {
	position: relative;
}

.players-list .tns-controls {
	position: absolute;
	top: 45%;
	left: -30px;
	right: -30px;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
}

.players-list .tns-controls button {
	height: 29px;
	width: 29px;
	border-radius: 50%;
	border: 0;
	background: #F2F2F2;
	color: #F2F2F2;
	position: relative;
}

.players-list .tns-controls button:before {
	content: "";
	background: url(/local/templates/sport/components/bitrix/news.list/players_slider/images/icon_arrow_left.svg) center no-repeat;
	display: block;
	height: 13px;
	width: 8px;
	position: absolute;
	left: 10px;
}

.players-list .tns-controls button:last-child:before {
	transform: rotate(180deg);
}

@media(max-width: 1240px) {
	.players-list .tns-controls {
		left: -10px;
		right: -10px;
	}
}
/* End */
/* /local/templates/sport/components/bitrix/menu/section/style.css?1721250973799 */
/* /local/templates/sport/components/bitrix/news/players/bitrix/news.detail/.default/style.css?17346954176083 */
/* /local/templates/sport/components/bitrix/news.list/player_photo_slider/style.css?17198663601212 */
/* /local/components/statistic.sport/statistic.sport.player.summary/templates/player_full/style.css?1731682881547 */
/* /local/components/statistic.sport/statistic.sport.player.games/templates/player_games/style.css?17316828815161 */
/* /local/templates/sport/components/bitrix/news.list/media_photo_gallery/style.css?1719866360798 */
/* /local/templates/sport/components/bitrix/news.list/media_video/style.css?17225146112217 */
/* /local/templates/sport/components/bitrix/news.list/news_slider/style.css?17212509732547 */
/* /local/templates/sport/components/bitrix/news.list/players_slider/style.css?17327037853052 */
