﻿
.league-table .table-banner {
	width: 100%;
	position: relative;
	height: 276px;
}

.table-list .pagination {
	position: relative;
	border-top: 1px solid rgba(255,255,255,0.3)
}

.table-module-wrapper {
	position: relative;
	background: #f7f7f9;
}

.table-module-wrapper::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 1px solid #6d18e9;
	background: radial-gradient(circle at 25% 15%, rgb(20,130,255, 0.2) 0%, rgba(216, 216, 216, 0.5) 30%, transparent), 
 		radial-gradient(circle at 25% 80%, rgb(20,130,255, 0.2) 0%, rgb(216, 216, 216) 30%, transparent), 
 		radial-gradient(circle at 80% 35%, rgb(106,0,234, 0.2) 0%, rgba(216, 216, 216, 0.5) 30%, transparent), 
 		radial-gradient(circle at 80% 80%, rgb(106,0,234, 0.2) 0%, rgb(216, 216, 216) 30%, transparent);
}

.table-banner .table-banner__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.table-banner .table-banner__content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.table-banner .table-banner__content .table-banner__content-inr {
	text-align: center;
}

.table-banner .table-banner__content .table-banner__content-inr h1,
.table-banner .table-banner__content .table-banner__content-inr h2,
.table-banner .table-banner__content .table-banner__content-inr h3,
.table-banner .table-banner__content .table-banner__content-inr h4,
.table-banner .table-banner__content .table-banner__content-inr p {
	display: block;
	color: #fff;
}

.table-banner .table-banner__content .table-banner__content-inr p {
	margin: 0;
}

.table-filters {
	padding: 40px 0;
}

.table-filters label{
	font-size: 12px;
	text-transform: uppercase;
	color: #474747;
	margin-left: 12px;
}

.table-filters button{
	text-transform: uppercase;
	font-weight: 400;
	font-size: 16px;
	padding: 20px 10px;
	line-height: normal;
}

.table-filters select {
	padding: 20px 5px;
	line-height: normal;
	margin-bottom: 25px;
}

@media (min-width: 776px) {
	.table-filters {
		padding: 55px 0 65px;
	}

	.table-filters button {
		margin-top: 25px;
	}

	.table-filters select {
		margin-bottom: 0;
	}
}

.introduction-text {
	position: inherit;
	text-align: center;
	margin: 0;
	color: #474747;
}

/* TABLE */
.table-list > .container {
	padding-bottom: 40px;
}

.table-wrapper {
	position: relative;
	width: 100%;
	overflow: auto;
}

.table-wrapper .table {
	min-width: 1200px;
}

.table {
	position: relative;
	width: 100%;
}

.table .table-row {
	display: flex;
	margin-bottom: 3px;
}

.table a.table-row {
	outline: none;
}

.table .table-row:nth-child(even) .table-td,
.table .table-row:nth-child(even) .table-th {
	background-color: #fff;
}

.table .table-row:nth-child(odd) .table-td,
.table .table-row:nth-child(odd) .table-th {
	background-color: #f7f7f9;
}

.table .table-row .table-td {
	color: #474747;
	font-size: 14px;
	flex: 1 1 0px;
	padding: 15px 0;
	text-align: center;
	font-weight: 700;

	overflow-wrap: break-word;
    /* For Firefox */
	word-break: break-all;

	/* For Chrome and IE */
	word-wrap: break-word;

    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.table .table-row .table-td.small {
	max-width: 70px;
}

.table .table-row .table-td.active {
	color: #6d18e9;
}


.table .table-row .table-th {
	position: relative;
	color: #474747;
	font-size: 14px;
	font-weight: 700;
	width: 160px;
	padding: 15px 0;
	padding-left: 20px;
}

.table .table-row .table-th::before {
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.table .table-row:nth-child(odd) .table-th::before {
	background-color: #6d19e9;
}
.table .table-row:nth-child(even) .table-th::before {
	background-color: #1482ff;
}

.table .table-row.table-sort .table-th::before {
	background-color: transparent;
}

.table .table-row .table-th .table-sort-btn {
	margin: 0;
}

.table .table-row .table-td.light {
	font-weight: 400;
}

.table .table-row .table-td.limited-large {
	min-width: 130px;
}

.table .table-row .table-td.limited-small {
	min-width: 85px;
}

.table .table-row .table-td.position {
	flex: unset;
	width: 50px;
}

.table .table-row .table-td .star-rating {
	display: flex;
	justify-content: center;
}

.table-sort-btn {
	background: transparent;
	border: 0;
	font-size: 12px;
	text-transform: uppercase;
	color: #474747;
	font-weight: 400;
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0 auto;
}
.table-sort-btn:hover {
	background: transparent;
	color: #6d18e9;	
}

.active .table-sort-btn,
.table-sort-btn.active {
	color: #6d18e9;
}

.table-sort-btn .sort-btn-icons {
	margin-left: 5px;
}

	.table-sort-btn i {
		display: none;
	}

	.table-sort-btn[data-direction="true"]:not([data-sort-active$=e]) .fa-chevron-up {
		display: block;
	}

	.table-sort-btn[data-direction="false"]:not([data-sort-active$=e]) .fa-chevron-down {
		display: block;
	}

	.table-sort-btn[data-sort-active="true"] .fa-chevron-up {
		color: #6d18e9;
		display: block;
	}

	.table-sort-btn[data-sort-active="false"] .fa-chevron-down {
		color: #6d18e9;
		display: block;
	}

.sort-btn-icons .fa {
	font-size: 10px;
}

.sort-btn-icons .fa-chevron-up {
	margin-bottom: 10px;
}

@media (max-width: 1024px) {
	.table .table-head {
		display: table;
		overflow: auto;
		width: 100%;
		position: sticky;
		z-index: 4;
		top: 0;
	}

	.table .table-body {
		position: relative;
		display: block;
		height: 100vh;
		width: 100%;
	}

	.table-row .table-th.sticky,
	.table-row .table-td.sticky {
		position: sticky;
		z-index: 2;
	}

	.table-row .table-th.sticky{
		left: 50px;
	}

	.table-row .table-td.sticky{
		left: 0;
	}

	.table-list {
		position: relative;
		padding-top: 30px;
	}

	.table-list .scroll-icon-x {
		position: absolute;
		z-index: 2;
		text-transform: uppercase;
		font-size: 10px;
	}

	.table-list .scroll-icon-x .fa {
		font-size: 20px;
	}

	.table-list .scroll-icon-x {
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		margin-top: 3px;
		top: 0;
	}

	.table-list .scroll-icon-x .fa {
		margin-left: 3px;
	}
}

@media (min-width: 1025px){
	.table-wrapper .table {
		min-width: 950px;
	}

	.table-list > .container {
		padding-bottom: 75px;
	}
	
	.table .table-row:nth-child(odd) .table-td,
	.table .table-row:nth-child(odd) .table-th {
		background-color: #f7f7f9;
		background-color: rgba(255,255,255,0.3);
	}

	.table .table-row.table-sort .table-td,
	.table .table-row.table-sort .table-th {
		background-color: transparent;
	}

	.table .table-row .table-td.position {
		background: transparent;
	}

	.table-list .scroll-icon-x {
		display: none;
	}
}






/* start rating */
.star-rating--large .star-rating__average {
	display: inline-block;
	vertical-align: middle;
	font-size: 32px;
	line-height: normal;
	font-weight: 800;
	color: #474747;
	margin-right: 5px;
}

.star-rating--large .star-rating__star {
	font-size: 25px;
}

.star-rating--large .star-rating__value {
	text-transform: uppercase;
	font-size: 14px;
}

.star-rating--large .star-rating__description {
	text-transform: uppercase;
	font-size: 11px;
}

@media (min-width: 640px) {
	.star-rating--large .star-rating__average {
		font-size: 38px;
	}

	.star-rating--large .star-rating__star {
		font-size: 32px;
	}

	.star-rating--large .star-rating__value {
		font-size: 16px;
	}

	.star-rating--large .star-rating__description {
		font-size: 16px;
	}
}

.star-rating--large.star-rating--side-box {
	padding: 5px 10px;
}

.star-rating--large.star-rating--side-box .h5 {
	display: block;
}

.star-rating--large.star-rating--side-box .star-rating__average {
	font-size: 34px;
}

.star-rating--large.star-rating--side-box .star-rating__star {
	font-size: 26px;
	line-height: normal;
	margin-right: 0;
}

.star-rating--large.star-rating--side-box .star-rating__value {
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin-bottom: 20px;
}

.star-rating--large.star-rating--side-box .star-rating__value span {
	text-decoration: underline;
}

.star-rating--large.star-rating--side-box .star-rating__description {
	text-transform: none;
	display: flex;
	align-items: center;
}

.star-rating--large.star-rating--side-box .star-rating__description .fa {
	font-size: 30px;
	line-height: normal;
	margin-right: 10px;
}

.star-rating--large.star-rating--side-box .star-rating__description span {
	font-size: 14px;
	line-height: normal;
	font-weight: 600;
}

