@import
	url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css");

html, body {
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	height: 100%;
	color: #000;
}

h1, h2, h3 {
	font-weight: 900;
}

h1 span {
	font-weight: 300;
}

p {
	font-weight: 300;
}

.main {
	width: 100%;
	height: auto;
	position: relative;
	background-image: url(../images/BackgroundHD.jpg);
	background-size: cover;
	background-position: center bottom;
	background-attachment: fixed;
}

.main-container {
	width: 100%;
	height: auto;
	position: relative;
	background-image: url(../images/BackgroundHD.jpg);
	background-size: cover;
	background-position: center bottom;
	background-attachment: fixed;
	margin-top: 62px;
}

.form-text {
    text-align: left;
    padding-top: 4px;
    color: #333333;
    font-size: 1em;
    font-weight: 500;
    
	@media (max-width: 991px) {
		padding-left: 48px;
	}
}

.loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('../images/loader.gif') 50% 50% no-repeat rgba(0, 0, 0, 0.5);
}

#wrapper {
  width: 100%;
}


.info-message-block {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 20px;
}

.info-message {
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0px 4px 18px #9b9b9b80;
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    justify-content: center;
    font-size: 16px;
    width: 900px;
    color: #cccccc;
    text-align: center;
}



.players-header {
	margin-top: 20px;
	font-weight: bold;
}

.player-add-text {
	margin-top: 20px;
	text-align: center;
}

.player-form {
	position: relative;
	margin-top: 30px;
}

.player-form ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
	border: none;
}

.player-form ul li {
	width: calc(33.33% - 10px);
	display: flex;
	margin: 5px;
	padding: 10px;
	position: relative;
	background: #1e4766;
	color: #fff;
	border: none;
	border-radius: 10px;
}

.player-form ul li .form-check {
	margin-bottom: 0;
}

.player-form ul li .form-check input, .player-form ul li .form-check label
	{
	cursor: pointer;
}

.player-form label {
	text-align: left;
	padding-left: 10px;
	padding-top: 8px;
	font-weight: bold;
}

.thankyou-box {
	color: #fff;
	text-align: center;
}

.thankyou-box h2 {
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #1e4666;
}

.thankyou-box h6 {
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #1e4666;
}

.box-blur::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	background: rgb(255, 255, 255);
	top: 0;
	border-radius: 8px;
	z-index: -1;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.5);
}

.main::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/* background-color: rgb(48 48 48 / 50%); */
	z-index: -1;
}

.logo_section {
	padding-bottom: 30px;
}

.logo_section img {
	max-width: 250px;
}

body .btn-primary {
	background: #1e4766;
	border-color: #1e4766;
	transition: 0.2s all linear;
}

body .btn-primary:hover {
	background: rgba(225, 47, 41, 1);
	border-color: rgba(225, 47, 41, 1);
}
/* our client */
.our_client {
	padding: 5vw;
	background-color: #1e4766;
}

.our_client ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

.our_client ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}
/* footer */
.footer_main {
	text-align: center;
	padding: 3vw 0;
	background-color: #000;
}

.footer_main ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer_main ul li {
	width: 50px;
	height: 50px;
	background-color: #f3d703;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 10px;
	color: #000;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}

.footer_main ul li a {
	color: #fff;
}

.footer_main ul li::before {
	content: "";
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background-color: #1e4666;
	z-index: 0;
	height: 0;
	transition: 0.2s all linear;
}

.footer_main ul li:hover::before {
	height: 100%;
}

.footer_main ul li a {
	position: relative;
}

.container {
	text-align: left;
	padding: 20px;
}

.container-center {
	text-align: center;
	padding: 20px;
}

.button-row {
    gap: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
	
	@media screen and (max-width: 679px) {
        gap: 20px;
        flex-direction: column;
    	justify-content: space-evenly;
    }
}

/* player tracking section Start */
.player-tracking {
	position: relative;
	padding: 30px;
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 100vh;
}

.player-tracking_inner {
	/* width: 100%;
        background: #f3d703;
        background: linear-gradient(180deg, rgba(243, 215, 3, 1) 25%, rgba(243, 215, 3, 0.695098107602416) 100%);
        position: relative;
        text-align: center;
        padding: 30px; */
	width: 100%;
	background: #f3d703;
	background: linear-gradient(180deg, rgba(243, 215, 3, 1) 25%,
		rgba(243, 215, 3, 0.695098107602416) 100%);
	position: relative;
	text-align: center;
	padding: 30px;
	height: auto;
}
/* New----------10/10/2022 */
.tracking-form .col-emial input {
	max-width: 100%;
	width: 360px;
}

.footer_main ul li a i {
	color: #000;
}

.footer_main ul li a:hover i {
	color: #fff;
}

/* ---------------------- */
.tracking-heading {
	width: 100%;
	position: relative;
}

.tracking-heading .login {
	position: absolute;
	top: -30px;
	right: 0;
	
	@media screen and (max-width: 800px) {
        position: relative;
        top: 0px;
    }
}

.tracking-heading .logo {
	position: relative;
	flex-direction: column;
	justify-content: center;
	padding: 15px;
	display: inline-flex;
	max-width: 250px;
	height: auto;
}

.tracking-heading .logo img {
	height: auto;
	width: auto;
	max-width: 100%;
}

.tracking-heading .app-logo {
	position: relative;
	flex-direction: column;
	justify-content: center;
	padding: 15px;
	display: inline-flex;
	max-width: 250px;
	height: auto;
	
	@media ( max-width : 991px) {
		display: none;
	}
}

.tracking-heading .app-logo img {
	height: auto;
	width: auto;
	max-width: 100%;
}

.tracking-heading h3 {
	margin-top: 15px;
	text-transform: none;
}

@media (max-width: 679px) {
	.logo-header {
		display: none;
	}
}

.player-tracking .title {
	text-align: left;
	padding-top: 40px;
	border-bottom: 3px solid #000;
}

.player-tracking .form-label {
	text-align: right;
	padding-top: 8px;
	font-weight: bold;
    
	@media (max-width: 991px) {
		text-align: left;
	}
}

.modal-background {
	background-color: #f3d703;
}

.modal-header-spt {
	background-color: #000000;
	color: #f3d703;
}

.modal-body .form-label {
	text-align: right;
	padding-top: 8px;
	font-weight: bold;
}

.payment-thanks {
	font-family: "Segoe UI","Roboto","Helvetica Neue","Ubuntu",sans-serif;
	font-size: 24px;
	font-weight: 700;
	padding-top: 24px;
}

.payment-notice {
	font-family: "Segoe UI","Roboto","Helvetica Neue","Ubuntu",sans-serif;
	font-weight: 400;
	color: #222;
}

.tracking-heading .btn-dark {
	background-color: #000;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 2px;
	margin: 30px 0 45px 0;
	color: rgb(243, 215, 3);
}

.game-box {
	background-color: rgba(0, 0, 0, 0.753);
	height: 100%;
	display: flex;
	padding: 15px;
	min-height: 300px;
	position: relative;
	overflow: hidden;
}

.game-box::before {
	content: '';
	content: '';
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	mix-blend-mode: hard-light;
	background-color: rgba(243, 215, 3, 0.4);
	z-index: 1;
}

.game-box img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
	-webkit-filter: saturate(0);
	filter: saturate(0);
	opacity: 0.8;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}

.game-box:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.game-box h4 {
	text-transform: capitalize;
	font-size: 20px;
	width: 100%;
	display: block;
	font-weight: 700;
}

.game-box .game-btn {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	border: none;
	z-index: 2;
	color: #fff;
	padding: 25px;
	font-weight: bold;
	font-size: 16px;
	word-break: break-word;
	transition: all 0.5s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-transform: capitalize;
}

.game-box .game-btn small {
	font-size: 80%;
	word-break: keep-all;
	text-transform: lowercase;
}

.game-box .game-btn::after {
	border-right: 1px solid #000;
	border-left: 1px solid #000;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
}

.game-box .game-btn::before {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
}

.game-box .game-btn::before, .game-box .game-btn::after {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
}

.game-box:hover .game-btn::before, .game-box:hover .game-btn::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.game-box .game-btn:hover {
	color: #000;
	background-color: rgba(243, 215, 3, 0.89);
}

.tracking-form, .tracking-form .form {
	width: 100%;
	position: relative;
}

.tracking-form .table-responsive {
	width: 100%;
}

.tracking-form .table-responsive .table {
	width: 100%;
	border: none;
}

.tracking-form .table-responsive .table th, .tracking-form .table-responsive .table td
	{
	border-color: rgba(0, 0, 0, 0.2);
	padding: 10px;
	vertical-align: top;
	position: relative;
}

.tracking-form .table-responsive .table td:last-child {
	vertical-align: middle;
}

.tracking-form .form-control, .tracking-form .form-select {
	padding: 8px 15px;
	border-radius: 0px;
	font-size: 16px;
	text-align: left;
	width: 100%;
	min-width: 200px;
}

.tracking-form .form-control:focus, .tracking-form .form-select:focus {
	outline: none;
	border-color: rgba(0, 0, 0, 0.95);
	box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .15);
}

.tracking-form .invalid-feedback, .tracking-form .valid-feedback {
	font-size: 14px;
}

.subscribe-btn {
	background-color: #000;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.tracking-form .col-emial {
	padding: 0 15px;
}

.tracking-form .btn-add, .tracking-form .btn-delete {
	font-size: 18px;
}

.player-stats-back {
	display: flex;
	flex-direction: row;
	padding: 0px 25px 10px 0px;
	cursor: pointer;
	width: fit-content;
	text-align: left;
	gap: 10px;
}

.player-stats-header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 25px 0px 25px;
	margin-bottom: -10px;
}

.player-stats-player {
	text-align: center;
	font-weight: bold;
}

.player-stats-record {
	text-align: center;
}

.player-stats-form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px;
}

.player-stats-form-input {
	width: 400px;
}

.season-totals-border {
	border-top: 3px solid #444;
}

.season-totals-title {
	text-align: right;
	font-weight: bold;
}

.season-totals {
	text-align: center;
	font-weight: bold;
}



.playerListBody {
	margin: 20px;
}

.playerListHeader {
    margin: 0px 10px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-color: #b0b3b9;
}

.playerListContent {
	padding: 8px 0px;
	gap: 8px;
}

.playerListRow {
    margin: 0px 10px;
}


.info-container {
	display: flex;
	flex-direction: row;
	gap: 40px;
	padding: 48px;
	width: 100%;
	
	.info-block {
		display: flex;
		flex-direction: column;
        background-color: #ffffff80;
	    border: 2px solid;
	    border-color: #000;
		border-radius: 16px;
        box-shadow: 0px 4px 18px #000;
		padding: 16px 32px;
		width: 100%;
	}
	
	.info-header {
		display: flex;
    	justify-content: center;
    	font-size: 22px;
		font-weight: 600;
		width: 100%;
	}
	
	.inner-block {
		display: flex;
		flex-direction: column;
		padding-top: 16px;
		gap: 8px;
	}
	
	.inner-header {
		display: flex;
    	justify-content: left;
    	font-size: 18px;
		font-weight: 600;
		width: 100%;
	}
	
	.inner-text {
		display: flex;
    	justify-content: left;
    	font-size: 16px;
		font-weight: 400;
		width: 100%;
	}
}
	
.email-block {
	display: flex;
	flex-direction: column;
	padding: 0px 48px;
	gap: 16px;
	
	.email-header {
    	font-size: 24px;
		font-weight: 600;
	}
	
	.email-text {
		display: flex;
        flex-direction: column;
    	justify-content: left;
    	font-size: 16px;
		font-weight: 400;
		width: 100%;
	}
}



@media ( min-width : 1200px) {
	.modal-player-list {
		max-width: 1100px;
	}
}

/* player tracking section End */
@media ( max-width : 1200px) {
	.tracking-game .row .box-col {
		margin-bottom: 30px;
	}
}

@media ( max-width : 992px) {
	html, body {
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		height: 100%;
	}
	.subscribe-section {
		padding: 30px;
	}
	.subscribe-inner {
		padding: 25px;
	}
	.player-form ul li {
		width: calc(50% - 10px);
	}
	.player-tracking_inner {
		padding: 15px;
	}
	.tracking-form .table-responsive .table tr {
		display: flex;
		flex-direction: column;
	}
	.tracking-form .table-responsive .table tr th {
		display: none;
	}
	.tracking-form .table-responsive .table th, .tracking-form .table-responsive .table td
		{
		border: none;
		padding: 5px 0;
	}
	.tracking-form .table-responsive .table td:last-child {
		padding-bottom: 15px;
	}
	.tracking-form .table-responsive .table td:first-child {
		border-top: 2px solid rgba(0, 0, 0, 0.5);
		padding-top: 15px;
	}
	.tracking-form .col-emial {
		padding: 0;
	}
}

@media ( max-width : 991px) {
	.our_client ul li img {
		max-width: 100%;
	}
	.our_client ul li {
		width: calc(100%/ 6 - 20px);
		display: flex;
		align-items: center;
	}
}

@media ( max-width : 767px) {
	.our_client ul li {
		width: calc(100%/ 2 - 20px);
		justify-content: center;
	}
	.our_client ul {
		flex-wrap: wrap;
		row-gap: 30px;
		align-items: center;
		justify-content: center;
	}
	.footer_main {
		padding: 30px 0;
	}
	.our_client {
		padding: 30px;
	}
	.game-box .game-btn {
		padding: 10px;
	}
}

@media ( max-width : 480px) {
	.player-form ul li {
		width: calc(100% - 10px);
	}
}