﻿/* font imports -------------------------------------------------------------------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700');

/* end font imports ----------------------------------------------------------------------------------------------------------------------------------------------------- */


/* header styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */

#header{
	width: 100%;
	margin: 0px;
	padding: 20px 0px;
}

.header-left{
	text-align: left;
}

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

.header-left-badge{
	text-align: left;
}

.header-left-badge img{
	max-height: 120px;
}

.header-left-club-name{
	padding: 0px 0px 0px 20px;
}

.header-left-club-name h3{
	font-size: 28px;
	font-weight: 500;
	color: #282828;
	margin: 0px 0px 5px 0px;
	padding: 0px;
}

.header-left-club-name h4{
	font-size: 22px;
	font-weight: 500;
	color: rgba(40,40,40,0.7);
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

.header-right{
	text-align: right;
	display: flex;
	align-items: center;
}

.header-right img{
	max-height: 120px;
}

/* end header styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */


/* banner styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */

#banner{
	width: 100%;
	margin: 0px;
	padding: 0px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

#banner h3{
	font-size: 52px;
	font-weight: 500;
	color: #fff;
	margin: 0px;
	padding: 0px 0px 10px 0px;
	max-width: 600px;
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

#banner p{
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	margin: 0px;
	padding: 0px;
	line-height: 32px;
	max-width: 600px;
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

/* banner styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */


/* navigation styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */

#navigation{
	width: 100%;
	margin: 0px;
	padding: 0px 0px;
	background-color: var(--template-primary-colour);
}

#navigation ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#navigation ul li{
	display: inline-block;
	position: relative;
}

#navigation ul li a{
	display: flex;
	padding: 0px 20px;
	line-height: 60px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	cursor: pointer;
	align-items: center;
	-webkit-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}

#navigation ul li a i{
	padding: 0px 0px 0px 6px;
}

#navigation ul ul{
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 9999;
	min-width: 180px;
	background-color: #fff;
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.1);
	border-bottom: 3px solid var(--template-secondary-colour);
	opacity: 0px;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
}

#navigation ul li:hover > ul{
	opacity: 1;
	visibility: visible;
}

#navigation ul li:hover > a, #navigation ul li a.active{
	background-color: var(--template-secondary-colour);
	color: #fff;
}

#navigation ul ul li{
	width: 100%;
}

#navigation ul ul li a{
	white-space: nowrap;
	color: rgba(56,60,70,1);
	line-height: 22px;
	padding: 10px 20px;
}

/* end navigation styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */


/* mobile navigation styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */

#mobile-navigation{
	display: none;
	width: 100%;
	margin: 0px;
	padding: 10px 0px;
	background-color: var(--template-primary-colour);
	text-align: center;
}

#mobile-icon{
	position: relative;
	width: 40px;
	height: 40px;
	margin: 0px auto;
	cursor: pointer;
}

#mobile-icon span{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	background-color: #fff;
	transform: translate(-50%,-50%);
	transition: all 0.2s ease-in-out;
}

#mobile-icon.active span{
	background-color: transparent;
}

#mobile-icon span:before{
	content: '';
	position: absolute;
	top: -8px;
	left: 0px;
	width: 30px;
	height: 2px;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
}

#mobile-icon.active span:before{
	transform: rotate(-45deg);
	top: 0px;
}

#mobile-icon span:after{
	content: '';
	position: absolute;
	top: 8px;
	left: 0px;
	width: 30px;
	height: 2px;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
}

#mobile-icon.active span:after{
	transform: rotate(45deg);
	top: 0px;
}

#mobile-navigation-menu{
	display: none;
	width: 100%;
	background-color: var(--template-primary-colour);
}

#mobile-navigation-menu ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#mobile-navigation-menu ul li{
	width: 100%;
	position: relative;
}

#mobile-navigation-menu ul li:after{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 1px;
	filter: brightness(.82) opacity(.8);
	border-bottom: 1px solid var(--template-primary-colour);
}

#mobile-navigation-menu ul li a{
	display: block;
	margin: 0px;
	padding: 15px 20px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

#mobile-navigation-menu ul li a:hover{
	background-color: var(--template-secondary-colour);
}

#mobile-navigation-menu ul ul li a{
	padding: 10px 40px;
}

/* end mobile navigation styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */


.box{
	position: relative;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	/*box-shadow: 0px 0px 14px 0px rgba(50,50,50,0.1);*/
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 0.25rem;
	overflow: hidden;
	padding: 15px 15px;
	border-bottom: 4px solid #e0e0e0;
}

.league-table-container{
	width: 100%;
	padding: 10px 10px;
	background-color: #fff;
	overflow-x: auto;
	border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
	border-bottom: 4px solid #e0e0e0;
}

.league-table{
	width: 100%;
	padding: 0px 0px;
	position: relative;
	min-width: 800px;
}

.league-table .league-table-top{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 3px;
	background-color: #ffffff;
	z-index: 999;
}

.league-table .league-table-bottom{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 3px;
	background-color: #ffffff;
	z-index: 999;
}

.league-table .league-table-left{
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 3px!important;
	background-color: #ffffff;
	z-index: 999;
}

.league-table .league-table-right{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 3px!important;
	background-color: #ffffff;
	z-index: 999;
}

.league-table > div{
	width: 100%!important;
}

.league-table table{
	border: 0px!important;
}

.league-table table tr{
	background-color: #ffffff!important;
	height: 42px!important;
	border-bottom: 1px solid #e0e2e4!important;
}

.league-table table tr td{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	color: #383A46!important;
	font-size: 14px!important;
	border-bottom: 1px solid #e0e2e4!important;
	background-color: #ffffff!important;
	padding: 0px 5ppx 0px 5px;
}

.league-table table tr td a{
	color: var(--template-secondary-colour);
	text-decoration: none;
}

.league-table table tr:last-child{
	background-color: #ffffff!important;
	border: 0px!important;
}

.league-table table tr:last-child > td{
	background-color: #ffffff!important;
	border: 0px!important;
}

/* footer styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */

#footer-top{
	width: 100%;
	margin: 0px;
	padding: 20px 0px;
	background-color: var(--template-primary-colour);
}

.footer-top-left{
	text-align: left;
	flex: 1 1;
}

.footer-top-left h3{
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.footer-top-right{
	text-align: right;
}

.footer-top-right .socials{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.footer-top-right .socials li{
	display: inline-block;
	margin: 0px 0px 0px 5px;
}

.footer-top-right .socials li a{
	display: flex;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	text-decoration: none;
	justify-content: center;
    align-items: center;
	transition: all 0.2s ease-in-out;
}

.footer-top-right .socials li a:hover{
	background-color: #fff;
}

.footer-top-right .socials li a i{
	font-size: 22px;
	color: #fff;
	transition: all 0.2s ease-in-out;
}

.footer-top-right .socials li a:hover > i{
	color: var(--template-primary-colour);
}

#footer-bottom{
	width: 100%;
	margin: 0px;
	padding: 50px 0px;
	background-color: #2a2f36;
}

#footer-bottom h3{
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin: 0px;
	padding: 0px 0px 20px 0px;
}

#footer-bottom .links{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#footer-bottom .links li{
	width: 100%;
	padding: 0px 0px 0px 0px;
}

#footer-bottom .links li a{
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	line-height: 26px;
}

#footer-bottom .links li a:hover{
	text-decoration: underline;
}

#footer-bottom .links li a i{
	font-size: 12px;
	color: #fff;
	padding: 0px 6px 0px 0px;
}

#footer-bottom .footer-contact{
	display: flex;
	margin: 0px 0px 10px 0px;
}

#footer-bottom .footer-contact-left{
	flex: 0 0 30px;
	font-size: 16px;
	color: #fff;
	text-align: left;
}

#footer-bottom .footer-contact-right{
	text-align: left;
}

#footer-bottom .footer-contact-right a{
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	line-height: 22px;
}

#footer-bottom .footer-contact-right span{
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	line-height: 22px;
}

#footer-bottom .footer-contact-right a:hover{
	text-decoration: underline;
}

#footer-copyright{
	width: 100%;
	margin: 0px;
	padding: 20px;
	background-color: #2a2f36;
    border-top: 1px solid #4a4f55;
}

.footer-copyright-left{
	text-align: left;
}

.footer-copyright-left p{
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.footer-copyright-right{
	text-align: right;
}

.footer-copyright-right p{
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.footer-copyright-right p a{
	color: #fff;
}

/* end footer styles ----------------------------------------------------------------------------------------------------------------------------------------------------- */


.content-body{
	line-height: 22px;
    color: rgb(33, 37, 41);
    font-size: 14px;
}

#affiliations-mobile{
	display: none;
}

.card-body h3{
	font-size: 20px;
	font-weight: 500;
	margin: 0px;
	padding: 0px;
}

.card-body h4{
	font-size: 16px;
	font-weight: 500;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	color: #918f8f;
}

.card-body p{
	font-size: 14px;
	font-weight: 400;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	line-height: 22px;
}


.view-all{
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: var(--template-primary-colour);
	text-decoration: none;
	border: 1px solid var(--template-primary-colour);
	padding: 10px 15px;
	margin: 0px 0px 0px 5px;
	border-radius: 4px;
	transition: all 0.2s ease-in-out;
}

.view-all:hover, .view-all.selected{
	background-color: var(--template-primary-colour);
	color: #fff;
}




/* cookie styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

#cookie-popup{
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 999999;
	display: none;
}

.cookie-popup-box{
	width: 300px;
	margin: 15px 15px;
	background: #fff;
    box-shadow: 0 0 30px rgb(51 51 51 / 10%);
	padding: 19px 30px 18px;
	border-radius: 5px;
}

.cookie-popup-close{
	position: absolute;
	height: 30px;
    width: 30px;
	text-align: center;
	top: 20px;
	right: 20px;
	z-index: 2;
	cursor: pointer;
}

.cookie-popup-close i{
	color: #6d70a6;
	line-height: 30px;
}

.cookie-popup-message{
	font-size: 14px;
	line-height: 24px;
	color: #6d70a6;
	width: 100%;
}

.cookie-popup-button{
	width: 100%;
	margin: 15px 0px 0px 0px;
}

/* end cookie styles ------------------------------------------------------------------------------------------------------------------------------------------------- */


/* overlay styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

#overlay{
	position: fixed;
	z-index: 999;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	display: none;
	background-color: rgba(0,0,0,0.1);
}

#loading, #loading2{
	position: fixed;
	z-index: 1001;
	top: 50%;
	left: 50%;
	display: none;
	background-color: #fff;
	transform: translate(-50%,-50%);
	box-sizing: border-box;
	padding: 15px 20px;
	text-align: center;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	max-width: 300px;
}

#loading h3, #loading2 h3{
	font-family: 'Playfair Display', serif;
	text-align: center;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	font-size: 22px;
	font-weight: 700;
	color: #323232;
}

#loading p, #loading2 p{
	text-align: center;
	padding: 0px 0px 0px 0px;
	margin: 0px;
	font-size: 14px;
	font-weight: 400;
	color: #323232;
	line-height: 22px;
}

/* end overlay styles ------------------------------------------------------------------------------------------------------------------------------------------------- */


/* media queries styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1200px)
{

}

@media only screen and (max-width: 992px)
{
	#navigation{
		display: none;
	}
	#mobile-navigation{
		display: block;
	}
	#team-navigation .col-6:first-child{
		padding-bottom: 15px;
	}
	#team-navigation .col-6{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: left;
	}
	#team-navigation .view-all{
		margin: 0px 5px 5px 0px;
	}
	#main-body .col-9{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: left;
	}
	#main-body .col-3{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: left;
	}
	#main-body .col-3.pl-15{
		padding: 0px 0px 15px 0px;
	}
}

@media only screen and (max-width: 768px)
{
	.header-right{
		display: none;
	}
	#affiliations-mobile{
		display: block;
	}
	.footer-top-left{
		display: none;
	}
	.footer-top-right{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: center;
	}
	.footer-top-right .socials li {
		display: inline-block;
		margin: 0px 4px 0px 4px;
	}
	#main-body .col-6{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: left;
	}
	#main-body .col-5{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: left;
		padding: 0px 0px 15px 0px;
	}
	#main-body .col-7{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: left;
	}
}

@media only screen and (max-width: 576px)
{
	#banner h3{
		font-size: 38px;
        line-height: 42px;
	}
	#banner p{
		font-size: 18px;
		line-height: 28px;
	}
	.footer-copyright-left{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: center;
	}
	.footer-copyright-right{
		flex: 0 0 100%!important;
		max-width: 100%!important;
		text-align: center;
	}
}

@media only screen and (max-width: 410px)
{
	
}

/* end media queries styles --------------------------------------------------------------------------------------------------------------------------------------------- */
