#footer_nav
{
  width: 100%;
  position:fixed;
  bottom:0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding:5px;
  color:white;
  background-color:black;
  z-index:50;
}

.footer_nav_active
{
  color:lightskyblue;
}

.footer_nav_item
{
  flex: 0 1 calc(20% - 20px);
  background: transparent;
  padding:5px;
}

.footer_nav_subtitle
{
  text-align: center;
  display: block;
}

.footer_nav_item i
{
  padding:20px;
}


/* The Footer Leagues Modal window */
.footer_leagues_modal 
{
  display: none;  
  width: 100%;
  position: fixed;
  z-index: 20;
  animation: popup 0.5s;
  bottom: 0;
}

#footer_leagues_display a
{
  text-decoration: none;
  color: white;
}

/* #footer_leagues_display tr */
.footer_leagues_row
{
  background-color: #36454F;
  border-radius: 50px;
  display: inline-block;
  padding: 2%;
  margin: 2%;
  width: 60%;
  border: 2px solid lightskyblue;
}

#footer_leagues_display tr
{
  cursor: pointer;
}

.footer_leagues_row a
{
  display:block;
}

#footer_leagues_title
{
  text-align: left;
  color:white;
  padding-left: 5%;
}

.footer_leagues_text
{
  width:100%;
}

.footer_league_rank
{
  color:lightskyblue;
}

.footer_leagues_item
{
  color:white;
}

.footer_leagues_overlay
{
  display: none;
  width:100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  z-index: 10;
}

/* The Footer More Modal window */
.footer_more_modal 
{
  display: none;  
  height: 100%;
  position: fixed;
  z-index: 30;
  background-color: black;
  animation: popup 0.5s;
}

.footer_more_display
{
  color: white;
  text-align: left;
  width: 100%;
  padding: 5%;
}

.footer_more_display a:hover
{
  color:lightskyblue;
}

#footer_more_x
{
  width:7%;
  text-align: left;
}

#footer_more_title
{
  width: 63%;
  text-align: center;
  padding: 5px;
}

#footer_more_logout
{
  width: 15%;
  text-align: right;
  padding: 5px;
}

#footer_more_close
{
  color: white;
  background-color: black;
  padding: 5px;
  border: none;
}

.footer_more_row
{
  color: lightskyblue;
  background-color: #26282A;
}

.footer_more_display td
{
  padding: 3%;
}

.footer_more_display a
{
  text-decoration: none;
  color: white;
}

.footer_nav_item:hover, .footer_nav_item:focus
{
  background-color: lightskyblue;
  cursor:pointer;
}