@charset "UTF-8";
/*
- Fonts
VARIABLES
- Colours
- Screen sizes
- Spacers

MIXINS
- Screen sizes
HTML TAGS
CONTAINERS
- Relative
- Max Width
- Flex 
--- Flex33
--- Griditem CTA
- Grid Systems
- Grid Item Third (griditemthird)
- Spacers
- Principle
Grid System
-- one whole
-- One half
PAGE ELEMENTS (Items used on more than one page but not specific to any particular page).
- Facts CTA
--- Text link
--- Read More
- Tables
--- Scroll Table
--- FB Table
--- Attendances Table
--- SM Table
--- Franchise Table
--- NY Table
--- SM Table
--- Colum widths
--- New window
PAGE TEMPLATE(S) 
- Article
--- Introduction
--- Blockquote
--- Photooverlay
- Sports Maps
--- Map Header Left
--- Map Header Right
--- Map Container
--- Map
--- Map Usage
--- Bottom article
Social Media Table (sm table)
PAGE SPECIFIC
- Homepage
--- Hero
--- Hero Button (hero_btn_ctr)
--- Homeleft
--- Logos
--- Feature homepage
- About
--- Partners
- Maps Index
- Football in London
-- Tickets
- Sports info
- Job Advert
- Match Report
- Stadium-updates
- Rugby Codes
- New York Sports Map
- Sports Map Index
--- Grid 3 by 3 
--- Index List
--- Flex Item List
--- Flex Item Image
- Season Calander
--- Grid Season
--- Grid Item
--- Grid Item Header
- Decade of Winners
--- Grid Decade
- Team Colors
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Ropa+Sans:400,400italic");
/* Team Colours */
/* NBA */
/* NHL */
/*NFL*/
/* Prmieria */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #333333;
}

p {
  padding: 0 0 20px 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 2px;
  font-weight: 600;
}

h1 {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 15px 0;
}
@media (min-width: 400px) {
  h1 {
    margin: 0 0 20px 0;
    font-size: 1.6rem;
  }
}

h2 {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 15px 0;
  color: #236192;
}
@media (min-width: 400px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  font-size: 1.2rem;
  padding-bottom: 10px;
  line-height: 1.4;
  color: #236192;
}
@media (min-width: 400px) {
  h3 {
    font-size: 1.3rem;
  }
}

h4 { /* Used on Call outs*/
  font-size: 1.15rem;
  color: #236192;
}
@media (min-width: 400px) {
  h4 {
    font-size: 1.05rem;
  }
}

h5 { /* h5 used on Sports Map footer and Stadium Legend title */
  font-size: 1rem;
}

ul {
  letter-spacing: -1em;
}

ul li {
  letter-spacing: normal;
}

strong {
  font-weight: 600;
}

i {
  font-style: italic;
}

img {
  width: 100%;
  height: auto;
  border-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: #236192;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-block: 0;
}

.scroll {
  scroll-margin-top: 60px;
}

/* Containers */
/* Relative */
.container {
  margin: 0px auto;
  display: block;
  max-width: 1100px;
  position: relative;
}

.container-1200 { /* where is this used */
  margin: 0px auto;
  display: block;
  max-width: 1200px;
  position: relative;
}

.container-small { /* where is this used */
  margin: 0px auto;
  display: block;
  max-width: 900px;
  position: relative;
}

.contrel {
  position: relative;
}

/* max-width */
.container-content {
  max-width: 940px;
  margin: 0 auto;
}

/* Flex */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.container-flex {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}

.flexgrid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

.flex-cont-vertical {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.verticalcenter { /* where is this used? */
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  padding: 0 4%;
}
@media (min-width: 650px) {
  .verticalcenter {
    padding: 0 2%;
  }
}
@media (min-width: 960px) {
  .verticalcenter {
    padding: 0;
  }
}

/* Grid-systems */
.flex-half { /* Flex-half and one-half are the same thing */
  width: 100%;
}
@media (min-width: 800px) {
  .flex-half {
    width: 50%;
  }
}

.one-half {
  width: 100%;
}
@media (min-width: 800px) {
  .one-half {
    width: 50%;
  }
}

.flexitem33 { /* used on about page */
  width: 100%;
  margin: 0 0 20px 0;
}
@media (min-width: 600px) {
  .flexitem33 {
    width: 48.5%;
    margin: 0 3% 3% 0;
  }
  .flexitem33:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 800px) {
  .flexitem33 {
    width: 32%;
    margin: 0 2% 2% 0;
  }
  .flexitem33:nth-of-type(2n) {
    margin-right: 2%;
  }
  .flexitem33:nth-of-type(3n) {
    margin-right: 0;
  }
}

.griditem-cta { /* Stacked to 3 across */
  width: 100%;
  margin: 0 0 30px 0;
}
.griditem-cta > a {
  text-decoration: none !important;
}
.griditem-cta > a:hover {
  text-decoration: none !important;
}
@media (min-width: 650px) {
  .griditem-cta {
    width: 31%;
    margin: 0 3% 3% 0;
  }
  .griditem-cta:nth-of-type(3n+0) {
    margin-right: 0;
  }
}

.griditemthird { /* used for map CTA's at the page bottom */
  width: 100%;
  margin: 0 0 30px 0;
}
.griditemthird:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .griditemthird {
    width: 31.3333333333%;
    margin: 0 3% 0 0;
  }
  .griditemthird:nth-of-type(3n) {
    margin-right: 0;
  }
}

.grid-multiple-rows {
  width: 100%;
  margin: 0 0 30px 0;
}
@media (min-width: 650px) {
  .grid-multiple-rows {
    width: 48.5%;
    margin: 0 3% 3% 0;
  }
  .grid-multiple-rows:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .grid-multiple-rows {
    width: 31.3333333333%;
  }
  .grid-multiple-rows:nth-of-type(2n) {
    margin-right: 3%;
  }
  .grid-multiple-rows:nth-of-type(3n) {
    margin-right: 0 !important;
  }
}

.one-whole {
  float: left;
  width: 100%;
}

.onehalf {
  float: left;
  width: 100%;
}
@media (min-width: 650px) {
  .onehalf {
    width: 50%;
  }
}

#column66 { /* Used on contact page */
  width: 100%;
  float: left;
  margin: 0 0 10px 0;
}
@media (min-width: 800px) {
  #column66 {
    width: 63%;
    margin: 0 7% 0 0;
  }
}

#column33 {
  width: 100%;
  float: left;
}
@media (min-width: 800px) {
  #column33 {
    width: 30%;
  }
}

#stickycont {
  margin-top: 60px;
}

.whitebox {
  padding: 0 4%;
}
@media (min-width: 650px) {
  .whitebox {
    padding: 0 2%;
  }
}
@media (min-width: 1220px) {
  .whitebox {
    width: 100%;
    padding: 0;
  }
}

.spacers-top-bottom {
  padding: 20px 0;
}

.spacers-bottom {
  padding-bottom: 40px;
}
.spacers-bottom p:last-of-type {
  padding-bottom: 0;
}

.principle {
  margin-bottom: 40px;
  float: left;
}

.principle-top-bottom {
  margin: 40px 0;
}

.articletext a {
  color: #121212;
  border-bottom: 1px solid #dbdbdb;
  font-weight: 600;
}
.articletext a:hover {
  text-decoration: none;
  color: #236192;
}

#fbleft {
  width: 100%;
  float: left;
  margin: 0 0 10px 0;
}
#fbleft a {
  color: #121212;
  border-bottom: 1px solid #dbdbdb;
  font-weight: 600;
}
#fbleft a:hover {
  text-decoration: none;
  color: #236192;
}
@media (min-width: 800px) {
  #fbleft {
    width: 63%;
    margin: 0 7% 40px 0;
  }
}
#fbleft h2 {
  margin-top: 20px;
}
#fbleft ul {
  padding: 10px 0;
}
#fbleft ul li {
  padding: 6px 0 6px 45px;
  position: relative;
  line-height: 1.5;
}
#fbleft ul li:before {
  background-color: #236192;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
}
#fbleft p:last-of-type {
  padding-bottom: 0;
}
#fbleft table {
  margin-top: 20px;
}

#fbright {
  display: none;
}
@media (min-width: 800px) {
  #fbright {
    display: block;
    float: left;
    width: 30%;
  }
}

/* Header Section */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  background-color: #236192;
  box-shadow: 1px 0px 10px #000000;
}

.logo-wrapper-2 {
  display: block;
  width: 30%;
  float: left;
  padding: 15px 0 15px 4%;
}
@media (min-width: 650px) {
  .logo-wrapper-2 {
    padding: 15px 0 15px 2%;
  }
}
@media (min-width: 1220px) {
  .logo-wrapper-2 {
    padding: 15px 0;
  }
}

.logo {
  width: 180px;
  height: 30px;
  text-indent: -9999px;
  background: url(../images/stadium-maps-white.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}
.logo:hover {
  opacity: 0.8;
}
@media (min-width: 960px) {
  .logo {
    width: 200px;
    height: 34px;
  }
}

ul.nav-menu {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  font-size: 1.1rem;
}
@media (min-width: 800px) {
  ul.nav-menu {
    height: auto;
    width: auto;
    position: static;
    float: right;
    font-size: 1.2rem;
  }
}
ul.nav-menu.active {
  height: auto;
}
ul.nav-menu li {
  width: 100%;
  float: left;
}
@media (min-width: 800px) {
  ul.nav-menu li {
    width: auto;
  }
}
ul.nav-menu li a {
  float: left;
  width: 100%;
  padding: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  background: #f1f1f1;
  color: #236192;
  border-bottom: 1px solid #cccccc;
  font-weight: normal;
}
@media (min-width: 800px) {
  ul.nav-menu li a {
    width: auto;
    height: 60px;
    line-height: 60px;
    background: none;
    color: #fff;
    padding: 0 1rem;
    border-bottom: 3px solid transparent;
  }
}
@media (min-width: 960px) {
  ul.nav-menu li a {
    padding: 0 2rem;
  }
}
ul.nav-menu li a:hover {
  background-color: #cccccc;
  border-bottom: 1px solid #236192;
}
@media (min-width: 800px) {
  ul.nav-menu li a:hover {
    background-color: #236192;
    border-bottom: 3px solid #ffffff;
  }
}
ul.nav-menu li a:focus-visible {
  outline: none;
}
@media (min-width: 800px) {
  ul.nav-menu li a:focus-visible {
    border-bottom: 3px solid #ffffff;
  }
}

span.icon-bar {
  position: absolute;
  right: 12px;
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  transition-duration: 0.3s;
}

.icon-bar:nth-child(1) {
  top: 19px;
}
.icon-bar:nth-child(2) {
  top: 29px;
}
.icon-bar:nth-child(3) {
  top: 39px;
}

.nav-toggle {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.nav-toggle.active {
  background-color: #236192;
}
@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle.active .icon-bar:nth-child(1) {
  top: 29px;
  transform: rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2) {
  width: 0;
}
.nav-toggle.active .icon-bar:nth-child(3) {
  top: 29px;
  transform: rotate(-45deg);
}

.nav-toggle.active:after {
  content: none;
}

/* Back to top - start */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 20px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
  width: 50px;
  height: 50px;
  background-color: #236192;
  opacity: 0.6;
}
#myBtn:before {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../images/img/icon-arrow-up.svg);
  width: 20px;
  height: 20px;
  background-size: 20px;
  position: fixed;
  bottom: 30px;
  right: 34px;
}
#myBtn:hover {
  background-color: #236192;
  opacity: 1;
}

/* Footer section */
.social {
  background: #236192;
  float: left;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
.social h3 {
  color: #ffffff;
}
.social li {
  display: inline-block;
  margin: 0 8px;
}
@media (min-width: 1220px) {
  .social li {
    margin: 0 12px;
  }
}
.social li a {
  color: #ffffff;
}
.social li a:hover {
  opacity: 0.5;
}

footer {
  float: left;
  width: 100%;
  background: #2b2b2b;
  padding: 15px 0 0 0;
}
footer a {
  color: #676767;
}
footer a:visited {
  color: #676767;
}
footer a:hover {
  color: #fff;
}
footer a:active {
  color: #fff;
}
footer a:focus {
  outline: 1px solid #ffffff;
}

.footcol {
  float: left;
  width: 100%;
  padding: 10px 0;
  text-align: center;
}
@media (min-width: 650px) {
  .footcol {
    width: 50%;
    padding: 10px 2%;
  }
}
@media (min-width: 960px) {
  .footcol {
    width: 25%;
    padding: 1% 0 2% 0;
  }
}
.footcol h5 {
  font-size: 1.1rem;
  padding: 0 0 10px 0;
  letter-spacing: 1px;
  color: #ffffff;
}
@media (min-width: 960px) {
  .footcol h5 {
    font-size: 0.95rem;
  }
}
.footcol ul {
  margin: 0;
}
@media (min-width: 960px) {
  .footcol ul {
    font-size: 0.9rem;
  }
}
.footcol ul li {
  list-style: none;
  line-height: 1.7;
}
.footcol ul li a {
  display: block;
}

#copy {
  float: left;
  width: 100%;
  font-size: 1rem;
  padding: 20px 0 50px 0;
  background: #191919;
  color: #ffffff;
}
@media (min-width: 960px) {
  #copy {
    padding: 20px 0 30px 0;
    font-size: 0.8rem;
  }
}
#copy a {
  color: #ffffff;
  text-decoration: none;
}
#copy a:visited {
  color: #fff;
}
#copy a:hover {
  text-decoration: underline;
}
#copy a:active {
  text-decoration: underline;
}
#copy a:focus {
  outline: 1px solid #ffffff;
}

#copy_left {
  text-align: center;
  padding-bottom: 20px;
}
@media (min-width: 650px) {
  #copy_left {
    text-align: left;
    padding-bottom: 0;
  }
}

#copy_right {
  text-align: center;
}
@media (min-width: 650px) {
  #copy_right {
    text-align: right;
  }
}

.underline {
  float: left;
  width: 100%;
  padding-top: 2rem;
}
@media (min-width: 1220px) {
  .underline {
    padding-top: 50px;
  }
}
.underline h1 {
  display: inline-block;
  color: #333333;
  line-height: 1.4;
}
.underline h1:after {
  margin-top: 8px;
  height: 3px;
  width: 25%;
  display: block;
  content: " ";
  position: relative;
  background-color: #236192;
}

.landing {
  margin-bottom: 2rem;
}

#feature { /* used on champions callout */
  float: left;
  width: 100%;
  background-color: #236192;
  color: #ffffff;
  font-weight: 300;
}
#feature h3 {
  padding: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #ffffff;
}

.feature {
  float: left;
  width: 100%;
}
.feature h2 {
  margin: 0px 0 20px 0;
  font-weight: 500;
}

.grey-solid-feature {
  background: #f1f1f1;
}

.grey-feature {
  background: linear-gradient(70deg, #ECE9E6, #FFFFFF);
  border-top: 1px solid #cccccc;
}

.grey-feature h2, .grey-solid-feature h2 {
  color: #4c4c4c;
}

.blue-feature {
  background-color: #236192;
  color: #ffffff !important;
}
.blue-feature h2 {
  color: #ffffff;
}
.blue-feature h3 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffff;
}
.blue-feature p {
  color: #ffffff;
}

.striped-feature {
  background: repeating-linear-gradient(45deg, #f7f7f7, #f7f7f7 10px, #ccc 10px, #ccc 20px);
  color: #333;
  font-weight: 600;
}

#featuregrey {
  background: linear-gradient(#ECE9E6, #FFFFFF);
  border-top: 1px solid #cccccc;
  text-align: center;
  font-size: 1.1rem;
  padding: 20px 0;
}
@media (min-width: 1220px) {
  #featuregrey {
    padding: 40px 0;
  }
}
#featuregrey h3 {
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: #236192;
  padding: 0 0 20px 0;
}
@media (min-width: 800px) {
  #featuregrey p {
    padding: 20px 20px 0 20px;
  }
}
@media (min-width: 1220px) {
  #featuregrey p {
    font-size: 1.2rem;
    padding: 20px 100px 0px 100px;
  }
}
#featuregrey p:first-of-type {
  padding-top: 0;
}
#featuregrey a {
  color: #236192;
  font-weight: 600;
}
#featuregrey a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.scroll-module {
  padding-bottom: 40px;
  width: 100%;
}
.scroll-module a:hover {
  border-bottom: none !important;
  opacity: 0.8;
}

.scroll-down {
  position: absolute;
  width: 40px;
  height: 21px;
  bottom: 0px;
  left: 50%;
  margin-left: -25px;
  background-image: url(../images/site-images/down-chevron.svg);
  background-repeat: no-repeat;
}

.cta-facts {
  background-color: #eaeaea;
  padding: 0 0 10px 0;
  color: #236192;
  box-shadow: 1px 1px 4px #999999;
}
.cta-facts img {
  border-bottom: 4px solid #236192;
}
.cta-facts p {
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.4;
  color: #333;
}
.cta-facts a {
  color: #000000;
}
.cta-facts a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.cta-facts a h4 {
  font-size: 1.05rem;
  text-align: left;
  padding-bottom: 10px;
  color: #236192;
}
.cta-facts .textlink {
  padding: 15px 10px;
}
.cta-facts .readmore {
  font-weight: 500;
  color: #236192 !important;
}

.cta-white {
  background-color: #fff;
}

.responsive-image {
  width: 100%;
}

.cta-icon a {
  display: block;
  height: 100%;
  border-top: 3px solid #236192;
  padding: 20px 5px;
  background-color: #eaeaea;
  text-align: center;
  color: #236192;
  box-shadow: 1px 1px 4px #999999;
}
.cta-icon a h4 {
  font-weight: normal;
  font-size: 1.05rem;
  color: #236192;
}
.cta-icon a:hover {
  background-color: #ddd;
  text-decoration: none;
}
.cta-icon a:active {
  text-decoration: none;
}
.cta-icon a:focus {
  background-color: #ddd;
}
.cta-icon a img {
  padding-bottom: 15px;
  width: 100px;
}

.callimage a { /* Can be removed once taken out of the map cta */
  text-align: center;
}

.map-article-link {
  padding: 2.2rem 0;
  text-align: center;
}
.map-article-link h3 {
  font-size: 1.6rem;
  padding-bottom: 20px;
}
.map-article-link p {
  font-size: 1.2rem;
}
.map-article-link p:last-of-type {
  padding-bottom: 0;
}
.map-article-link ul {
  font-size: 1.2rem;
}
.map-article-link a {
  color: #236192;
  font-weight: 600;
}
.map-article-link a:hover {
  text-decoration: none;
  border-bottom: 2px solid #236192;
}
.map-article-link ul {
  padding: 1rem 0;
}
.map-article-link ul li {
  display: inline;
  padding: 0 0.5rem;
  line-height: 2;
}

.item-feature {
  width: 100%;
}

.button {
  padding: 10px 20px;
  width: 100%;
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 5px;
}
.button:hover {
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 0.8;
}

.accordion {
  background-color: #f1f1f1;
  color: #4c4c4c;
  cursor: pointer;
  padding: 18px 18px 18px 18px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  transition: 0.4s;
}
.accordion:hover {
  background-color: #cccccc;
}
.accordion:after {
  content: "➕";
  font-size: 1.4rem;
  float: right;
  margin-left: 5px;
}

.active {
  background-color: #cccccc;
}
.active:after {
  content: "➖";
}

.panel {
  padding: 0 18px;
  margin-bottom: 10px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border: 1px solid #cccccc;
}
.panel p {
  padding: 20px 0 !important;
}

.herobutton {
  border: 2px solid #ffffff;
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: 2px;
}
.herobutton:hover {
  background: #000000;
  opacity: 0.7;
}

.buttontrans {
  color: #fff !important;
  border: 1px solid #ffffff;
}
.buttontrans:hover {
  background: #ffffff;
  color: #236192 !important;
  transition: 0.5s ease-out all;
}

.buttonblue {
  background: #236192;
  color: #ffffff !important;
}

.buttonstats {
  width: auto;
}

.btn-trainline {
  color: #ffffff !important;
  background: #00a88f;
}
.btn-trainline:hover {
  opacity: 0.8;
  border-bottom: 0;
}

.hero-angle {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 95%;
  transform: skewX(-30deg);
  width: 100%;
  background: #000000;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.championsgrid {
  float: left;
  width: 100%;
  margin: 40px 0;
  padding: 0 4%;
}
.championsgrid h2 {
  text-align: center;
  color: #ffffff;
}
.championsgrid h3 {
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 650px) {
  .championsgrid {
    padding: 0 2%;
  }
}
@media (min-width: 1220px) {
  .championsgrid {
    padding: 0;
  }
}

.championshold {
  width: 100%;
}

.champions {
  width: 100%;
  float: left;
  padding: 15px 5px;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  margin: 0;
}
.champions:last-of-type {
  border-bottom: none;
}
.champions h4 {
  color: #ffffff !important;
}
.champions p {
  padding: 0;
  margin: 0;
  line-height: normal;
}
@media (min-width: 650px) {
  .champions {
    width: 50%;
    margin: 25px 0;
    border-bottom: none;
  }
  .champions:nth-of-type(odd) {
    border-right: 1px solid #ffffff;
  }
}
@media (min-width: 960px) {
  .champions {
    width: 25%;
  }
  .champions:nth-of-type(2) {
    border-right: 1px solid #ffffff;
  }
}

.map-callout {
  padding: 30px 20px;
  text-align: center;
}
.map-callout h3 {
  padding-bottom: 30px;
}
.map-callout p {
  padding-bottom: 30px;
}

@media (min-width: 800px) {
  .mapphoto {
    background-image: url(../images/site-images/franchise-map.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 300px;
  }
}

.bignumber {
  font-size: 80px;
  font-weight: 600;
}

.buttoncontainer {
  width: 100%;
}
@media (min-width: 650px) {
  .buttoncontainer {
    margin: auto;
    width: 40%;
  }
}
@media (min-width: 960px) {
  .buttoncontainer {
    width: 25%;
  }
}

.gallery {
  width: 100%;
  float: left;
  padding: 40px 0 20px 0;
  background-image: url(../images/site-images/football-background.png), linear-gradient(#fdfbfb, #ebedee);
  background-repeat: no-repeat;
  background-position: right bottom;
  z-index: -1;
}

.galleryitem {
  width: 48.5%;
  margin: 0 3% 2rem 0;
  text-align: center;
}
.galleryitem:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 600px) {
  .galleryitem {
    width: 32%;
    margin: 0 2% 2rem 0;
  }
  .galleryitem:nth-of-type(2n) {
    margin-right: 2%;
  }
  .galleryitem:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 800px) {
  .galleryitem {
    width: 18.4%;
    text-align: center;
    margin: 0 2% 2rem 0;
  }
  .galleryitem:nth-of-type(3n) {
    margin-right: 2%;
  }
  .galleryitem:nth-of-type(5n) {
    margin-right: 0;
  }
}
.galleryitem a:hover {
  text-decoration: none;
}
.galleryitem h3 {
  padding: 0 0 5px 0;
  color: #236192;
  font-size: 1.05rem;
  font-weight: 500;
}
.galleryitem h4 {
  color: #4c4c4c;
  font-size: 1rem;
  font-weight: normal;
}
.galleryitem img {
  display: block;
  opacity: 1;
  box-shadow: 4px 4px 8px #7d7d7d;
}
.galleryitem img:hover {
  opacity: 0.8;
}

.responsive-image {
  width: 100%;
  height: auto;
}

.photocaption {
  margin-top: 1rem;
}

/* Hero secondary */
.hero-secondary {
  display: flex;
  position: relative;
  align-items: center;
  background: url("../images/site-images/header-secondary.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}
.hero-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000000, #000000);
  opacity: 0.7;
}
.hero-secondary h1 {
  font-size: 1.5rem;
  padding: 0 20px 10px 20px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.3;
  font-weight: 600;
  text-shadow: 2px 2px 12px #000000;
}
@media (min-width: 600px) {
  .hero-secondary h1 {
    font-size: 2rem;
    padding: 0 40px 10px 40px;
  }
}
@media (min-width: 960px) {
  .hero-secondary h1 {
    font-size: 3rem;
    font-weight: 400;
    padding: 0 120px 20px 120px;
  }
}
.hero-secondary p {
  font-size: 1.2rem;
}

.hero-secondary-copy {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
@media (min-width: 800px) {
  .hero-secondary-copy {
    width: 80%;
  }
}

/* About Page */
.cta {
  background-color: #eaeaea;
  box-shadow: 1px 1px 4px #999999;
}

.sportsites {
  min-height: 160px;
  padding: 20px 10px;
  text-align: center;
  border-top: 3px solid #236192;
}
.sportsites h3 {
  padding: 0 0 20px 0;
}
.sportsites h4 {
  padding: 0 0 20px 0;
}
.sportsites h4 a:hover {
  padding-bottom: 2px;
  border-bottom: 2px solid #236192;
}
.sportsites p {
  font-size: 0.95rem;
}
.sportsites ul li {
  line-height: 1.5;
}
.sportsites ul li a {
  color: #4c4c4c;
}
.sportsites ul li a:hover {
  text-decoration: underline;
}

.sportssocial ul li {
  display: inline-block;
  list-style: none;
  padding: 0 1rem;
}
.sportssocial ul li a {
  color: #236192;
}
.sportssocial ul li a:hover {
  opacity: 0.6;
}

/* Tables - start */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead th {
  background-color: #236192;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 8px;
  border: 1px solid #ffffff;
  border-width: 0 1px 0 1px;
  border-bottom: 4px solid #004272;
}
thead th:first-child {
  border-left: 1px solid #236192;
}
thead th:last-child {
  border-right: 1px solid #236192;
}

tr {
  background-color: #fcfcfc;
}
tr:hover td {
  background-color: #eef4f9;
}
tr:nth-of-type(even) {
  background-color: #eee;
}

/* Scroll Table */
.scroll-table td {
  padding: 6px;
  border: 1px solid #cccccc;
  text-align: center;
}
.scroll-table tbody th {
  background: #eef4f9;
  color: #4c4c4c;
  border: 1px solid #cccccc;
  padding: 6px;
}

/* FB Table */
#fbtable {
  width: 100%;
  float: left;
  margin: 0 0 40px 0;
}
#fbtable a {
  color: #236192;
  font-weight: 600;
  letter-spacing: 1px;
}
#fbtable a:hover {
  text-decoration: underline;
}
#fbtable table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 600px) {
  #fbtable table {
    display: table;
  }
}
#fbtable th {
  display: block;
}
@media (min-width: 600px) {
  #fbtable th {
    display: table-cell;
    position: static;
    padding: 10px 5px;
    border-width: 0 1px 0 1px;
    border-bottom: 4px solid #004272;
  }
}
#fbtable tr {
  display: block;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
#fbtable tr:first-child {
  border-top: 1px solid #004272;
}
@media (min-width: 600px) {
  #fbtable tr {
    display: table-row;
    border: 1px solid #cccccc;
  }
}
#fbtable td {
  display: block;
  border: none;
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
#fbtable td:before {
  position: absolute;
  left: 5px;
  width: 40%;
  padding-right: 10px;
  white-space: nowrap;
}
#fbtable td:first-child {
  font-weight: 600;
  background: #236192;
  color: #ffffff;
  border-bottom: 4px solid #004272;
}
@media (min-width: 600px) {
  #fbtable td:first-child {
    background: #eef4f9;
    color: #4c4c4c;
    border-bottom: 1px solid #cccccc;
  }
}
@media (min-width: 600px) {
  #fbtable td {
    display: table-cell;
    line-height: 1.5;
    padding: 15px 5px;
    text-align: center;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    position: static;
  }
  #fbtable td a {
    display: block;
  }
}
#fbtable tbody {
  display: block;
}
@media (min-width: 600px) {
  #fbtable tbody {
    display: table-row-group;
  }
}
#fbtable thead {
  display: block;
}
@media (min-width: 600px) {
  #fbtable thead {
    display: table-header-group;
  }
}
#fbtable thead tr { /* Hide table headers (but not display: none;, for accessibility) */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
@media (min-width: 600px) {
  #fbtable thead tr {
    display: table-row;
    position: static;
  }
}
#fbtable td:nth-of-type(1):before {
  content: "Rank";
  font-weight: bold;
}
#fbtable td:nth-of-type(2):before {
  content: "Team";
  font-weight: bold;
}
#fbtable td:nth-of-type(3):before {
  content: "Number of fans";
  font-weight: bold;
}
#fbtable td:nth-of-type(4):before {
  content: "Championships";
  font-weight: bold;
}
@media (min-width: 600px) {
  #fbtable td {
    line-height: 1.5;
    padding: 15px 5px;
  }
  #fbtable td:nth-of-type(1):before {
    content: none;
  }
  #fbtable td:nth-of-type(2):before {
    content: none;
  }
  #fbtable td:nth-of-type(3):before {
    content: none;
  }
  #fbtable td:nth-of-type(4):before {
    content: none;
  }
}

/* Attendances Table */
#attendancestable {
  width: 100%;
  float: left;
  margin: 0 0 40px 0;
}
#attendancestable a {
  color: #236192;
  font-weight: 600;
  letter-spacing: 1px;
}
#attendancestable a:hover {
  text-decoration: underline;
}
#attendancestable table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 600px) {
  #attendancestable table {
    display: table;
  }
}
#attendancestable th {
  display: block;
}
@media (min-width: 600px) {
  #attendancestable th {
    display: table-cell;
    position: static;
    padding: 10px 5px;
    border-width: 0 1px 0 1px;
    border-bottom: 4px solid #004272;
  }
}
#attendancestable tr {
  display: block;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
#attendancestable tr:first-child {
  border-top: 1px solid #004272;
}
@media (min-width: 600px) {
  #attendancestable tr {
    display: table-row;
    border: 1px solid #cccccc;
  }
}
#attendancestable td {
  display: block;
  border: none;
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
#attendancestable td:before {
  position: absolute;
  left: 5px;
  width: 40%;
  padding-right: 10px;
  white-space: nowrap;
}
#attendancestable td:first-child {
  font-weight: 600;
  background: #236192;
  color: #ffffff;
  border-bottom: 4px solid #004272;
}
@media (min-width: 600px) {
  #attendancestable td:first-child {
    background: #eef4f9;
    color: #4c4c4c;
    border-bottom: 1px solid #cccccc;
  }
}
@media (min-width: 600px) {
  #attendancestable td {
    display: table-cell;
    line-height: 1.5;
    padding: 15px 5px;
    text-align: center;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    position: static;
  }
  #attendancestable td a {
    display: block;
  }
}
#attendancestable tbody {
  display: block;
}
@media (min-width: 600px) {
  #attendancestable tbody {
    display: table-row-group;
  }
}
#attendancestable thead {
  display: block;
}
@media (min-width: 600px) {
  #attendancestable thead {
    display: table-header-group;
  }
}
#attendancestable thead tr { /* Hide table headers (but not display: none;, for accessibility) */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
@media (min-width: 600px) {
  #attendancestable thead tr {
    display: table-row;
    position: static;
  }
}
#attendancestable td:nth-of-type(1):before {
  content: "Rank";
  font-weight: bold;
}
#attendancestable td:nth-of-type(2):before {
  content: "League";
  font-weight: bold;
}
#attendancestable td:nth-of-type(3):before {
  content: "Average Attendance";
  font-weight: bold;
}
@media (min-width: 600px) {
  #attendancestable td {
    line-height: 1.5;
    padding: 15px 5px;
  }
  #attendancestable td:nth-of-type(1):before {
    content: none;
  }
  #attendancestable td:nth-of-type(2):before {
    content: none;
  }
  #attendancestable td:nth-of-type(3):before {
    content: none;
  }
  #attendancestable td:nth-of-type(4):before {
    content: none;
  }
}

/* SF Table */
#sftable {
  width: 100%;
  float: left;
  margin: 0 0 40px 0;
}
#sftable a {
  color: #236192;
  font-weight: 600;
  letter-spacing: 1px;
}
#sftable a:hover {
  text-decoration: underline;
}
#sftable table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 600px) {
  #sftable table {
    display: table;
  }
}
#sftable th {
  display: block;
}
@media (min-width: 600px) {
  #sftable th {
    display: table-cell;
    position: static;
    padding: 10px 5px;
    border-width: 0 1px 0 1px;
    border-bottom: 4px solid #004272;
  }
}
#sftable tr {
  display: block;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
#sftable tr:first-child {
  border-top: 1px solid #004272;
}
@media (min-width: 600px) {
  #sftable tr {
    display: table-row;
    border: 1px solid #cccccc;
  }
}
#sftable td {
  display: block;
  border: none;
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
#sftable td:before {
  position: absolute;
  left: 5px;
  width: 40%;
  padding-right: 10px;
  white-space: nowrap;
}
#sftable td:first-child {
  font-weight: 600;
  background: #236192;
  color: #ffffff;
  border-bottom: 4px solid #004272;
}
@media (min-width: 600px) {
  #sftable td:first-child {
    background: #eef4f9;
    color: #4c4c4c;
    border-bottom: 1px solid #cccccc;
  }
}
@media (min-width: 600px) {
  #sftable td {
    display: table-cell;
    line-height: 1.5;
    padding: 15px 5px;
    text-align: center;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    position: static;
  }
  #sftable td a {
    display: block;
  }
}
#sftable tbody {
  display: block;
}
@media (min-width: 600px) {
  #sftable tbody {
    display: table-row-group;
  }
}
#sftable thead {
  display: block;
}
@media (min-width: 600px) {
  #sftable thead {
    display: table-header-group;
  }
}
#sftable thead tr { /* Hide table headers (but not display: none;, for accessibility) */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
@media (min-width: 600px) {
  #sftable thead tr {
    display: table-row;
    position: static;
  }
}
#sftable td:nth-of-type(1):before {
  content: "Sport & League";
}
#sftable td:nth-of-type(2):before {
  content: "Country";
}
#sftable td:nth-of-type(3):before {
  content: "First";
}
#sftable td:nth-of-type(4):before {
  content: "Second";
}
#sftable td:nth-of-type(5):before {
  content: "Third";
}
#sftable td:nth-of-type(6):before {
  content: "Latest Champion";
}
@media (min-width: 600px) {
  #sftable td:nth-of-type(1):before {
    content: none;
  }
  #sftable td:nth-of-type(2):before {
    content: none;
  }
  #sftable td:nth-of-type(3):before {
    content: none;
  }
  #sftable td:nth-of-type(4):before {
    content: none;
  }
  #sftable td:nth-of-type(5):before {
    content: none;
  }
  #sftable td:nth-of-type(6):before {
    content: none;
  }
}

/* Franchise Table */
#franchisetable {
  width: 100%;
  float: left;
  margin: 0 0 40px 0;
}
#franchisetable a {
  color: #236192;
  font-weight: 600;
  letter-spacing: 1px;
}
#franchisetable a:hover {
  text-decoration: underline;
}
#franchisetable table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 600px) {
  #franchisetable table {
    display: table;
  }
}
#franchisetable th {
  display: block;
}
@media (min-width: 600px) {
  #franchisetable th {
    display: table-cell;
    position: static;
    padding: 10px 5px;
    border-width: 0 1px 0 1px;
    border-bottom: 4px solid #004272;
  }
}
#franchisetable tr {
  display: block;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
#franchisetable tr:first-child {
  border-top: 1px solid #004272;
}
@media (min-width: 600px) {
  #franchisetable tr {
    display: table-row;
    border: 1px solid #cccccc;
  }
}
#franchisetable td {
  display: block;
  border: none;
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
#franchisetable td:before {
  position: absolute;
  left: 5px;
  width: 40%;
  padding-right: 10px;
  white-space: nowrap;
}
#franchisetable td:first-child {
  font-weight: 600;
  background: #236192;
  color: #ffffff;
  border-bottom: 4px solid #004272;
}
@media (min-width: 600px) {
  #franchisetable td:first-child {
    background: #eef4f9;
    color: #4c4c4c;
    border-bottom: 1px solid #cccccc;
  }
}
@media (min-width: 600px) {
  #franchisetable td {
    display: table-cell;
    line-height: 1.5;
    padding: 15px 5px;
    text-align: center;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    position: static;
  }
  #franchisetable td a {
    display: block;
  }
}
#franchisetable tbody {
  display: block;
}
@media (min-width: 600px) {
  #franchisetable tbody {
    display: table-row-group;
  }
}
#franchisetable thead {
  display: block;
}
@media (min-width: 600px) {
  #franchisetable thead {
    display: table-header-group;
  }
}
#franchisetable thead tr { /* Hide table headers (but not display: none;, for accessibility) */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
@media (min-width: 600px) {
  #franchisetable thead tr {
    display: table-row;
    position: static;
  }
}
#franchisetable td {
  vertical-align: middle;
}
#franchisetable td:nth-of-type(1):before {
  content: "City";
  font-weight: bold;
}
#franchisetable td:nth-of-type(2):before {
  content: "MLB (30 Teams)";
}
#franchisetable td:nth-of-type(3):before {
  content: "NFL (32 Teams)";
}
#franchisetable td:nth-of-type(4):before {
  content: "NBA (30 Teams)";
}
#franchisetable td:nth-of-type(5):before {
  content: "NHL (32 Teams)";
}
#franchisetable td:nth-of-type(6):before {
  content: "MLS (28 Teams)";
}
@media (min-width: 600px) {
  #franchisetable td:nth-of-type(1):before {
    content: none;
  }
  #franchisetable td:nth-of-type(2):before {
    content: none;
  }
  #franchisetable td:nth-of-type(3):before {
    content: none;
  }
  #franchisetable td:nth-of-type(4):before {
    content: none;
  }
  #franchisetable td:nth-of-type(5):before {
    content: none;
  }
  #franchisetable td:nth-of-type(6):before {
    content: none;
  }
}

.nytable {
  margin-top: 40px !important;
}
.nytable table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 600px) {
  .nytable table {
    display: table;
  }
}
.nytable th {
  display: block;
}
@media (min-width: 600px) {
  .nytable th {
    display: table-cell;
    position: static;
    padding: 10px 5px;
    border-width: 0 1px 0 1px;
    border-bottom: 4px solid #004272;
  }
}
.nytable tr {
  display: block;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.nytable tr:first-child {
  border-top: 1px solid #004272;
}
@media (min-width: 600px) {
  .nytable tr {
    display: table-row;
    border: 1px solid #cccccc;
  }
}
.nytable td {
  display: block;
  border: none;
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding-left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.nytable td:before {
  position: absolute;
  left: 5px;
  width: 40%;
  padding-right: 10px;
  white-space: nowrap;
}
.nytable td:first-child {
  font-weight: 600;
  background: #236192;
  color: #ffffff;
  border-bottom: 4px solid #004272;
}
@media (min-width: 600px) {
  .nytable td:first-child {
    background: #eef4f9;
    color: #4c4c4c;
    border-bottom: 1px solid #cccccc;
  }
}
@media (min-width: 600px) {
  .nytable td {
    display: table-cell;
    line-height: 1.5;
    padding: 15px 5px;
    text-align: center;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    position: static;
  }
  .nytable td a {
    display: block;
  }
}
.nytable tbody {
  display: block;
}
@media (min-width: 600px) {
  .nytable tbody {
    display: table-row-group;
  }
}
.nytable thead {
  display: block;
}
@media (min-width: 600px) {
  .nytable thead {
    display: table-header-group;
  }
}
.nytable thead tr { /* Hide table headers (but not display: none;, for accessibility) */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
@media (min-width: 600px) {
  .nytable thead tr {
    display: table-row;
    position: static;
  }
}
.nytable td:nth-of-type(1):before {
  content: "Rank";
}
.nytable td:nth-of-type(2):before {
  content: "Team";
}
.nytable td:nth-of-type(3):before {
  content: "Facebook";
}
.nytable td:nth-of-type(4):before {
  content: "Instagram";
}
.nytable td:nth-of-type(5):before {
  content: "Twitter";
}
.nytable td:nth-of-type(6):before {
  content: "Google Searches";
}
.nytable td:nth-of-type(7):before {
  content: "Trophies";
}
@media (min-width: 600px) {
  .nytable td:nth-of-type(1):before {
    content: none;
  }
  .nytable td:nth-of-type(2):before {
    content: none;
  }
  .nytable td:nth-of-type(3):before {
    content: none;
  }
  .nytable td:nth-of-type(4):before {
    content: none;
  }
  .nytable td:nth-of-type(5):before {
    content: none;
  }
  .nytable td:nth-of-type(6):before {
    content: none;
  }
  .nytable td:nth-of-type(7):before {
    content: none;
  }
}

/* SM Table */
.sm-table { /*Used with NY Table */
  width: 100%;
  float: left;
  margin: 0 0 40px 0;
}
.sm-table a {
  color: #236192;
  font-weight: 600;
  letter-spacing: 1px;
}
.sm-table a:hover {
  text-decoration: underline;
}

/* Column widths */
.col-6 { /* Used on National Champs & Franchise tables */
  width: 16.6666666667%;
}

.col-5 {
  width: 20%;
}

.col-4 {
  width: 25%;
}

.col8 {
  width: 8%;
}

.col10 {
  width: 10%;
}

.col15 {
  width: 15%;
}

.col30 {
  width: 30%;
}

.col45 {
  width: 45%;
}

.col46 {
  width: 46%;
}

.fb-newwindow::after {
  background-image: url(../images/site-icons/new-window-blue.svg);
  content: "";
  margin-left: 5px;
  display: inline-block;
  background-size: 15px 15px;
  width: 15px;
  height: 15px;
}

#sportscont {
  padding: 20px 0 0 0;
  width: 100%;
  float: left;
}
@media (min-width: 800px) {
  #sportscont {
    padding: 30px 0 0 0;
  }
}
@media (min-width: 1220px) {
  #sportscont {
    padding: 40px 0 0 0;
  }
}

.grid-logos {
  flex-basis: 25%;
  padding: 10px 10px;
}
@media (min-width: 600px) {
  .grid-logos {
    flex-basis: 12.5%;
    padding: 0 20px;
  }
}
.grid-logos img {
  max-width: 90%;
}
.grid-logos a:hover {
  opacity: 80%;
}

/* Articles Templates */
.introduction {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* blockquote */
blockquote {
  margin: 15px 0 15px 10px;
  padding: 5px 0 5px 10px;
  border-left: 4px solid #236192;
}
@media (min-width: 960px) {
  blockquote {
    margin: 15px 0 25px 30px;
    padding: 5px 15px;
  }
}
blockquote p {
  font-size: 1.5rem;
  font-family: "ropa sans", arial, sans-serif;
  padding: 0;
  line-height: 1.4;
}
@media (min-width: 960px) {
  blockquote p {
    font-size: 1.4rem;
  }
}

p.datestamp {
  padding-bottom: 0;
}

.date-updated {
  font-style: italic;
  padding-bottom: 20px;
  padding-top: 10px;
}
.date-updated p {
  padding: 0;
}

.photooverlay img {
  width: 100%;
  height: auto;
  display: block;
}
.photooverlay img:hover {
  opacity: 0.8;
}
.photooverlay:hover .phototitle {
  transition: 0.2s;
  cursor: pointer;
  background: rgb(35, 97, 146);
}

.phototitle {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  width: 100%;
  background: rgba(35, 97, 146, 0.8);
}
.phototitle h3 {
  padding: 0;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.sidebar-articles {
  background: #f1f1f1;
  padding: 1rem 1rem 0.5rem 1rem;
  margin-bottom: 20px;
  box-shadow: 1px 1px 4px #999999;
}
.sidebar-articles h3 {
  color: #333333;
  padding-bottom: 1rem;
}
.sidebar-articles a {
  color: #4c4c4c;
  font-weight: 500;
}

.sidebar-image {
  flex: 0 0 35%;
  margin-bottom: 1rem;
}
.sidebar-image img {
  display: block;
  width: 100%;
  height: auto;
}
.sidebar-image img:hover {
  opacity: 0.6;
}

.sidebar-name {
  flex: 0 0 65%;
  padding-left: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.sidebar-name a:hover {
  border-bottom: 2px solid #236192;
}

.underlinesports {
  width: 100%;
  float: left;
}
.underlinesports h1 {
  display: inline-block;
  color: #333;
  line-height: 1.3;
}
.underlinesports h1:after {
  margin-top: 8px;
  height: 3px;
  width: 40%;
  display: block;
  content: " ";
  position: relative;
  background-color: #236192;
}

.related-content {
  float: left;
  width: 100%;
}
.related-content h2 {
  padding: 2rem 0 1rem 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
}

.cta-related {
  height: 100%;
  color: #4c4c4c !important;
  font-weight: normal !important;
  box-shadow: 1px 1px 4px #999999;
}
.cta-related:hover {
  background: #cccccc;
  text-decoration: none !important;
}
.cta-related h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #236192;
  padding-bottom: 1rem;
}
.cta-related p {
  line-height: 1.4;
  padding-bottom: 1rem;
}
.cta-related .info {
  padding: 1rem 0.5rem;
  border-top: 4px solid #236192;
}
.cta-related .readmore {
  font-weight: 600;
  font-size: 1rem;
}
.cta-related .readmore:hover {
  border-bottom: 2px solid #236192;
}
.cta-related .cta-article {
  overflow: hidden;
  width: 100%;
}
.cta-related .cta-article img {
  transition: all 0.3s;
  display: block;
  transform: scale(1);
}
.cta-related .cta-article img:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.fas {
  padding-left: 0.5rem;
  font-size: 1rem;
}

.related-grey {
  background: #f1f1f1;
}
.related-grey h2 {
  color: #4c4c4c;
}
.related-grey .cta-related-bg {
  background: #ffffff;
}
.related-grey .cta-related-bg:hover {
  background: #cccccc;
}
.related-grey .cta-icon a {
  background-color: #ffffff;
}

.related-white {
  background: #ffffff;
}
.related-white h2 {
  color: #7d7d7d;
}
.related-white .cta-related-bg {
  background: #eaeaea;
}
.related-white .cta-related-bg:hover {
  background: #cccccc;
}

.col-map-cta {
  padding-bottom: 40px;
}

.bottomarticles {
  float: left;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}

/* Map Pages */
#sportsheaderleft {
  width: 100%;
  float: left;
  text-align: left;
}
@media (min-width: 650px) {
  #sportsheaderleft {
    width: 70%;
  }
}
#sportsheaderleft h1 {
  margin-bottom: 10px;
}
@media (min-width: 650px) {
  #sportsheaderleft h1 {
    margin-bottom: 0;
  }
}

#sportsheaderright {
  width: 100%;
  float: left;
  text-align: left;
}
@media (min-width: 650px) {
  #sportsheaderright {
    width: 30%;
    text-align: right;
    position: relative;
    padding-left: 0;
  }
}

#map-usage {
  height: 100%;
  width: 100%;
  border: 1px solid #236192;
  padding: 1.6rem;
  background: #f1f1f1;
}
@media (min-width: 800px) {
  #map-usage {
    height: 650px;
  }
}
#map-usage h2 {
  text-align: center;
  color: #236192;
}
#map-usage .buttonspace {
  width: 100%;
  margin: 20px auto;
}
@media (min-width: 800px) {
  #map-usage .buttonspace {
    width: 80%;
  }
}
@media (min-width: 960px) {
  #map-usage .buttonspace {
    width: 50%;
  }
}

#mapholder {
  width: 100%;
  float: left;
  margin: 20px 0;
}
@media (min-width: 800px) {
  #mapholder {
    width: 72.9166666667%; /* 700px */
    margin: 20px 3.6458333333% 0 0; /* 35px */
  }
}

#mapholderwide {
  width: 100%;
  float: left;
  margin-top: 20px;
}

#map_canvas {
  height: 60vh;
  border: 1px solid #236192;
  width: 100%;
}
@media (min-width: 800px) {
  #map_canvas {
    height: 650px;
  }
}

#map { /* Is map being used */
  width: 100%;
  height: 70vh;
  margin: 20px 0;
}
@media (min-width: 960px) {
  #map {
    height: 80vh;
  }
}

.map-date {
  padding: 20px 0;
  clear: both;
}

.datestamp {
  font-style: italic;
}

#legend {
  width: 100%;
  float: left;
  border: 1px solid #236192;
}
@media (min-width: 800px) {
  #legend {
    width: 23.4375%;
    height: 650px;
    margin: 20px 0 0 0;
  }
}
#legend h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  background: #236192;
  padding: 8px 5px 8px 10px;
}
#legend a {
  color: #4c4c4c;
}

#legend-2 {
  width: 100%;
  float: left;
  border: 1px solid #236192;
  overflow: scroll;
}
@media (min-width: 800px) {
  #legend-2 {
    width: 23.4375%;
    height: 650px;
    margin: 20px 0 0 0;
  }
}
#legend-2 h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  background: #236192;
  padding: 8px 5px 8px 10px;
}
#legend-2 a {
  color: #4c4c4c;
}

#side_bar {
  font-size: 1.2rem;
  padding: 10px 0 10px 10px;
  line-height: 1.8;
}
@media (min-width: 800px) {
  #side_bar {
    padding: 3px 0 3px 10px;
    font-size: 0.9rem;
    line-height: 1.3;
    height: 100%;
  }
}
#side_bar a:hover {
  text-decoration: underline;
}

@media (min-width: 800px) {
  .teams30 {
    line-height: 1.4 !important;
  }
}

@media (min-width: 800px) {
  .teams24 {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 800px) {
  .teams12 {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }
}

.alert {
  margin: 20px 0 0 0;
}
@media (min-width: 600px) {
  .alert {
    margin: 20px 0 0 0;
  }
}

.alert-article {
  margin: 0 0 20px 0;
}

.alert-icon {
  display: flex;
  flex-basis: 4rem;
  align-items: center;
  justify-content: center;
  background: #cccccc;
  font-size: 2rem;
  border-radius: 5px 0 0 5px;
}

.alert-message {
  display: flex;
  flex-grow: 1;
  flex-basis: 2rem;
  align-items: center;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 0 5px 5px 0;
}
.alert-message p {
  padding: 0;
  line-height: 1.4;
}

.trainline-container {
  width: 100%;
  background-color: rgb(226, 246, 240);
  border-radius: 5px;
  margin-bottom: 20px;
}

.trainline-msg {
  display: flex;
  flex-grow: 1; /* Take up remaining space*/
  flex-basis: 2rem;
  align-items: center;
  padding: 1rem;
  justify-content: center;
}
.trainline-msg p {
  padding: 0;
  text-align: center;
}

.trainline-logo {
  display: flex;
  flex-basis: 100%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0 0;
}
.trainline-logo img {
  height: 20px;
}
@media (min-width: 800px) {
  .trainline-logo {
    flex-basis: 30%;
    padding: 0 1rem 0 1rem;
  }
}
@media (min-width: 960px) {
  .trainline-logo {
    flex-basis: 20%;
  }
  .trainline-logo img {
    height: 35px;
  }
}

.trainline-button {
  display: flex;
  flex-basis: 100%;
  padding: 0 1rem 1rem 1rem;
  align-items: center;
}
@media (min-width: 800px) {
  .trainline-button {
    flex-basis: 30%;
    padding: 1rem;
  }
}
@media (min-width: 960px) {
  .trainline-button {
    flex-basis: 20%;
  }
}

.instructions {
  cursor: pointer;
  color: #121212;
  border-bottom: 1px solid #dbdbdb;
}
.instructions:hover {
  text-decoration: none;
  color: #236192;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  right: 10px;
  top: 45px;
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.95);
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s;
}
@media (min-width: 600px) {
  .overlay {
    left: 0;
    top: 0;
  }
}
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #236192;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}
.overlay a:hover {
  color: #000000;
}
.overlay a:focus {
  color: #000000;
}
.overlay .closebtn {
  position: absolute;
  top: 45px;
  right: 10px;
  font-size: 60px;
}
@media (min-width: 650px) {
  .overlay .closebtn {
    top: 60px;
    right: 60px;
  }
}

.overlay-content {
  position: relative;
  top: 20%;
  max-width: 600px;
  text-align: center; /* Centered text/links */
  margin: auto;
  color: #4c4c4c;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .overlay-content {
    top: 15%;
  }
}
.overlay-content h1 {
  font-size: 1.4rem;
  color: #236192;
}
.overlay-content h2 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #236192;
}
.overlay-content p {
  padding-bottom: 20px;
  font-size: 1rem;
}

#infobox {
  min-width: auto;
  height: auto;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 800px) {
  #infobox {
    min-width: 200px;
    max-width: 250px;
  }
}
#infobox h1 {
  font-size: 1.1rem;
  color: #236192;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.2;
}
#infobox h1 a {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #236192;
}
#infobox h2 {
  font-size: 0.95rem;
  color: #999999;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px 0;
}
@media (min-width: 800px) {
  #infobox h2 {
    font-size: 1rem;
  }
}
#infobox h3 {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2;
}
#infobox h3 a {
  color: #236192;
}
#infobox h3 a:hover {
  opacity: 0.7;
}
#infobox h4 {
  color: #999999;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 0 7px 0;
}
#infobox h4 a {
  color: #236192;
}
#infobox p {
  font-size: 1rem;
}

input#zoombutton {
  width: 100%;
  font-size: 1rem;
  color: #236192;
  padding: 5px 0;
}

#photobox {
  background: #236192;
}
#photobox h3 {
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  padding: 10px 0;
}
#photobox img {
  width: 100%;
  height: auto;
}
#photobox img:hover {
  opacity: 0.7;
}

.hero {
  min-height: 160px;
  clear: both;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero/london-stadium-600.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 0 30px 0;
}
@media (min-width: 600px) {
  .hero {
    min-height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero/london-stadium-1000.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
  }
}
@media (min-width: 800px) {
  .hero {
    min-height: 350px;
    padding: 90px 0;
  }
}
@media (min-width: 960px) {
  .hero {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero/london-stadium-1400.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
  }
}
.hero h1 {
  font-size: 1.5rem;
  padding: 0 20px 10px 20px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.3;
  font-weight: 600;
  text-shadow: 2px 2px 12px #000000;
}
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2rem;
    padding: 0 40px 10px 40px;
  }
}
@media (min-width: 960px) {
  .hero h1 {
    font-size: 3rem;
    font-weight: 400;
    padding: 0 120px 20px 120px;
  }
}

.hero_btn_ctr {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .hero_btn_ctr {
    width: 60%;
  }
}
@media (min-width: 800px) {
  .hero_btn_ctr {
    width: 50%;
  }
}
@media (min-width: 960px) {
  .hero_btn_ctr {
    width: 30%;
  }
}

.heroleft { /* where is heroleft used */
  padding: 20px 0;
  text-align: center;
}
@media (min-width: 800px) {
  .heroleft {
    padding: 0 40px;
  }
}
.heroleft h1 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.2;
}

.homeleft {
  width: 100%;
  padding: 30px 0;
}
@media (min-width: 960px) {
  .homeleft {
    width: 940px;
    margin: 0 auto;
    padding: 40px 0;
  }
}
.homeleft p {
  font-size: 1.1rem;
  padding-bottom: 20px;
}
@media (min-width: 960px) {
  .homeleft p {
    font-size: 1.2rem;
  }
}
.homeleft p:last-of-type {
  padding-bottom: 0;
}

.wrapper-logos {
  margin: 0 auto;
  padding: 20px 0;
}
@media (min-width: 960px) {
  .wrapper-logos {
    width: 800px;
  }
}

.featuretext {
  clear: both;
  width: 100%;
  display: block;
  padding: 40px 0;
}
@media (min-width: 960px) {
  .featuretext {
    width: 940px;
    margin: 0 auto;
    padding: 50px 0;
  }
}
.featuretext h3 {
  padding: 0;
}
.featuretext p {
  padding: 0 0 20px 0;
  font-size: 1.1rem;
}
@media (min-width: 960px) {
  .featuretext p {
    padding: 0 0 30px 0;
  }
}

.partners {
  padding: 20px 0;
  float: left;
}
@media (min-width: 960px) {
  .partners {
    padding: 40px 0;
  }
}

#contact_map {
  border: 1px solid #236192;
  width: 100%;
  height: 70vh;
}
@media (min-width: 800px) {
  #contact_map {
    height: 400px;
  }
}

.contactleft {
  padding-bottom: 20px;
}

/* Rugby Codes */
.rugby-codes {
  padding-bottom: 40px;
}

.codes {
  float: left;
  width: 100%;
  margin: 15px 0;
  padding: 0 20px;
  border-bottom: 1px solid #cccccc;
  background: #f1f1f1;
  box-shadow: 1px 1px 4px #999999;
  border-radius: 0 0 8px 8px;
}
.codes:first-of-type {
  margin-top: 140px;
}
.codes h3 {
  padding: 20px 0;
  color: #333333;
  font-size: 1.2rem;
  text-align: center;
}
.codes p {
  padding: 20px 0 !important;
}

.underlinecenter {
  width: 100%;
  float: left;
  text-align: center;
}
.underlinecenter h3 {
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
}
.underlinecenter h3:after {
  content: "";
  display: block;
  width: 35%;
  height: 3px;
  background-color: #236192;
  margin: 8px auto 0;
}

.codefact {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

/* SiteMap */
.sitemap {
  width: 100%;
  padding-bottom: 20px;
  /*float: left;*/
}
@media (min-width: 650px) {
  .sitemap {
    width: 50%;
    padding-right: 5%;
  }
  .sitemap:nth-of-type(2n) {
    padding-right: 0;
  }
}
@media (min-width: 960px) {
  .sitemap {
    width: 33.3333333333%;
    padding-right: 3%;
  }
  .sitemap:nth-of-type(2n) {
    padding-right: 3%;
  }
  .sitemap:nth-of-type(3n) {
    padding-right: 0;
  }
}
.sitemap ul {
  margin: 2px 0;
}
.sitemap ul li {
  line-height: 1.6;
  font-size: 1.1rem;
  padding: 3px 0;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (min-width: 650px) {
  .sitemap ul li {
    line-height: 1.5;
  }
}
.sitemap ul li a {
  display: block;
  color: #4c4c4c;
  border-bottom: 1px dotted #aaa7a7;
}
.sitemap ul li a:hover {
  color: #236192;
  border-bottom: 1px solid #236192;
  text-decoration: none;
}
.sitemap ul li:first-child {
  border-bottom: none;
}
.sitemap ul li ul {
  padding-left: 15px;
}
.sitemap ul li ul li {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.league-icon {
  position: relative;
}
.league-icon::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 10px;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

.la-liga::after {
  background-image: url("../images/sports-logos/la-liga.svg");
}

.mls::after {
  background-image: url("../images/sports-logos/mls-logo.svg");
}

.nfl::after {
  background-image: url("../images/sports-logos/nfl-logo.svg");
}

/*** Football in London ***/
.footballlondon {
  padding: 30px 0 0 0;
}
.footballlondon h2 {
  color: #333333;
}

.ticket {
  padding: 10px 0 40px 0;
}
.ticket h3 {
  padding: 15px 0 10px 0;
}
.ticket h3:first-of-type {
  padding-top: 0 !important;
}
.ticket h3 a {
  color: #236192;
}
.ticket h3 a:hover {
  text-decoration: none;
}
.ticket p {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.backtomap {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.2rem;
}

a.anchor {
  display: block;
  position: absolute;
  top: 100px;
  visibility: hidden;
}

.info-section {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}

.info-intro {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
.info-intro p:first-of-type {
  font-weight: 600;
}
.info-intro p:last-of-type {
  padding-bottom: 0;
}

.sportsinfo { /* Used on Liked vs Disliked and Sports info */
  float: left;
  width: calc(100% - 10px);
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
}
.sportsinfo h2 {
  color: #236192;
  margin-top: 0 !important;
}
.sportsinfo h2 a {
  color: #236192;
  border-bottom: none;
}
.sportsinfo h2 a:hover {
  color: #4c4c4c;
}
.sportsinfo h3 {
  color: #333333;
}
.sportsinfo h4 {
  color: #236192;
  font-weight: 600;
  padding-bottom: 10px;
}
.sportsinfo p {
  padding-bottom: 20px;
}
.sportsinfo .sub-head {
  font-style: italic;
  font-weight: 600;
}

.sportsinfo-noborder { /* Used on least succesful */
  float: left;
  width: calc(100% - 10px);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.sportsinfo-noborder h2 {
  color: #236192;
  margin-top: 0 !important;
}
.sportsinfo-noborder h2 a {
  color: #236192;
  border-bottom: none;
}
.sportsinfo-noborder h2 a:hover {
  color: #4c4c4c;
}
.sportsinfo-noborder h3 {
  color: #333333;
}
.sportsinfo-noborder h4 {
  color: #236192;
  font-weight: 600;
  padding-bottom: 10px;
}
.sportsinfo-noborder p {
  padding-bottom: 20px;
}
.sportsinfo-noborder .sub-head {
  font-style: italic;
  font-weight: 600;
}
.sportsinfo-noborder:last-of-type {
  margin-bottom: 0;
}

/* Jobs */
.jobadvert {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}
.jobadvert h2 {
  color: #236192;
}
.jobadvert h3 {
  padding-bottom: 10px;
  color: #4c4c4c;
}
.jobadvert p {
  padding-bottom: 25px;
}

.liked {
  float: left;
  width: 100%;
  padding-bottom: 40px;
}

/* Stadium Updates */
.stadium-updates {
  margin: 40px 0;
}
.stadium-updates a {
  color: #236192;
  font-weight: 400;
}
.stadium-updates a:hover {
  border-bottom: 1px solid #236192;
}
.stadium-updates h3 {
  padding-bottom: 20px;
}

/* Football Pyramid - Start */
.football-pyramid {
  margin: 0 0 30px 0;
  float: left;
}

.match-report {
  padding: 20px 0;
  line-height: 1.6;
}
.match-report h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media (min-width: 800px) {
  .match-report h2 {
    font-size: 1.3rem;
  }
}
.match-report h3 {
  padding: 0 0 10px 0;
}
.match-report ul {
  margin: 0.8rem 0;
}
.match-report ul li {
  display: inline-block;
  margin: 0 1rem;
}
.match-report ul li:first-of-type {
  margin-left: 0;
}
@media (min-width: 1220px) {
  .match-report ul li {
    margin: 0 0.5rem;
  }
}
.match-report ul li a:hover {
  opacity: 0.6;
}
.match-report img {
  width: 100%;
  height: auto;
}

.mr-border {
  border-bottom: 1px solid #cccccc;
}

/* NY Sports map */
#ny-sports-map {
  width: 100%;
  height: 70vh;
  margin: 20px 0;
}
@media (min-width: 960px) {
  #ny-sports-map {
    height: 400px;
  }
}

/* grid item & grid heading used on season calendar and decade of winners */
.grid-item {
  border: 1px solid #000000;
  color: #000000;
  padding: 3px 1px;
  overflow: hidden;
  writing-mode: vertical-lr;
}
@media (min-width: 600px) {
  .grid-item {
    padding: 3px;
  }
}
@media (min-width: 800px) {
  .grid-item {
    writing-mode: horizontal-tb;
    padding: 10px;
    text-align: center;
  }
}

.grid-item-heading {
  background: #cccccc;
  color: #000000;
  letter-spacing: 2px;
}
.grid-item-heading a {
  font-weight: bold;
}
.grid-item-heading a:hover {
  text-decoration: underline;
}

/* Grid - Index Columns */
.grid-container-3-by-3-multiple {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
@media (min-width: 600px) {
  .grid-container-3-by-3-multiple {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .grid-container-3-by-3-multiple {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.index-list h2 {
  background: #236192;
  color: #ffffff;
  margin: 0;
  padding: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}
.index-list ul {
  display: block;
  width: 100%;
  border: 1px solid #cccccc;
  border-width: 0 1px 1px 1px;
}
.index-list ul li {
  line-height: 1.8;
  list-style: none;
  border-bottom: 1px solid #cccccc;
}
.index-list ul li:last-child {
  border-bottom: 0;
}
.index-list ul li a {
  display: flex;
  padding: 10px;
  border-right: 10px solid #eaeaea;
  color: #999999;
  font-weight: normal !important;
}
.index-list ul li a:hover, .index-list ul li a:focus {
  border-right: 10px solid #236192;
  text-decoration: none !important;
  background: #eaeaea;
}
.index-list ul li a:focus {
  outline: none;
}

.flex-item-list {
  flex-basis: 80%;
}

.flex-item-logo {
  display: flex;
  flex-basis: 20%;
}
.flex-item-logo img {
  width: 30px;
  height: auto;
  margin-left: auto;
}

/* Season Calendar */
.grid-season {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media (min-width: 800px) {
  .grid-season {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.season {
  background-color: #236192;
}

.post-season {
  background-color: #922361;
}

.off-season {
  background-color: #ffffff;
}

/* Decade of Winners */
.grid-decade {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
}
@media (min-width: 800px) {
  .grid-decade {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

/* Carousel */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slides-container {
  /*height: calc(60vh - 2rem);*/
  height: auto;
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.slides-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
  background-color: #236192;
  color: #ffffff;
}
.slide h3 {
  color: #ffffff;
}

.slide-arrow {
  position: absolute;
  display: flex;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
  background-color: #ffffff;
  border: none;
  width: 2rem;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 100ms;
}
.slide-arrow:hover, .slide-arrow:focus {
  opacity: 0.5;
}
.slide-arrow:focus-visible {
  outline: 5px solid #922361;
  opacity: 1;
}

#slide-arrow-prev {
  left: 0;
  padding-left: 0.25rem;
  border-radius: 0 2rem 2rem 0;
}

#slide-arrow-next {
  right: 0;
  padding-left: 0.75rem;
  border-radius: 2rem 0 0 2rem;
}

.chevron::after {
  content: "";
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  display: inline-block;
  height: 0.6em;
  width: 0.6em;
  bottom: 0.2em;
  left: 0.4em;
  position: relative;
  transform: rotate(135deg);
}

.bayern {
  background-color: #DC052D;
  color: #ffffff;
}

.leverkusen {
  background-color: #E32221;
}

.man-city {
  background-color: #98c5e9;
}

.liverpool {
  background-color: #dc0714;
}

.chelsea {
  background-color: #072489;
  color: #ffffff;
}

.man-utd {
  background-color: #c93a26;
}

.leicester {
  background-color: #0b56a4;
  color: #ffffff;
}

.real-madrid {
  background-color: #ffffff;
}

.athletico-madrid {
  background-color: #CB3524;
}

.barcelona {
  background-color: #A50044;
}

.juventus {
  background-color: #000000;
  color: #ffffff;
}

.inter-milan {
  background-color: #010E80;
  color: #ffffff;
}

.ac-milan {
  background-color: rgb(213, 0, 0);
}

.napoli {
  background-color: #12A0D7;
}

.psg {
  background-color: #004170;
  color: #ffffff;
}

.monaco {
  background-color: #e51b22;
  color: #ffffff;
}

.lyon {
  background-color: #14387F;
  color: #ffffff;
}

.ajax {
  background-color: #D2122E;
  color: #000000;
}

.psv {
  background-color: #f00000;
  color: #ffffff;
}

.feyenoord {
  background-color: #e2001a;
  color: #ffffff;
}

/* Primiera Liga */
.benfica {
  background-color: #E83030;
  color: #ffffff;
}

.porto {
  background-color: #00428C;
  color: #ffffff;
}

.sporting {
  background-color: #008057;
}

/* NBA */
.bucks {
  background-color: #00471c;
  color: #ffffff;
}

.cavaliers {
  background-color: #860038;
}

.celtics {
  background-color: #007A33;
  color: #ffffff;
}

.gsw {
  background-color: #1d428a;
  color: #ffffff;
}

.raptors {
  background-color: #CE1141;
}

.lakers {
  background-color: #FDB927;
}

.nuggets {
  background-color: #0E2240;
  color: #ffffff;
}

.sanantonio {
  background-color: #C4CED4;
}

/* NHL */
.avalanche {
  background-color: #6F263D;
  color: #ffffff;
}

.blackhawks {
  background-color: #CF0A2C;
}

.capitals {
  background-color: #C8102E;
  color: #ffffff;
}

.blues {
  background-color: #002F87;
  color: #ffffff;
}

.goldenknights {
  background-color: #B4975A;
  color: #ffffff;
}

.kings {
  background-color: #111111;
  color: #ffffff;
}

.lightning {
  background-color: #002868;
  color: #ffffff;
}

.penguins {
  background-color: #FCB514;
}

.panthers {
  background-color: #c8102E;
}

/* NFL */
.chiefs {
  background-color: #E31837;
}

.rams {
  background-color: #003594;
  color: #ffffff;
}/*# sourceMappingURL=style-2021.css.map */