@charset "UTF-8";
/* CSS Document */

/* WORLD CLOCKS */	
	#container-clock {
		display: flex;
		background-color: #010041;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		padding: 5px 20px 5px 10px;
	}
	.world-clocks {
		margin-left: 20px;
		display: flex;
		align-items: center;
	}
	.world-clocks img {
		width: 23px;
		height: auto;
		margin-right: 6px;
	}
/* END WORLD CLOCKS */	
	
/* SFP LOGO HEADER */	
	#container-logo-header{
		display:flex;
		align-items: center;
		flex-direction: row;
		padding: 15px;
		background-color: #0A0B60;
	}
	.logo-spacer {
		display: none;
		justify-content: center;
		color: #fff;
		align-content: flex-start;
		flex-basis: 50px;
	}
	.block-logo {
		display: flex;
		justify-content: center;
		flex-grow: 1;
		align-self: center;
		padding: 5px;
		text-align: center;
	}
	.block-logo img {
		width: 400px;
	}
	
@media screen and (max-width: 728px) {
	#container-logo-header{
		padding: 10px;
	}
	.mobile-view{
		display:flex;
	}
	.block-logo img {
		width: 75%;
	}
	}
/* END SFP LOGO HEADER */
	
/* SFP NAV MOBILE */
	.sub-archive-indent {
		text-indent: 10px;
	}
	.nav-spf-mobile {
		background-color: #0A0B60;
		text-transform: uppercase;		
		font-family: getvoip_grotesqueregular;
	}
	.ul-sfp-nav {
		line-height: 2rem; 
	}
/*	.uk-nav-default .uk-nav-divider {
		border-top: 1px solid #FF01FE!important;
	}
*/
/* END SFP NAV MOBILE */
	
/* SFP DESKTOP MOBILE */
nav{
  position: relative;
  z-index: 99;
  width: 100%;
  border-top: 1px solid #FF01FE;
  border-bottom: 1px solid #FF01FE;
  background: #0A0B60;
}
nav .wrapper{
  position: relative;
  max-width: 800px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: inline-flex;
  font-family: getvoip_grotesqueregular;
  text-transform: uppercase;
}
.nav-links li{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #FF01FE;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: absolute;
  background: #010041;
  width: 285px;
  line-height: 25px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 5px 0 5px 15px;
  font-size: 16px;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 45px;
  width: 86%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #010041;
  padding: 25px 0px 25px 35px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
	
.nav-links li a {
	font-size: 14px;
	padding: 9px 10px;
}	
.nav-links .drop-menu {
	font-size: 12px;
    line-height: 20px;
}
}
@media screen and (max-width: 728px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

/*********************************
CONFLICTS WITH MOBILE SHORTCUT NAV 
**********************************/	
@media screen and (max-width: 728px) {
  div.hide-mobile {
    display: none;
  }	
}
/* END SFP DESKTOP MOBILE */

/* SFP MOBILE BASE */
	#sfp_mobile-shortcuts {
		display: flex;
		background-color: #01000D;
		border-top: 2px solid #FF01FE; 
		flex-direction: row;
		justify-content: center;
		align-items: center;
		align-content: stretch;
		z-index: 1000;
	}	
	.sfp_shortcut-icon-block {
		display: flex;
		flex-grow: 1;
		background-color: #01000D;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 10px;
	}	
	.sfp_mobile-shortcut-blocks {
		display: flex;
		justify-content: center;
		align-items: center;
		color: #f0e8e3;
		font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
		font-size: 0.6rem;
	}
	.fa-solid {
		font-size: 1.5rem;
		padding-bottom: 4px;
	}
	
	
@media screen and (max-width: 600px) {
  div#sfp_mobile-shortcuts {
    display: flex!important;
  }
}
	
/* SFP FOOTER MENU */

@font-face {
	font-family: 'getvoip_grotesqueregular';
	src: url('fonts/getvoip_grotesque-webfont.woff2') format('woff2'),
		 url('fonts/getvoip_grotesque-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
	


/* SFP FOOTER MENU */
@font-face {
	font-family: 'getvoip_grotesqueregular';
	src: url('fonts/getvoip_grotesque-webfont.woff2') format('woff2'),
		 url('fonts/getvoip_grotesque-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
	
#sfp-footerwrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	background-color: #010041;
	padding: 60px 0px;
	}	
#sfp-footercontainer {
	width: 1000px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: none;
	}
.sfp-footerblock {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	background-color: none;
	padding-left: 20px;
	padding-bottom: 30px;
	}	
.sfp-menulink {
	margin-bottom: 10px;
	}
a.sfp-menulink:link, a.sfp-menulink:visited {
	text-decoration: none;
	color: #fff;
	}
a.sfp-menulink:hover {
	text-decoration: none;
	color: #FF01FE;
	}
	
#sfp-footermenu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: none;
	color: #e9e9e9;
	font-family: getvoip_grotesqueregular;
	text-transform: uppercase;
	text-align: left;
	}
#sfp-footer-base-container {
	width: 100%;
	display: flex;
	/* Make a horizontal flexbox (the default) */
	flex-direction: row;
	/* The important part: vertically center the items */
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
	color: #F3F3F3;
	font-family: getvoip_grotesqueregular;
	font-size: 12px;
	border-top: 1px solid #fff;
	padding-top: 20px;
	background-color: none;
}
.img-sfp-logo {
  width: 30px;
  height: auto;
  margin: 10px;
}
.img-sfp-logo-30 {
  width: 250px;
  height: auto;
  margin: 10px;
}
.img-app-logos {
  border-radius: 50%;
  width: auto;
  height: 40px;
  margin: 10px;
	}
a.app-logos:hover {
	opacity: 0.8;
	}
.footer-copyright-block {
	/* Use a flexbox layout */
	display: flex;
	
	/* Make a horizontal flexbox (the default) */
	flex-direction: row;
	
	/* The important part: vertically center the items */
	align-items: center;
	justify-content: flex-start;
}
.footer-app-block {
	font-weight: 500;
	/* Use a flexbox layout */
	display: flex;
	
	/* Make a horizontal flexbox (the default) */
	flex-direction: row;
	
	/* The important part: vertically center the items */
	align-items: center;
	justify-content: flex-end;
}
.sfp-footer-logo {
	padding: 0px 20px;
  flex-grow: 1; /* default 0 */
}
.footer-app-logos {
	padding: 0px 20px;
  flex-grow: 1; /* default 0 */
}
.social-app {
	margin-right: 25px;
	text-align: right;
}
.mobile-app {
	margin-right: 6px;
    font-weight: 400;
	text-align: right;
}
.container-mobile-app {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.container-football-links {
	display: flex;
	flex-direction: row;
	align-items: center;
}
	
@media only screen and (max-width: 900px) {
	#sfp-footer-base-container {
		flex-direction: column-reverse;
		/** to stretch block full width**/
		align-items:stretch;
	}
	#sfp-footermenu {
		text-align: center;
		padding-left: 0px;
		margin-left: 0px;
	}
	.sfp-footerblock {
		flex-direction: column;
		padding-left: 0px;
		}	
	.footer-copyright-block {
		justify-content:center;
		align-self: flex-end;
	}
	.footer-app-block {
		flex-direction: row;
	}
	.footer-app-logos {
		flex-direction: column;
	}
	.footer-copyright-block {
		text-align: center;
	}
	.social-app {
		text-align: center;
		margin-right: 10px;
	}
	.mobile-app {
		text-align: center;
	}
	.container-mobile-app {
		flex-grow: 1;
		flex-direction: column;
	}
}
/* END SFP FOOTER MENU */

/* sub menu squad */
.sfp-squad-sub-menu {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin: 0px 5px;
	border-radius: 5px;
	width: 33.3333%;
	padding: 5px 0px;
	border: 2px solid #6EEAE7;
	background-color:#0A0B6040; 
	background-image: linear-gradient(to right bottom, #00000080 , #0D3BFF80);
}
.sfp-squad-sub-menu:hover {
	color: #FF01FE;
	text-decoration: none;
}

html {
  scroll-behavior: smooth;
}


@media only screen and (max-width: 900px) {
/* sub menu squad */
.sfp-squad-sub-menu {
	font-size: 12px;
}
}



/* DEVICE SIZE EXAMPLES */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .example {background: blue;}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .example {background: green;}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .example {background: blue;}
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .example {background: orange;}
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .example {background: pink;}
}	

