#fixedtipdiv {
position:absolute;
padding: 1px;
border:1px solid black;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
}

/* Website Banner */
.banner {
    vertical-align: top;
    top:0;
    left:0;
    border: 3px #ffa300;
    border-radius: 5px;
    background-image: url("Images/TigerBase_Banner_Background.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin:0 auto;
}

/* MASTER PAGE TITLES */
.pagetitle {
    font-family: sans-serif;
    font-size: 50px;
    font-weight: bolder;
}

/* Standard text styles */
.hdr_style {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 20px;
}
.standard_style {
	font-family: Verdana;
	font-size: 14px;
}
/* right-justify for numeric columns*/
.rj{
	text-align:right;
}

/* CHRISTMAS CODE: customizable snowflake styling  */
.snowflake {
	color: #fff;
	font-size: 1em;
	font-family: Arial, sans-serif;
	text-shadow: 0 0 5px #000;
}
@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}.snowflake:nth-of-type(10){left:25%;-webkit-animation-delay:2s,0s;animation-delay:2s,0s}.snowflake:nth-of-type(11){left:65%;-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s}
	

/* REEMS OF CSS FOR THE HAMBURGER MENU ANIMATIONS */
:root {
	font-family: sans-serif;
    --primColor: #000000;
    --secoColor: #ffa300;
    --cornerRad: 30px;
}
summary {
    writing-mode: vertical-lr;
    text-align: center;
	font-size: 22px;
    padding: 12px 8px;
    width: 25px;
    height: 27px;
    background-color: var(--primColor);
    border: 4px solid var(--secoColor);
    border-radius: var(--cornerRad);
    color: var(--secoColor);
    cursor: pointer;
    user-select: none;
    outline: none;
    transition: transform 200ms ease-in-out 0s;
}
summary::before,
summary::after {
    position: static;
    top: 0;
    left: 0;
}
summary::before {
    content: "";
}
summary::after {
    content: "III";
    letter-spacing: 1px;
}
summary:hover {
    transform: scale(1.3);
}
summary::marker {
    font-size: 0;
}
summary::-webkit-details-marker {
    display: none;
}
details[open] .menu {
    animation-name: menuAnim;
}
details[open] summary::before {
	font-size: 22px;
    content: "///";
}
details[open] summary::after {
  content: "";
}
.menu {
    font-size: 20px;
    height: 0;
    width: 500px;
    border-radius: var(--cornerRad);
    background-color: var(--secoColor);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: scroll;
    animation: closeMenu 300ms ease-in-out forwards;
}
.menu a {
    padding: 6px 12px;
    margin: 0 16px;
    color: var(--primColor);
    border-bottom: 0px solid rgba(0, 0, 0, 0);
    font-family: Verdana, sans-serif;
    text-decoration: none;
    text-align: center;
    transition: filter 200ms linear 0s;
}
.menu a:nth-of-type(1) {
    padding-top: 12px;
}
.menu a:nth-last-of-type(1) {
    border-bottom: none;
}
.menu a:hover {
    filter: brightness(120%) contrast(200%);
    transform: scale(1.7);
}
details::before {
    content: "";
    color: var(--secoColor);
    position: absolute;
    margin-left: 50px;
    padding: 10px 10px;
    opacity: 1;
}
details[open]::before {
    animation: fadeMe 300ms linear forwards;
}
@keyframes menuAnim {
  0% {
    height: 0;
  }
  100% {
    height: 800px;
  }
}
@keyframes fadeMe {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

/* BIG HOMEPAGE BUTTONS WITH IMAGE BACKGROUNDS */
.buttonbig {
	font-family: Verdana;
	border-radius: 20px;
    color: #0c9651;
	background-size: cover;
    opacity: 0.6;
	width: 210px;
    text-align: center;
	vertical-align: middle;
	font-weight: bolder;
	text-shadow: 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
}

/* MEDIUM Homepage buttons for current squad etc */
.buttonmed {
	font-family: Verdana;
    background-color: #ffa300; /* amber */
    border: 4px solid #c9c9c9; /* Grey */
	border-radius: 10px;
    color: black;
    opacity: 0.6;
	width: 460px;
	height: 70px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
	font-family: "Trebuchet MS";
	font-weight: bold;
    font-size: 35px;
}

/* Current Squad, Manager, Fixtures and Season Large Buttons */
.button-container form,
.button-container form div {
    display: inline;
}
.button-container button {
    display: inline;
    vertical-align: middle;
}

/* On This Day small Buttons */
.buttonotd {
	font-family: "Trebuchet MS";
    border: 3px solid Black; 
	border-radius: 6px;
	background-color: #ffa300;
    color: Black;   
    opacity: 0.6;
    text-align: center;
	vertical-align: middle;
	font-weight: bold;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}

/* Filter forms */
[name=filterfm] {
    width: 550px;
    color: #000;
    background-color: #ffa300; 
    border-style: solid; 
    border-radius: 10px;
}

/* SortBy forms */
[name=sortfm] {
    width: 500px;
    color: #000;
    background-color: rgb(218, 217, 215); 
    border-style: solid; 
    border-radius: 10px;
}

/* Green Data Forms */
[name=datafm] {
    color: white;
    background-color: #33b054;
    border-radius:10px;
}

/* Filter Box Dropdowns */
.dropdown p {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
}
.dropdown select {
    border: 3px; 
    border-radius: 3px;
	font-size: 18px;
    font-weight: bold;
/*   -webkit-appearance: none;    - these lines if added, hide the arrows at the side of dropdowns
    -moz-appearance: none; */
    text-overflow: "";  
	color: #F33;
    background-color: #FFF;
}

/* Records Page Collapsible sections */
.collapsible {
  background-color: #33b054;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 500px;
  border: none;
  border-radius:10px;
  text-align: left;
  outline: none;
  font-size: 25px;
}
.active, .collapsible:hover {
  background-color: #555;
}
.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\2212";
}
.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: black;
}


/* RESULTS TABLES */
table.results {
    font-size: 18px;
    font-family: Verdana;
    color: black;
    white-space: nowrap;
	border-width: 0px;
	padding: 2px;
	border-color: white;
	border-collapse: separate;
    overflow-x: auto;
}
table.results th {
	border-width: 1px;
	padding: 2px;
	border-radius: 3px;
	border-color: white;
	background-color: #ffa300;
	-moz-border-radius: 0;
}
table.results td {
	border-width: 1px;
	padding: 2px;
	border-radius: 3px;
	border-color: white;
	-moz-border-radius: 0;
}

/* Sticky Table Headers */
thead tr.first th, thead tr.first td {
  position: sticky;
  top: 0;
  background: #0c9651;
  color: #000;
}
thead tr.second th, thead tr.second td {
    position: sticky;
    top: 22px;
    background: #ffa300;
    color: #000;
}
thead tr.third th, thead tr.third td {
    position: sticky;
    top: 44px;
    background: #ffa300;
    color: #000;
}
table.results tr:nth-child(odd) {background: #DDD;}
table.results tr:nth-child(even) {background: #FFF;}

/* Buttons to select profiles */
.profilebutton {
 	font-family: Verdana;
	background-color: #000000; /* Black */
	border: 2px solid #ffa300; /* Grey */
    border-radius: 4px;
	color: white;
	opacity: 0.6;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
}
.profilebutton:hover {
	opacity: 1;
}

/* Admin Button */
 .adminbutton {
 	font-family: Verdana;
    background-color: #ffa300; /* Amber */
    border: 2px solid #c9c9c9; /* Grey */
 	border-radius: 2px;
    color: black;
    opacity: 0.6;
 	width: 80px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
 }
 .buttonhover:hover {
    opacity: 1;
	background-color: #FFF; /* White */
 }

/* HYPERLINKS WITH A TAGS */
a:link {
    font-family: Verdana;
    color: white;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    font-family: Verdana;
    color: white;
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    font-family: Verdana;
    color: #ffa300;
    background-color: transparent;
    text-decoration: none;
}

/* FOOTER BOX */
	 .ftrBox {
    height:130px;
    border: 3px solid #ffa300;
    border-radius: 5px;
	border-collapse: separate;
	font-variant:normal;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:12px;
	color:#FFF;
	background-color:#000;
	text-align: center;
 }