@charset "UTF-8";
/* ============================================================== 
FONT STYLES
============================================================== */
/* ============================================================== 
STYLES
============================================================== */
/* MAIN
============================= */
/* SELECT
============================= */
/* WIDTHS */
/* HEIGHTS */
/* SEARCH
============================= */
/* BORDERS
============================= */
/* ALL */
/* TOP */
/* BOTTOM */
/* MAIN
============================= */
/* ============================================================== 
TRANSITIONS
============================================================== */
/* ============================================================== 
MEDIA QUERIES
============================================================== */
/* BOX SHADOWS
============================= */
/* ============================================================== 
THEMES
============================================================== */
/* LIGHT
============================= */
/* COLORS */
/* BORDER */
/* BTN */
/* ACCENT */
/* SHADOWS */
/* DARK
============================= */
/* COLORS */
/* BORDER */
/* ACCENT */
/* SHADOWS */
/* ============================================================== 
MEDIA QUERIES
============================================================== */
/* ============================================================== 
THEMES
============================================================== */
/* CARDS
============================= */
/* SCROLL BARS
============================= */
/* SELECT
============================= */
/* ============================================================== 
STYLES
============================================================== */
/* VENDOR PREFIX
============================= */
/* POSITIONING
============================= */
/* BACKGROUND
============================= */
/* HEADER
============================= */
/* CONTAINERS
============================= */
/* SELECT
============================= */
/* SEARCH
============================= */
/* BUTTONS
============================= */
/* INPUTS
============================= */
/* TABLES
============================= */
/* CARDS
============================= */
/* NAV
============================= */
/* CONTACT
============================= */
/* ============================================================== 
THEMES
============================================================== */
/* LIGHT
============================= */
/* DARK
============================= */
/* ============================================================== 
FONTAWESOME
============================================================== */
/* ============================================================== 
MEDIA QUERIES
============================================================== */
/* ============================================================== 
ARROW LEFT/RIGHT
============================================================== */
/* ============================================================== 
BOTH AD STYLES
============================================================== */
ad {
  display: inline-block;
  width: 100%;
  text-align: center;
}

ad img {
  display: inline-block !important;
  margin: 0 auto;
  width: 100%;
}

div.ad-wrap {
  visibility: hidden;
}

/* ============================================================== 
BANNER
============================================================== */
div#ad-banner-wrap {
  margin: 0 auto;
  padding: 1.5em 0;
  background-color: rgba(0, 0, 0, 0.03);
}
@media (max-width: 576px) {
  div#ad-banner-wrap {
    padding: 0.5rem 0;
  }
}

div#ad-banner {
  max-width: 700px;
  margin: 0 auto;
  cursor: default;
  background-color: transparent;
  text-align: center;
}

ad.banner {
  width: 100%;
  height: 100%;
}

ad.banner img {
  max-height: 100%;
  position: relative;
  vertical-align: middle;
}

/* ============================================================== 
SQUARE AD
============================================================== */
div#ad-square-wrap {
  width: 275px;
  padding: 0;
  margin: 2em auto 0 auto;
  max-width: 95%;
}

div#ad-square {
  width: 100%;
  cursor: default;
  background-color: transparent;
}

ad.square img {
  width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  cursor: pointer;
  margin: auto;
}

/* ============================================================== 
MEDIA QUERIES
============================================================== */
@media screen and (max-width: 1000px) {
  div#ad-square-wrap {
    margin: 2em auto;
  }
}
@media (max-width: 850px) {
  div#ad-banner {
    max-width: 75%;
  }
}
@media (max-width: 600px) {
  div#ad-banner {
    max-width: 90%;
  }
}
@media (max-width: 500px) {
  ad.square img {
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
  }
}
body, html {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
@media (max-width: 576px) {
  body, html {
    filter: none !important;
  }
}

body {
  display: flex; /* for sticky footer */
  flex-direction: column;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: -1;
}
@media (max-width: 576px) {
  body::before {
    background-attachment: scroll !important;
  }
}
body.dark {
  color: #cfd2da;
}
body.light {
  color: #03091b;
}

html {
  background-color: var(--background-color);
}

body {
  background-color: transparent;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: inherit;
}

svg path {
  fill: inherit;
  stroke: #8690b3;
}

:focus {
  outline: none;
}

/* for sticky footer */
div#wrap-content {
  flex: 1 0 auto;
  visibility: hidden;
}

content {
  display: block;
  padding: 1rem 0;
}
@media (max-width: 576px) {
  content {
    padding: 0;
  }
}

table {
  color: #03091b;
}

.page-wrap {
  visibility: hidden;
}

.no-overflow {
  overflow-y: hidden !important;
}

.required-message {
  display: block;
  color: red;
  text-align: center;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b6b6b6;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #b6b6b6;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #b6b6b6;
}

:-moz-placeholder { /* Firefox 18- */
  color: #b6b6b6;
}

.gif {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@keyframes lds-eclipse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes lds-eclipse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.lds-eclipse {
  position: relative;
}

.lds-eclipse div {
  position: absolute;
  -webkit-animation: lds-eclipse 1s linear infinite;
  animation: lds-eclipse 1s linear infinite;
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  border-radius: 50%;
  -webkit-transform-origin: 80px 82px;
  transform-origin: 80px 82px;
}

.lds-eclipse {
  width: 200px !important;
  height: 200px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}

/* ============================================================== 
EMPTY STATE CARD
============================================================== */
.empty-state-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 170px;
  margin: 1.5rem 0;
  padding: 2rem 1.5rem;
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.empty-state-card .empty-state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.9rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.35rem;
}
.empty-state-card .empty-state-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.empty-state-card .empty-state-message {
  max-width: 34rem;
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.75;
}
.empty-state-card:hover {
  transform: translateY(-1px);
}
@media (max-width: 576px) {
  .empty-state-card {
    min-height: 150px;
    margin: 1rem 0;
    padding: 1.5rem 1rem;
    border-radius: 5px;
  }
  .empty-state-card .empty-state-title {
    font-size: 1rem;
  }
  .empty-state-card .empty-state-message {
    font-size: 0.8rem;
  }
}

body.light .empty-state-card {
  background-color: rgba(255, 255, 255, 0.92);
  border-color: #efeff5;
  box-shadow: 0 8px 24px rgba(82, 63, 105, 0.1);
}

body.dark .empty-state-card {
  background-color: rgba(20, 21, 31, 0.88);
  border-color: #2a303e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.31);
}

.nav {
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav > ul {
  display: flex;
  height: 100%;
  align-items: center;
}
.nav.nav-stats {
  margin: 0 auto 1.5em;
  padding: 0;
  max-width: 800px;
}

#main-header nav#main-nav {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 146, 154, 0.65) transparent;
}
#main-header nav#main-nav::-webkit-scrollbar {
  height: 5px;
}
#main-header nav#main-nav::-webkit-scrollbar-track {
  background: transparent;
}
#main-header nav#main-nav::-webkit-scrollbar-thumb {
  background-color: rgba(142, 146, 154, 0.65);
  border: 1px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}
#main-header nav#main-nav:hover::-webkit-scrollbar-thumb {
  background-color: rgba(142, 146, 154, 0.9);
}

li.nav-item {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  list-style-type: none;
}
li.nav-item::before {
  display: none;
  margin-right: 5px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
}
li.nav-item.on {
  opacity: 1;
}
li.nav-item > .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 0 0.75rem;
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: transparent;
  transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out;
}
li.nav-item > img {
  display: none;
}
li.nav-item.dropdown > .nav-link::after {
  font-size: 11px;
  margin-left: 5px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  content: "\f078";
}
@media (min-width: 768px) {
  li.nav-item.dropdown.active > .dropdown-menu {
    display: flex;
  }
}
li.nav-item.dropdown.active > .nav-link::after {
  content: "\f077";
}
li.nav-item.stats-tab {
  flex: 1;
  justify-content: center;
  padding: 10px 0;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
  white-space: nowrap;
  border-bottom-width: 7px;
  border-bottom-style: solid;
  border-bottom-color: #2a303e;
  cursor: pointer;
}
@media (max-width: 768px) {
  li.nav-item.stats-tab {
    font-size: 14px;
    border-bottom-width: 6px;
  }
}
@media (max-width: 350px) {
  li.nav-item.stats-tab {
    font-size: 12px;
  }
}

.overlay {
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  overflow: hidden;
}

nav.side-nav {
  display: block !important;
  position: fixed;
  padding: 0 0 env(safe-area-inset-bottom) !important;
  margin: 0;
  z-index: 5 !important;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.5s;
  background-color: #14151f;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
nav.side-nav ul {
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}
nav.side-nav li.nav-item {
  display: block;
  text-align: left;
  width: 100%;
  height: auto;
  font-size: 13px;
}
nav.side-nav li.nav-item:hover {
  background-color: #0a0b10;
}
nav.side-nav li.nav-item > .nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #2a303e;
}

.dropdown-menu {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  flex-wrap: wrap;
  padding: 1rem;
  margin: 0;
  min-width: initial;
  max-width: 750px;
  max-height: 90%;
  background-color: #1e222b;
  border-radius: 5px;
  border: none;
  box-shadow: 2px 0px 7px 0px rgba(0, 0, 0, 0.31);
  float: none;
  font-size: 1rem;
  z-index: 6;
  cursor: default;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    max-width: none;
    max-height: none;
    padding: 1rem;
    border-radius: 0;
  }
}
.dropdown-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
  color: #cfd2da;
  background-color: transparent;
  padding: 0.25rem 0;
}
.dropdown-menu .dropdown-divider {
  height: 0;
  border: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #2a303e;
}

.teams-dropdown .nav-league-page {
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .teams-dropdown .nav-league-page {
    display: none;
  }
}
.teams-dropdown .dropdown-division {
  border-radius: 5px;
  margin: 0.5rem;
  flex: 1 0 25%;
}
@media (max-width: 576px) {
  .teams-dropdown .dropdown-division {
    margin: 0.5rem 0;
  }
}
.teams-dropdown .dropdown-division h3 {
  margin: 0 0 0.5rem 0;
  font-size: 14px;
  font-weight: 500;
  color: #cfd2da;
}
.teams-dropdown .dropdown-division ul {
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.teams-dropdown .dropdown-division ul li.dropdown-team {
  padding: 4px;
  list-style-type: none;
  transition: color ease-in-out 0.2s;
  border-radius: 5px;
  max-width: 180px;
}
.teams-dropdown .dropdown-division ul li.dropdown-team a {
  display: flex;
  flex: 1;
  align-items: center;
  text-decoration: none;
}
.teams-dropdown .dropdown-division ul li.dropdown-team img {
  max-height: 40px;
  max-width: 20px;
}
.teams-dropdown .dropdown-division ul li.dropdown-team svg {
  height: 25px;
  width: 25px;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.25));
}
.teams-dropdown .dropdown-division ul li.dropdown-team span {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  margin-left: 0.5rem;
  font-weight: 500;
}

.active-nav .side-nav {
  transform: translate3d(0, 0, 0);
  box-shadow: -3px -1px 16px 2px rgba(0, 0, 0, 0.35);
}

#menu-icon {
  display: none;
  cursor: pointer;
  opacity: 1;
  position: relative;
  margin: 0 1rem 0 0.5rem;
  min-width: 25px;
  max-width: 25px;
  height: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
}
@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
}

#menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-icon-hover {
  /* background-color: #1a1b20 !important; */
}

#menu-icon span:nth-child(1) {
  top: 0px;
}

#menu-icon span:nth-child(2), #menu-icon span:nth-child(3) {
  top: 8px;
}

#menu-icon span:nth-child(4) {
  top: 16px;
}

#menu-icon.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu-icon.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/* ============================================================== 
THEME
============================================================== */
body.light li.nav-item.stats-tab {
  border-bottom-color: #efeff5;
}
body.light li.nav-item .dropdown-menu {
  background-color: #f7f8fa;
  box-shadow: 2px 0px 7px 0px rgba(82, 63, 105, 0.1);
}
body.light li.nav-item .dropdown-menu .dropdown-item {
  color: #03091b;
}
body.light li.nav-item .dropdown-menu .dropdown-divider {
  border-top-color: #efeff5;
}
body.light li.nav-item .dropdown-menu h3 {
  color: #03091b;
}
body.light nav.side-nav {
  background-color: #fff;
}
body.light nav.side-nav .nav-link {
  border-bottom-color: #efeff5;
}
body.light nav.side-nav li.nav-item:hover {
  background-color: #f2f2f2;
}

#main-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  height: 75px;
}
@media (max-width: 768px) {
  #main-header {
    display: block;
  }
}
#main-header.is-sticky {
  box-shadow: 3px -3px 16px 5px #000;
  transition: height 0.3s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.2s ease-in;
}
#main-header #header-bkg {
  position: relative;
}
#main-header #header-bkg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: -1;
}
@media (max-width: 576px) {
  #main-header #header-bkg::before {
    background-attachment: scroll !important;
  }
}
#main-header #info {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
  height: 75%;
  border-right-width: 1px;
  border-right-style: solid;
}
@media (max-width: 768px) {
  #main-header #info {
    height: 60%;
    margin: 0;
    border-right: none;
  }
}
#main-header #info a {
  display: flex;
  align-items: center;
  height: 100%;
}
#main-header #info a:hover {
  text-decoration: none;
}
#main-header #info #event-identity {
  display: grid;
  flex: 1;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto;
  row-gap: 0.15rem;
  align-items: center;
}
#main-header #info #event-identity > a {
  display: contents;
}
#main-header #info #event-identity #main-logo {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  max-width: 75px;
  max-height: 45px;
}
#main-header #info #event-identity h1 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
#main-header #info #event-identity h1 #organization-name,
#main-header #info #event-identity h1 #league-name {
  display: block;
}
#main-header #info #event-identity h1 #organization-name {
  order: 2;
  font-size: 10px;
  line-height: 1.1;
  opacity: 0.7;
}
#main-header #info #event-identity h1 #organization-name.primary-event-name,
#main-header #info #event-identity h1 #league-name {
  order: 1;
  font-size: 16px;
  font-weight: 600;
  opacity: 1;
}
#main-header #info #event-identity h1 #league-name {
  order: 1;
  font-size: 16px;
  margin-top: 0.1rem;
}
#main-header #info img {
  max-width: 95px;
  max-height: 100%;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  #main-header #info img {
    max-width: 70px;
    max-height: 75%;
    margin-right: 1rem;
  }
}
#main-header #info h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0.5rem 0 0;
  letter-spacing: 0.5px;
  max-width: 300px;
}
@media (max-width: 768px) {
  #main-header #info h1 {
    font-size: 16px;
    max-width: initial;
  }
}
#main-header .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 2px solid #333845;
}
#main-header select#events {
  font-size: 10px;
  max-width: 175px;
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
#main-header select#events option {
  font-size: 14px;
}
@media (max-width: 576px) {
  #main-header select#events {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
#main-header nav#main-nav {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  #main-header nav#main-nav {
    display: flex;
    flex-wrap: wrap;
    height: 40%;
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  #main-header nav#main-nav.small {
    display: none;
  }
}
#main-header #events-nav .nav-item {
  border: none;
}
#main-header #info h1 {
  font-size: 15px;
}
@media (max-width: 768px) {
  #main-header #info {
    height: 100%;
    font-size: 12px;
  }
}
#main-header #season-switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  margin-left: 0.5rem;
  opacity: 0.9;
}
#main-header #season-switcher select#seasons {
  order: 2;
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
  background-color: transparent !important;
  border: 2px solid #333845;
  width: 105px;
  height: 30px;
  margin: 0;
  padding: 2px 20px 2px 7px;
  font-size: 11px;
  font-weight: 500;
}
#main-header #season-switcher select#seasons option {
  font-size: 14px;
}
@media (max-width: 576px) {
  #main-header #season-switcher select#seasons {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
#main-header #season-switcher select#seasons option {
  font-size: 15px;
}
#main-header #season-switcher .select2-container {
  order: 2;
  width: 105px !important;
  font-size: 13px;
}
#main-header #season-switcher .select2-container .select2-selection--single {
  height: 30px;
}
#main-header #season-switcher .select2-container .select2-selection__rendered {
  padding-left: 7px;
  padding-right: 18px;
  font-size: 12px !important;
  line-height: 30px;
}
#main-header #season-switcher .select2-container .select2-selection__arrow {
  height: 30px;
  width: 18px;
}
#main-header #season-switcher .select2-results__option {
  font-size: 15px;
}
#main-header #season-switcher .select2-selection--single .select2-selection__rendered {
  font-size: 12px !important;
}
@media (max-width: 768px) {
  #main-header #season-switcher {
    flex-direction: column;
    align-items: center;
    row-gap: 0.25rem;
  }
  #main-header #season-switcher label {
    margin: 0;
    font-size: 10px;
  }
  #main-header #season-switcher select#seasons {
    width: 100px;
    height: 28px;
    font-size: 12px;
  }
  #main-header #season-switcher .select2-container {
    width: 100px !important;
    font-size: 13px;
  }
  #main-header #season-switcher .select2-container .select2-selection--single {
    height: 28px;
  }
  #main-header #season-switcher .select2-container .select2-selection__rendered {
    font-size: 11px !important;
    line-height: 28px;
  }
  #main-header #season-switcher .select2-container .select2-selection__arrow {
    height: 28px;
  }
}
body #select2-seasons-results .select2-results__option {
  font-size: 15px !important;
}

#main-header.header-layout-inline #info #event-identity h1 {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35rem;
}
#main-header.header-layout-inline #info #event-identity h1 #organization-name,
#main-header.header-layout-inline #info #event-identity h1 #league-name {
  display: inline;
  order: initial;
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  opacity: 1;
}
#main-header.header-layout-inline #info #event-identity h1 #league-name {
  font-size: 14px;
}
#main-header.header-layout-inline #info #event-identity h1 #league-name::before {
  content: "|";
  margin-right: 0.35rem;
  opacity: 0.65;
}
#main-header.header-layout-compact #info #event-identity #main-logo {
  max-width: 60px;
  max-height: 36px;
  margin-right: 0.35rem;
}
#main-header.header-layout-compact #info #event-identity h1 {
  font-size: 14px;
}
#main-header.header-layout-compact #info #event-identity h1 #league-name {
  display: block;
  margin-top: 0;
  font-size: 14px;
}
#main-header.header-layout-compact #info #event-identity h1 #organization-name {
  display: none;
}
#main-header.header-layout-compact #info #event-identity h1 #organization-name.primary-event-name {
  display: block;
  font-size: 14px;
}
#main-header.header-layout-logo-only #info {
  border-right: none;
}
#main-header.header-layout-logo-only #info #event-identity {
  flex: 0 1 auto;
  grid-template-columns: auto;
}
#main-header.header-layout-logo-only #info #event-identity h1 {
  display: none;
}
#main-header.header-layout-logo-only #info #event-identity #main-logo {
  margin-right: 0.75rem;
}
#main-header.small {
  height: 55px;
}

@media (max-width: 768px) {
  nav#main-nav li.nav-item[data-nav=home]::before {
    content: "\f80a";
  }
  nav#main-nav li.nav-item[data-nav=teams]:before {
    content: "\f0c0";
  }
  nav#main-nav li.nav-item[data-nav=schedule]::before {
    content: "\f073";
  }
  nav#main-nav li.nav-item[data-nav=standings]::before {
    content: "\f091";
  }
  nav#main-nav li.nav-item[data-nav=stats]::before {
    content: "\f080";
  }
  nav#main-nav li.nav-item[data-nav=link]::before {
    content: "\f08e";
  }
}

/* ============================================================== 
THEME
============================================================== */
body.light #main-header.is-sticky {
  box-shadow: 3px -3px 16px 5px rgba(82, 63, 105, 0.1);
}

#main-header.font-dark #info {
  border-right-color: #2a303e;
}

#main-header.font-light #info {
  border-right-color: #efeff5;
}

/******** SELECT2 STYLES ********/
/* SELECTOR
============================= */
/*FOOTER*/
#footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-top: 2rem;
  position: relative;
  width: 100%;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
}
#footer #footer-branding {
  flex: 1;
  order: 3;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  #footer #footer-branding {
    margin-bottom: 2rem;
  }
}
#footer #footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#footer #footer-logo h2 {
  font-size: 12px;
  margin-bottom: 5px;
}
#footer #footer-logo #sports-track-logo {
  position: relative;
  width: 220px;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
#footer #footer-logo a:hover #sports-track-logo {
  opacity: 1;
}
#footer #footer-contact {
  flex: 1;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
  text-align: center;
  flex: 1;
}
#footer #footer-contact .footer-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
}
#footer #footer-contact .footer-contact-content h2 {
  font-size: 16px;
  margin: 0 0 0.35rem;
}
#footer #footer-contact .footer-contact-content .footer-contact-name {
  font-size: 14px;
  line-height: 1.35;
}
#footer #footer-contact .footer-contact-content .footer-contact-name i {
  margin-right: 0.4rem;
}
#footer #footer-contact .footer-contact-content a {
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
#footer #footer-contact .footer-contact-content a i {
  margin-right: 0.4rem;
}
#footer #social-media {
  flex: 1;
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
#footer #social-media h2 {
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
}
#footer #social-media .social-icons.list-inline {
  float: none;
  right: 0;
  margin: 0;
}
#footer #social-media .social-icons.list-inline li:first-child {
  margin-left: 0;
}
#footer #social-media .social-icons.list-inline li {
  margin-left: 2px;
  padding: 0 2px;
}
@media (max-width: 576px) {
  #footer section:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
#footer #footer-branding,
#footer #footer-contact,
#footer #social-media {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  #footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  #footer #footer-contact {
    order: 1;
  }
  #footer #social-media {
    order: 2;
  }
  #footer #footer-branding {
    order: 3;
    flex: 0 0 auto;
  }
  #footer #footer-contact .footer-contact-content,
  #footer #social-media {
    width: min(100%, 280px);
    margin-left: auto;
    margin-right: auto;
  }
  #footer #footer-contact .footer-contact-content {
    align-items: center;
    text-align: center;
  }
  #footer #social-media {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  #footer #footer-contact .footer-contact-content {
    align-items: flex-start;
    text-align: left;
  }
}

#footer.footer-standard {
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.75rem;
  padding: 1.25rem 1rem 1rem;
}
#footer.footer-standard #footer-identity,
#footer.footer-standard #footer-branding,
#footer.footer-standard #footer-contact,
#footer.footer-standard #social-media {
  flex: 0 1 auto;
  width: auto;
  margin: 0;
}
#footer.footer-standard #footer-identity {
  order: 1;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.25px;
  line-height: 1.25;
  white-space: normal;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.75rem;
}
#footer.footer-standard .footer-organization-name {
  white-space: nowrap;
}
#footer.footer-standard .footer-season-switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
#footer.footer-standard .footer-season-switcher select#seasons {
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
  width: 150px;
  height: 40px;
  margin: 0;
  font-size: 14px;
  border: 2px solid currentColor;
  box-shadow: none;
}
#footer.footer-standard .footer-season-switcher select#seasons option {
  font-size: 14px;
}
@media (max-width: 576px) {
  #footer.footer-standard .footer-season-switcher select#seasons {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
#footer.footer-standard .footer-season-switcher .select2-container {
  width: 150px !important;
  font-size: 14px;
}
#footer.footer-standard .footer-season-switcher .select2-container .select2-selection--single {
  height: 40px;
  border: 2px solid currentColor;
  box-shadow: none;
}
#footer.footer-standard .footer-season-switcher .select2-container .select2-selection__rendered {
  padding-left: 8px;
  padding-right: 20px;
  line-height: 40px;
}
#footer.footer-standard .footer-season-switcher .select2-container .select2-selection__arrow {
  height: 40px;
}
#footer.footer-standard #footer-contact {
  order: 2;
}
#footer.footer-standard #footer-contact .footer-contact-content {
  align-items: flex-start;
  text-align: left;
}
#footer.footer-standard #social-media {
  order: 3;
}
#footer.footer-standard #footer-branding {
  order: 4;
}
#footer.footer-standard #footer-logo .footer-powered-by {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  opacity: 0.7;
}
#footer.footer-standard #footer-logo #sports-track-logo {
  width: 180px;
}
@media (max-width: 768px) {
  #footer.footer-standard {
    flex-direction: column;
    align-items: center;
    row-gap: 1.25rem;
    padding: 1.25rem 1rem 1rem;
  }
  #footer.footer-standard #footer-identity,
  #footer.footer-standard #footer-contact,
  #footer.footer-standard #social-media,
  #footer.footer-standard #footer-branding {
    width: min(100%, 280px);
    margin-left: auto;
    margin-right: auto;
  }
  #footer.footer-standard #footer-identity {
    order: 1;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  #footer.footer-standard .footer-season-switcher {
    align-items: center;
    text-align: center;
  }
  #footer.footer-standard #footer-contact {
    order: 2;
  }
  #footer.footer-standard #footer-contact .footer-contact-content {
    align-items: center;
    text-align: center;
  }
  #footer.footer-standard #social-media {
    order: 3;
  }
  #footer.footer-standard #footer-branding {
    order: 4;
  }
}

#footer.footer-standard #footer-community {
  flex-direction: column;
  gap: 0;
}
#footer.footer-standard #footer-community .footer-community-sections {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#footer.footer-standard #footer-community #footer-contact,
#footer.footer-standard #footer-community #social-media {
  width: auto;
}
#footer.footer-standard #footer-community #social-media {
  flex-direction: row;
  order: 1;
}
#footer.footer-standard #footer-community #footer-contact {
  order: 2;
}
#footer.footer-standard #footer-community #footer-contact .footer-contact-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}
#footer.footer-standard #footer-community #footer-contact .footer-contact-toggle::-webkit-details-marker {
  display: none;
}
#footer.footer-standard #footer-community #footer-contact .footer-contact-chevron {
  transition: transform 0.2s ease;
}
#footer.footer-standard #footer-community #footer-contact[open] .footer-contact-chevron {
  transform: rotate(180deg);
}
#footer.footer-standard #footer-community #footer-contact .footer-contact-content {
  margin-top: 0.75rem;
}
#footer.footer-standard #footer-community #social-media h2 {
  font-size: 13px;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  #footer.footer-standard #footer-community .footer-community-sections {
    flex-direction: column;
    gap: 1rem;
  }
  #footer.footer-standard #footer-community #footer-contact,
  #footer.footer-standard #footer-community #social-media {
    width: 100%;
  }
}

#footer.footer-standard.footer-no-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: initial;
  column-gap: 1rem;
  padding-left: 2rem;
  padding-right: 1rem;
}
#footer.footer-standard.footer-no-contact #footer-identity {
  grid-column: 1;
  justify-self: start;
}
#footer.footer-standard.footer-no-contact #social-media {
  grid-column: 2;
  justify-self: center;
}
#footer.footer-standard.footer-no-contact #footer-branding {
  grid-column: 3;
  justify-self: end;
}
#footer.footer-standard.footer-no-contact #footer-logo {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #footer.footer-standard.footer-no-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #footer.footer-standard.footer-no-contact #footer-identity,
  #footer.footer-standard.footer-no-contact #social-media,
  #footer.footer-standard.footer-no-contact #footer-branding {
    grid-column: auto;
    justify-self: auto;
  }
  #footer.footer-standard.footer-no-contact #footer-logo {
    justify-content: center;
  }
}

#footer.footer-standard:not(.footer-no-contact) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  column-gap: 1rem;
  justify-content: initial;
}
#footer.footer-standard:not(.footer-no-contact) #footer-identity {
  grid-column: 1;
  justify-self: start;
}
#footer.footer-standard:not(.footer-no-contact) #footer-contact {
  grid-column: 3;
  order: 3;
  justify-self: center;
}
#footer.footer-standard:not(.footer-no-contact) #social-media {
  grid-column: 2;
  order: 2;
  justify-self: center;
}
#footer.footer-standard:not(.footer-no-contact) #footer-branding {
  grid-column: 4;
  justify-self: end;
}
#footer.footer-standard:not(.footer-no-contact) #footer-logo {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #footer.footer-standard:not(.footer-no-contact) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: initial;
  }
  #footer.footer-standard:not(.footer-no-contact) #footer-identity,
  #footer.footer-standard:not(.footer-no-contact) #footer-contact,
  #footer.footer-standard:not(.footer-no-contact) #social-media,
  #footer.footer-standard:not(.footer-no-contact) #footer-branding {
    grid-column: auto;
    justify-self: auto;
  }
  #footer.footer-standard:not(.footer-no-contact) #footer-logo {
    justify-content: center;
  }
}

#footer.footer-standard #footer-community {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  order: 2;
  width: auto;
  margin: 0;
}
#footer.footer-standard #footer-contact,
#footer.footer-standard #social-media {
  flex: 0 1 auto;
  width: auto;
  margin: 0;
}
#footer.footer-standard #footer-contact {
  order: 1;
}
#footer.footer-standard #social-media {
  order: 2;
}
#footer.footer-standard #footer-community #social-media {
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}
#footer.footer-standard #footer-community h2,
#footer.footer-standard .footer-contact-toggle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#footer.footer-standard #footer-contact .footer-contact-content {
  font-weight: 500;
  letter-spacing: 0.02em;
}
#footer.footer-standard #footer-community h2,
#footer.footer-standard .footer-contact-toggle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25px;
}
@media (max-width: 768px) {
  #footer.footer-standard #footer-community {
    flex-direction: column;
    gap: 1rem;
    width: min(100%, 280px);
  }
  #footer.footer-standard #footer-contact,
  #footer.footer-standard #social-media {
    width: 100%;
  }
}

#footer.footer-standard.footer-no-contact {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
#footer.footer-standard.footer-no-contact #footer-community {
  grid-column: 2;
  justify-self: center;
}
#footer.footer-standard.footer-no-contact #footer-branding {
  grid-column: 3;
}

#footer.footer-standard:not(.footer-no-contact) {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
#footer.footer-standard:not(.footer-no-contact) #footer-community {
  grid-column: 2;
  justify-self: center;
}
#footer.footer-standard:not(.footer-no-contact) #footer-branding {
  grid-column: 3;
}
@media (max-width: 768px) {
  #footer.footer-standard:not(.footer-no-contact) #footer-community {
    grid-column: auto;
    justify-self: auto;
  }
}

/* ============================================================== 
SCOREBAR IFRAME
============================================================== */
div#score-bar-container {
  height: 73px;
  overflow: hidden;
  transition: height ease-out 0.4s;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity ease-in 1s;
  transition: visibility 0s linear 0s, opacity 300ms;
}
div#score-bar-container.sb-up {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

iframe#score-bar {
  width: 100%;
}

body.light div#score-bar-container {
  border-top: 1px solid #efeff5;
}

#share-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, -100%);
  transition: transform ease-in-out 0.2s;
  z-index: 200;
  color: #fff;
}
#share-container .on-top {
  z-index: 2000 !important;
}
#share-container #share-wrap {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  /* only transition on transform properties which are hardware accelerated = way better performances */
}
#share-container p {
  margin: 0;
}
#share-container.opened {
  /* visible*/
  transform: translate(0, 0%) !important;
  transition: transform ease-in-out 0.2s;
}
#share-container .share-button {
  float: right;
}
#share-container #button-background {
  margin: auto;
  width: 500px;
  background-color: #14151f;
  position: relative;
  box-shadow: 4px 12px 20px 7px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  #share-container #button-background {
    width: 90%;
  }
}
#share-container #share-this-page {
  width: 100%;
  height: 30px;
  background-color: #1e222b;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
#share-container .close-button {
  position: absolute;
  right: 5px;
  top: 2px;
  font-size: 25px;
  cursor: pointer;
  opacity: 0.8;
}
#share-container .close-button:hover {
  opacity: 1;
}
#share-container #buttons {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 170px;
}
@media screen and (max-width: 600px) {
  #share-container #buttons {
    display: block;
    text-align: center;
    width: 200px;
    height: auto;
    margin: 10px auto;
  }
}
#share-container .button {
  float: left;
  width: 125px;
  margin-right: 25px;
  background: #1e222b;
  border: 1px solid #2a303e;
  border-radius: 3px;
  padding: 15px 5px 5px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}
#share-container .button:hover,
#share-container .button:focus {
  background-color: #14161c;
}
@media screen and (max-width: 600px) {
  #share-container .button {
    width: 200px;
    float: none;
    margin: 10px auto;
  }
}
#share-container .button i {
  background: #c5c5c5;
  color: #eaeaea;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 10px;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
#share-container .fb-share-button {
  line-height: 5px;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  #share-container .fb-share-button {
    position: relative;
    top: -25px;
  }
}
#share-container .twitter-share-button {
  padding: 0 0 2px 15px;
  display: inline-block;
}
#share-container .email-share-button {
  padding: 0 0 4px 0;
  opacity: 0.8;
}
#share-container .email-share-button:hover {
  opacity: 1;
  cursor: pointer;
}
#share-container .social-container {
  text-align: center;
  /* text-transform: uppercase; */
  font-size: 12px;
  padding: 0.5rem 0;
  letter-spacing: 1.5px;
  width: 100%;
  border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  position: relative;
  overflow: hidden;
}
#share-container .slide, #share-container .button i {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#share-container .slide {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 22px 22px;
  -o-border-radius: 0 0 22px 22px;
  -ms-border-radius: 0 0 22px 22px;
  -moz-border-radius: 0 0 22px 22px;
  -webkit-border-radius: 0 0 22px 22px;
  /* top fix */
  transition: all 0.2s ease-in-out;
  position: absolute;
  height: 45px;
  width: 100%;
  top: -35px;
}
#share-container .slide::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  box-shadow: inset 0 1px 0px #1c1e24, 0 3px 0px #414764;
  border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background: #414764;
  border: #414764;
  box-sizing: border-box;
  bottom: 0;
}
#share-container .button:hover .slide {
  border-radius: 3px;
}
#share-container .slide-down-click {
  top: 0;
  border-radius: 3px;
}
#share-container .email .IN-widget, #share-container .button iframe, #share-container .google #___plusone_0 {
  top: -2px;
  position: relative;
}
#share-container .twitter iframe {
  width: 79px !important;
}
#share-container .google #___plusone_0 {
  width: 60px !important;
}
#share-container .button.facebook i, #share-container .facebook .slide {
  background: #305c99;
  color: white;
}
#share-container .button.twitter i, #share-container .twitter .slide {
  background: #000;
  color: white;
}
#share-container .button.google i, #share-container .google .slide {
  background: #d24228;
  color: white;
}
#share-container .button.email i, #share-container .email .slide {
  background: #F5B392;
  color: white;
}
#share-container .button.email {
  margin-right: 0;
}
#share-container .SendEmail {
  width: 60px;
  height: auto;
}

body.light #share-container {
  color: #03091b;
}
body.light #share-container #button-background {
  background-color: #fff;
  box-shadow: 4px 12px 20px 7px rgba(0, 0, 0, 0.18);
}
body.light #share-container #share-this-page,
body.light #share-container .button {
  background-color: #f7f8fa;
}
body.light #share-container #share-this-page {
  border-bottom: 1px solid #efeff5;
}
body.light #share-container .button {
  border-color: #efeff5;
}
body.light #share-container .button:hover, body.light #share-container .button:focus {
  background-color: #e7eaf0;
}
body.light #share-container .button i {
  background-color: #ebedf2;
  color: #03091b;
}

#social-media-container {
  padding: 10px 0;
}

.list-inline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
  right: 15px;
}

@media (max-width: 768px) {
  .list-inline {
    float: none;
    right: 0px;
  }
}
.list-inline li {
  display: inline-block;
  padding: 0 5px;
  margin: 0;
}

.social-icons li i {
  font-size: 20px;
}

.social-icons li {
  width: 35px;
  background-color: transparent;
  height: 35px;
  line-height: 35px;
  margin-left: 6px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-icons.icon-circle li {
  border-radius: 50%;
}

.social-icons.icon-rounded li {
  border-radius: 5px;
}

.social-icons.icon-flat li {
  border-radius: 0;
}

.social-icons.icon-zoom li:hover, .social-icons.icon-zoom li:active {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.social-icons.icon-rotate li:hover, .social-icons.icon-rotate li:active {
  -webkit-transform: scale(1.1) rotate(360deg);
  -moz-transform: scale(1.1) rotate(360deg);
  -ms-transform: scale(1.1) rotate(360deg);
  -o-transform: scale(1.1) rotate(360deg);
  transform: scale(1.1) rotate(360deg);
}

/* latin */
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 400;
  src: local("Orbitron Regular"), local("Orbitron-Regular"), url(https://fonts.gstatic.com/s/orbitron/v10/yMJRMIlzdpvBhQQL_Qq7dy0.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  src: local("Orbitron Bold"), local("Orbitron-Bold"), url(https://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QIAUjh2qtA.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ============================================================== 
LEADERS, TEAM & PLAYER THEMES - Clear, Tinted, Solid, Light, Dark
============================================================== */
content.dark div.team,
content.dark div.player,
content.dark leader {
  background: #14151f;
  box-shadow: 2px 2px 1.5rem rgba(0, 0, 0, 0.15);
  color: #cfd2da;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
content.dark div.team:hover,
content.dark div.player:hover,
content.dark leader:hover {
  box-shadow: -4px 5px 1.5rem rgba(0, 0, 0, 0.5);
}

content.dark.solid div.photo-container.links img.player[src*=".png"]:hover,
content.dark.solid div#circle.links:hover {
  background-color: #1b1f28;
}

/******* CLEAR *******/
content.dark.clear div.team,
content.dark.clear div.player,
content.dark.clear leader {
  background: linear-gradient(180deg, rgba(20, 21, 31, 0.12) 23%, rgb(20, 21, 31), rgb(20, 21, 31));
}

/******* TINTED *******/
content.dark.tinted div.team,
content.dark.tinted div.player,
content.dark.tinted leader {
  background: linear-gradient(180deg, rgba(20, 21, 31, 0.75) 23%, #14151f, #14151f);
}

/******* CLEAR AND TINTED *******/
content.dark.clear div.player div.photo-container.links img.player[src*=".png"]:hover,
content.dark.tinted div.player div.photo-container.links img.player[src*=".png"]:hover,
content.dark.clear div#circle.links:hover,
content.dark.tinted div#circle.links:hover {
  background-color: rgba(27, 31, 40, 0.5);
}

/* ============================================================== 
LEADERS ONLY
============================================================== */
content.dark leader div#circle {
  border-color: #2a303e !important;
}
content.dark leader row {
  border-bottom-color: #2a303e !important;
}

content.dark.tinted leader div#circle,
content.dark.clear leader div#circle {
  border-color: rgba(42, 48, 62, 0.2) !important;
}

/* NO IMAGES
============================= */
content.dark.none leader {
  background: linear-gradient(180deg, rgba(20, 21, 31, 0.2) 5%, rgb(20, 21, 31), rgb(20, 21, 31));
}

@media (min-width: 576px) {
  /* ============================================================== 
  LEADERS SCROLL
  ============================================================== */
  content.dark leaderboard::-webkit-scrollbar {
    width: 8px;
    height: 12px;
    background-color: transparent;
  }
  content.dark leaderboard::-webkit-scrollbar-track {
    background-color: #25272c;
    -webkit-box-shadow: inset 0 0 15px rgba(65, 65, 66, 0.2);
  }
  content.dark leaderboard::-webkit-scrollbar-thumb {
    background-color: #71757e;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  content.dark leaderboard::-webkit-scrollbar-thumb:active {
    background-color: #949494;
  }
}
/* ============================================================== 
LEADERS, TEAM & PLAYER THEMES - Clear, Tinted, Solid, Light, Dark
============================================================== */
content.light div.team,
content.light div.player,
content.light leader {
  background: #fff;
  box-shadow: 2px 0 1rem rgba(42, 35, 56, 0.1);
  color: #03091b;
  border-color: #fff !important;
}
content.light div.team:hover,
content.light div.player:hover,
content.light leader:hover {
  box-shadow: -2px 0 2rem 0.2rem rgba(42, 35, 56, 0.2);
}

content.light.solid div.photo-container.links img.player[src*=".png"]:hover,
content.light.solid div#circle.links:hover {
  background-color: #f1f1f1;
}

/******* CLEAR *******/
content.light.clear div.team,
content.light.clear div.player,
content.light.clear leader {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 23%, rgb(255, 255, 255), rgb(255, 255, 255));
}

/******* TINTED *******/
content.light.tinted div.team,
content.light.tinted div.player,
content.light.tinted leader {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 23%, #fff, #fff);
}

/******* CLEAR AND TINTED *******/
content.light.clear div.player div.photo-container.links img.player[src*=".png"]:hover,
content.light.tinted div.player div.photo-container.links img.player[src*=".png"]:hover,
content.light.clear div#circle.links:hover,
content.light.tinted div#circle.links:hover {
  background-color: rgba(241, 241, 241, 0.2);
}

/* ============================================================== 
LEADERS ONLY
============================================================== */
content.light leader div#circle {
  border-color: #efeff5 !important;
}
content.light leader row {
  border-bottom-color: #efeff5 !important;
}

content.light.tinted leader div#circle,
content.light.clear leader div#circle {
  border-color: rgba(239, 239, 245, 0.2) !important;
}

/* NO IMAGES
============================= */
content.light.none leader {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 5%, rgb(255, 255, 255), rgb(255, 255, 255));
}

@media (min-width: 576px) {
  /* ============================================================== 
  LEADERS SCROLL
  ============================================================== */
  content.light leaderboard::-webkit-scrollbar {
    width: 8px;
    height: 12px;
    background-color: transparent;
  }
  content.light leaderboard::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 15px rgba(65, 65, 66, 0.2);
  }
  content.light leaderboard::-webkit-scrollbar-thumb {
    background-color: #caccd4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  content.light leaderboard::-webkit-scrollbar-thumb:active {
    background-color: #949494;
  }
}
/* PLAYER IMAGE SLANTED EFFECT*/
body.dark {
  /* ============================================================== 
  TABLES SCROLL
  ============================================================== */
}
body.dark table {
  background-color: #1e222b;
  color: #cfd2da;
}
body.dark table tbody td {
  border-bottom-color: #3a3f4b;
}
body.dark table tfoot td {
  font-weight: bold;
  border: 1px rgba(51, 51, 51, 0.04) solid;
}
body.dark .DTFC_LeftHeadWrapper,
body.dark .DTFC_RightHeadWrapper,
body.dark .DTFC_LeftFootWrapper,
body.dark .DTFC_RightFootWrapper {
  z-index: 2;
}
body.dark .DTFC_LeftBodyLiner {
  overflow-y: auto;
  overflow-x: hidden;
}
body.dark div.DTFC_ScrollWrapper div.DTFC_LeftWrapper div.DTFC_LeftBodyWrapper {
  z-index: 1;
}
body.dark .DTFC_LeftBodyWrapper,
body.dark .DTFC_RightBodyWrapper,
body.dark .DTFC_LeftHeadWrapper,
body.dark .DTFC_RightHeadWrapper,
body.dark .DTFC_LeftFootWrapper,
body.dark .DTFC_RightFootWrapper {
  box-shadow: 5px 0 5px -2px rgb(17, 21, 28);
}
body.dark .sorting_1 {
  background-color: rgba(46, 52, 66, 0.25);
}
body.dark .dataTables_scrollHeadInner,
body.dark .dataTables_scrollFootInner {
  background-color: #1e222b;
}
body.dark table.dataTable tbody tr {
  background-color: #151922;
}
body.dark .ts-hover {
  background-color: rgba(46, 52, 66, 0.5);
}
body.dark table.dataTable.stripe tbody tr.odd,
body.dark table.dataTable.display tbody tr.odd {
  background-color: #1e222b;
}
body.dark table.dataTable thead th, body.dark table.dataTable thead td {
  border-color: #2a303e;
}
body.dark table.dataTable.stripe tbody > tr.odd.selected,
body.dark table.dataTable.stripe tbody > tr.odd > .selected,
body.dark table.dataTable.display tbody > tr.odd.selected,
body.dark table.dataTable.display tbody > tr.odd > .selected,
body.dark table.dataTable tbody tr.selected {
  background-color: #2a303e;
}
body.dark .dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #fff;
  background-color: #3a3f4b;
}
body.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current, body.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #151922 !important;
}
body.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: #fff !important;
}
body.dark .dataTables_scrollBody::-webkit-scrollbar-corner {
  background-color: #25272c;
}
body.dark .dataTables_scrollBody::-webkit-scrollbar {
  width: 10px;
  height: 12px;
  background-color: transparent;
}
body.dark .dataTables_scrollBody::-webkit-scrollbar-track {
  background-color: #25272c;
  -webkit-box-shadow: inset 0 0 15px rgba(65, 65, 66, 0.2);
}
body.dark .dataTables_scrollBody::-webkit-scrollbar-thumb {
  background-color: #71757e;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
body.dark .dataTables_scrollBody::-webkit-scrollbar-thumb:active {
  background-color: #949494;
}

body.dark .select2-container--default .select2-selection--single {
  background-color: #333845;
  /* border: 2px solid #2a303e; */
  border-radius: 5px;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.31);
}
body.dark select,
body.dark .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #cfd2da;
}
body.dark .select2-dropdown {
  background-color: #1e222b;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.73);
}
body.dark .select2-results__option {
  color: #cfd2da;
  border-bottom: 1px solid #2a303e;
}
body.dark .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #151922;
  color: #fff;
}
body.dark .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #2a303e;
  border-radius: 5px;
  background-color: #3a3f4b;
  color: inherit;
}
body.dark .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #151922;
  color: inherit;
}
@media (min-width: 576px) {
  body.dark {
    /* defaults */
    /* select 2 scrollbar & tables*/
    /* always on */
    /* active */
  }
  body.dark .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 8px;
    height: 12px;
    background-color: transparent;
  }
  body.dark .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background-color: #25272c;
    -webkit-box-shadow: inset 0 0 15px rgba(65, 65, 66, 0.2);
  }
  body.dark .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #71757e;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  body.dark .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:active {
    background-color: #636677;
  }
}

body.light {
  /* ============================================================== 
  BASE STYLES
  ============================================================== */
  /* MODAL
  ============================= */
  /* CONTACT
  ============================= */
  /* SELECT
  ============================= */
  /* SEARCH
  ============================= */
}
body.light .modal {
  color: #03091b;
  background-color: #fff !important;
  box-shadow: 0px 0px 50px 0px rgba(73, 72, 117, 0.1);
}
body.light .modal a.close-modal::after {
  color: #ff1a00;
}
body.light div#contact {
  color: #03091b;
}
body.light div#contact input,
body.light div#contact textarea {
  color: #03091b;
  background-color: #f7f8fa;
  box-shadow: 0 2px 2px rgba(82, 63, 105, 0.1);
}
body.light select {
  background: url("/storage/sportstrack/imgs/down-arrow-selector.png") no-repeat right rgba(255, 255, 255, 0);
  background-size: 11px 7px;
  background-position-x: 95%;
  background-color: #f7f8fa !important;
  color: #03091b !important;
  box-shadow: 2px 5px 5px rgba(82, 63, 105, 0.1) !important;
}
body.light select option {
  background-color: #fff !important;
  color: #03091b !important;
}
body.light div#search {
  color: #03091b !important;
  border-color: #f7f8fa !important;
  background-color: #f7f8fa !important;
  box-shadow: 2px 5px 5px rgba(82, 63, 105, 0.1) !important;
}
body.light div#search:focus, body.light div#search.focus {
  border-color: #ebedf2 !important;
}

body.dark {
  /* ============================================================== 
  BASE STYLES
  ============================================================== */
  /* MODAL
  ============================= */
  /* CONTACT
  ============================= */
  /* SELECT
  ============================= */
  /* SEARCH
  ============================= */
}
body.dark .blocker {
  background-color: rgba(0, 0, 0, 0.75);
}
body.dark .modal {
  color: #cfd2da;
  background-color: #14151f !important;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.73);
}
body.dark div#contact {
  color: #cfd2da;
}
body.dark div#contact input,
body.dark div#contact textarea {
  color: #cfd2da;
  background-color: #333845;
}
body.dark select {
  background: url("/storage/sportstrack/imgs/down-arrow-selector-white.png") no-repeat right rgba(255, 255, 255, 0);
  background-size: 11px 7px;
  background-position-x: 95%;
  background-color: rgba(51, 56, 69, 0.95) !important;
}
body.dark select option {
  background-color: #14151f !important;
  color: #cfd2da !important;
}
body.dark div#search {
  border-color: #333845 !important;
  background-color: #333845 !important;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.31);
}
body.dark div#search:focus {
  border-color: #1e222b !important;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 5;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 550px;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  color: #03091b;
  padding: 4em;
  border-radius: 8px;
  box-shadow: 0px 0px 50px 0px rgba(73, 72, 117, 0.1);
  text-align: left;
}
@media (max-width: 576px) {
  .modal {
    padding: 15px 30px;
  }
}

.modal.contact {
  padding: 0;
}

.modal a.close-modal {
  visibility: hidden;
  display: inline;
  position: absolute;
  top: -10px;
  right: 14.5px;
}
.modal a.close-modal::after {
  visibility: visible;
  font-family: "Font Awesome 6 Pro";
  content: "\f057";
  position: absolute;
  font-size: 25px;
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 40px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(63, 76, 105, 0.51);
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 20;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 10px;
  user-select: none;
  -webkit-user-select: none;
  border-bottom: 1px solid #ebedf2;
  color: #7d8289;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #f7f7f7;
  /* border: 2px solid #ebedf2; */
  border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 40px;
  text-align: left;
  box-shadow: 0px 0px 5px rgba(51, 52, 72, 0.15);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dddfe6;
  border-radius: 5px;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 50vh;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #f7f8fa;
  color: #414b4c;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f7f8fa;
  color: #212529;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  /* border: 1px solid #aaa; */
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* ============================================================== 
SCROLL BAR
============================================================== */
@media (min-width: 576px) {
  /* defaults */
  .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 8px;
    height: 12px;
    background-color: transparent;
  }
  /* select 2 scrollbar & tables*/
  .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 15px rgba(65, 65, 66, 0.2);
  }
  /* always on */
  .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #caccd4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  /* active */
  .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:active {
    background-color: #949494;
  }
}
/* Slider */
.turbo-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.turbo-slider:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.turbo-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.turbo-list:focus {
  outline: none;
}

.turbo-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.turbo-slider .turbo-track,
.turbo-slider .turbo-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.turbo-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.turbo-track:before,
.turbo-track:after {
  display: table;
  content: "";
}

.turbo-track:after {
  clear: both;
}

.turbo-loading .turbo-track {
  visibility: hidden;
}

.turbo-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .turbo-slide {
  float: right;
}

.turbo-slide img {
  display: block;
}

.turbo-slide.turbo-loading img {
  display: none;
}

.turbo-slide.dragging img {
  pointer-events: none;
}

.turbo-initialized .turbo-slide {
  display: block;
}

.turbo-loading .turbo-slide {
  visibility: hidden;
}

.turbo-vertical .turbo-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.turbo-arrow.turbo-hidden {
  display: none;
}

.turbo-loading .turbo-list {
  background: #fff url(../turbo/ajax-loader.gif) no-repeat center;
}

.turbo-slide, .turbo-slide * {
  outline: none !important;
}

.turbo-prev, .turbo-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 45%;
  display: block;
  padding: 0;
  margin: 0;
  cursor: pointer;
  height: 62px;
  width: 50px;
  border-radius: 0;
  opacity: 0.9;
  color: transparent;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
}

.turbo-prev:hover, .turbo-next:hover {
  color: #141519;
  outline: none;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transform: scale(1);
  height: 72px;
  width: 60px;
}

.turbo-prev:hover:before, .turbo-next:hover:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 40px;
  opacity: 1;
}

.turbo-prev.turbo-disabled:before, .turbo-next.turbo-disabled:before {
  opacity: 1;
}

.turbo-prev:before, .turbo-next:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  border-radius: 0;
  padding: 0;
  margin: 0;
  opacity: 1;
  color: #fff;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: scale(0.2);
}

.turbo-prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}

.turbo-next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

[dir=rtl] .turbo-prev {
  right: auto;
}

.turbo-prev:before {
  content: "\f104";
}

[dir=rtl] .turbo-prev:before {
  content: "\f104";
}

[dir=rtl] .turbo-next {
  left: auto;
}

.turbo-next:before {
  content: "\f105";
}

[dir=rtl] .turbo-next:before {
  content: "\f105";
}

.turbo-dots {
  position: absolute;
  bottom: -15px;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media (max-width: 576px) {
  .turbo-dots {
    bottom: -50px;
  }
}

.turbo-dots li {
  position: relative;
  bottom: 0;
  display: inline-block;
  width: 15px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.turbo-dots li button {
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  width: 15px;
  height: 20px;
  cursor: pointer;
  color: transparent;
  border: 0;
  background: transparent;
}

.turbo-dots li button:focus {
  outline: none;
}

.turbo-dots li button:hover {
  outline: none;
}

.turbo-dots li button:focus:before {
  opacity: 1;
}

.turbo-dots li button:hover:before {
  opacity: 1;
  background-color: rgba(217, 217, 217, 0.71);
  transition: background-color ease-in-out 0.3s;
}

.turbo-dots li button:before {
  font-family: "turbo";
  font-size: 20px;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 2px #fff solid;
  transition: background-color ease-in-out 0.3s;
  background-color: #fff;
}

.turbo-dots li.turbo-active button:before {
  opacity: 1;
  background-color: #fff;
  border: 2px #fff solid;
}

.turbo-slide {
  opacity: 1;
}

.turbo-center {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .turbo-dots li button {
    width: 15px;
    height: 15px;
  }
  .turbo-dots {
    right: 0;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .turbo-dots li button:before {
    width: 3px;
    height: 3px;
  }
}
#slider-wrap {
  width: 100%;
  margin: 1em auto;
  padding: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
}

.slider-teampage {
  width: 100%;
  margin: 0 auto;
  max-width: 1250px;
}

.slider-teampage:hover .slider-img {
  transform: scale(1.1);
  transition: transform ease-in-out 0.3s;
}

.slider-img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform ease-in-out 0.3s;
}

.background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform ease-in-out 0.3s;
  overflow: hidden;
}

.scale {
  transform: scale(1.1) !important;
  transition: transform ease-in-out 0.3s;
}

.header-wrap {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.slider-header {
  font-size: 16px;
  text-align: left;
  margin: auto;
  max-width: 90%;
  color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 1.4em;
  padding: 20px 0;
  letter-spacing: 1px;
}

@media screen and (max-width: 900px) {
  .slider-header {
    font-size: 14px;
    max-width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .slider-header {
    font-size: 12px;
    padding: 10px 0 20px;
    -webkit-text-size-adjust: none;
  }
}
.slider-header a {
  color: #fff;
}

/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#dt/dt-1.10.18/fc-3.2.5/fh-3.1.4/sc-2.0.0/sl-1.3.0
 *
 * Included libraries:
 *   DataTables 1.10.18, FixedColumns 3.2.5, FixedHeader 3.1.4, Scroller 2.0.0, Select 1.3.0
 */
/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
}

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 14px;
  font-weight: 500;
  border-bottom: 2px solid #ebedf2;
  margin: 0;
}

table.dataTable.stat-table thead th,
table.dataTable.stat-table thead td {
  font-size: 11px;
}

table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-position: bottom center;
  position: relative;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background-repeat: no-repeat;
  background-position: bottom center;
}

.dataTables_scrollHead table.dataTable thead .sorting::after,
.dataTables_scrollHead table.dataTable thead .sorting_asc::after,
.dataTables_scrollHead table.dataTable thead .sorting_desc::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting_asc::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting_desc::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dataTables_scrollHead table.dataTable thead .sorting::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting::after {
  content: "\f0dc";
  opacity: 0.2;
}

.dataTables_scrollHead table.dataTable thead .sorting_asc::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting_asc::after {
  content: "\f161";
}

.dataTables_scrollHead table.dataTable thead .sorting_desc::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting_desc::after {
  content: "\f160";
}

table.dataTable tbody tr {
  background-color: #ffffff;
}

table.dataTable tbody tr.selected {
  background-color: #B0BED9;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: none;
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td,
table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
  border-top: none;
  border-right: 1px solid #ddd;
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #ddd;
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected {
  background-color: #acbad4;
}

table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
  background-color: #f6f6f6;
}

table.dataTable.hover tbody tr:hover.selected,
table.dataTable.display tbody tr:hover.selected {
  background-color: #aab7d1;
}

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3,
table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #fafafa;
}

table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3,
table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #acbad5;
}

table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd > .sorting_2,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd > .sorting_3,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: whitesmoke;
}

table.dataTable.display tbody tr.odd.selected > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #a6b4cd;
}

table.dataTable.display tbody tr.odd.selected > .sorting_2,
table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #a8b5cf;
}

table.dataTable.display tbody tr.odd.selected > .sorting_3,
table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #a9b7d1;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #fafafa;
}

table.dataTable.display tbody tr.even > .sorting_2,
table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fcfcfc;
}

table.dataTable.display tbody tr.even > .sorting_3,
table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fefefe;
}

table.dataTable.display tbody tr.even.selected > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #acbad5;
}

table.dataTable.display tbody tr.even.selected > .sorting_2,
table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #aebcd6;
}

table.dataTable.display tbody tr.even.selected > .sorting_3,
table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #afbdd8;
}

table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  background-color: #ececec;
}

table.dataTable.display tbody tr:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  background-color: #efefef;
}

table.dataTable.display tbody tr:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  background-color: #a2aec7;
}

table.dataTable.display tbody tr:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  background-color: #a3b0c9;
}

table.dataTable.display tbody tr:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  background-color: #a5b2cb;
}

table.dataTable.no-footer {
  border-bottom: none;
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 4px 17px 4px 4px;
}

table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 4px;
}

table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}

table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1;
}

.dataTables_wrapper .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .dataTables_wrapper .bottom {
    flex-direction: column;
  }
}

.dataTables_wrapper select {
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
  width: auto !important;
}
.dataTables_wrapper select option {
  font-size: 14px;
}
@media (max-width: 576px) {
  .dataTables_wrapper select {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
  display: none;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
}

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #03091b;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 0.745rem;
  margin: 0 0.25rem;
  background-color: #fff;
  touch-action: manipulation;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #03091b !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.previous, .dataTables_wrapper .dataTables_paginate .paginate_button.next {
  padding-left: 1rem;
  padding-right: 1rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 25%;
  cursor: default;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled.disabled:hover {
  color: #03091b !important;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 0.25em;
}

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

.dataTables_wrapper .dataTables_scroll {
  clear: both;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: none;
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead > table,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

/* CUSTOM STYLES */
table {
  color: #03091b;
  background-color: #fff;
  font-size: 12px;
  border-spacing: 0;
  margin: 0;
  text-align: center;
  padding: 0;
  width: 100%;
  position: relative;
  border-collapse: collapse;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

table tbody td {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ebedf2;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}

.DTFC_ScrollWrapper {
  border-radius: 5px;
  overflow: hidden;
}

.dataTables_scrollHead table.dataTable thead .sorting::after,
.DTFC_LeftHeadWrapper table.dataTable thead .sorting::after {
  opacity: 0.2;
}

.DTFC_LeftBodyWrapper,
.DTFC_RightBodyWrapper,
.DTFC_LeftHeadWrapper,
.DTFC_RightHeadWrapper,
.DTFC_LeftFootWrapper,
.DTFC_RightFootWrapper {
  box-shadow: 5px 0 5px -2px rgb(231, 232, 235);
}

.DTFC_LeftBodyLiner {
  overflow-x: hidden;
}

table.dataTable.stripe tbody > tr.odd.selected,
table.dataTable.stripe tbody > tr.odd > .selected,
table.dataTable.display tbody > tr.odd.selected,
table.dataTable.display tbody > tr.odd > .selected,
table.dataTable tbody tr.selected {
  background-color: #e9ecef;
}

.ts-hover {
  background-color: #dee2e6;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}

table.dataTable tbody tr {
  background-color: #ffffff;
}

.sorting_1 {
  background-color: rgba(236, 236, 236, 0.25);
}

.dataTables_scrollHeadInner,
.dataTables_scrollFootInner {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin: 0.5em auto 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
@media (max-width: 576px) {
  table {
    font-size: 10px;
  }
  .ts-hover {
    background-color: transparent;
  }
}
/* ============================================================== 
BUTTONS
============================================================== */
@keyframes dtb-spinner {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes dtb-spinner {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes dtb-spinner {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dtb-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes dtb-spinner {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: white;
  border: 2px solid #111;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  text-align: center;
  z-index: 21;
}

div.dt-button-info h2 {
  padding: 0.5em;
  margin: 0;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  background-color: #f3f3f3;
}

div.dt-button-info > div {
  padding: 1em;
}

div.dt-button-collection-title {
  text-align: center;
  padding: 0.3em 0 0.5em;
  font-size: 0.9em;
}

div.dt-button-collection-title:empty {
  display: none;
}

button.dt-button,
div.dt-button,
a.dt-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin-right: 0.333em;
  margin-bottom: 0.333em;
  padding: 0.5em 1em;
  border: 1px solid #999;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.88em;
  line-height: 1.6em;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  background-color: #e9e9e9;
  background-image: -webkit-linear-gradient(top, #fff 0%, #e9e9e9 100%);
  background-image: -moz-linear-gradient(top, #fff 0%, #e9e9e9 100%);
  background-image: -ms-linear-gradient(top, #fff 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="white", EndColorStr="#e9e9e9");
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  outline: none;
}

button.dt-button.disabled,
div.dt-button.disabled,
a.dt-button.disabled {
  color: #999;
  border: 1px solid #d0d0d0;
  cursor: default;
  background-color: #f9f9f9;
  background-image: -webkit-linear-gradient(top, #fff 0%, #f9f9f9 100%);
  background-image: -moz-linear-gradient(top, #fff 0%, #f9f9f9 100%);
  background-image: -ms-linear-gradient(top, #fff 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#ffffff", EndColorStr="#f9f9f9");
}

button.dt-button:active:not(.disabled),
button.dt-button.active:not(.disabled),
div.dt-button:active:not(.disabled),
div.dt-button.active:not(.disabled),
a.dt-button:active:not(.disabled),
a.dt-button.active:not(.disabled) {
  background-color: #e2e2e2;
  background-image: -webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  background-image: -moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  background-image: -ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  background-image: -o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  background-image: linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#f3f3f3", EndColorStr="#e2e2e2");
  box-shadow: inset 1px 1px 3px #999999;
}

button.dt-button:active:not(.disabled):hover:not(.disabled),
button.dt-button.active:not(.disabled):hover:not(.disabled),
div.dt-button:active:not(.disabled):hover:not(.disabled),
div.dt-button.active:not(.disabled):hover:not(.disabled),
a.dt-button:active:not(.disabled):hover:not(.disabled),
a.dt-button.active:not(.disabled):hover:not(.disabled) {
  box-shadow: inset 1px 1px 3px #999999;
  background-color: #cccccc;
  background-image: -webkit-linear-gradient(top, #eaeaea 0%, #ccc 100%);
  background-image: -moz-linear-gradient(top, #eaeaea 0%, #ccc 100%);
  background-image: -ms-linear-gradient(top, #eaeaea 0%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eaeaea 0%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eaeaea 0%, #ccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#eaeaea", EndColorStr="#cccccc");
}

button.dt-button:hover,
div.dt-button:hover,
a.dt-button:hover {
  text-decoration: none;
}

button.dt-button:hover:not(.disabled),
div.dt-button:hover:not(.disabled),
a.dt-button:hover:not(.disabled) {
  border: 1px solid #666;
  background-color: #e0e0e0;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  background-image: -moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  background-image: -ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#f9f9f9", EndColorStr="#e0e0e0");
}

button.dt-button:focus:not(.disabled),
div.dt-button:focus:not(.disabled),
a.dt-button:focus:not(.disabled) {
  border: 1px solid #426c9e;
  text-shadow: 0 1px 0 #c4def1;
  outline: none;
  background-color: #79ace9;
  background-image: -webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  background-image: -moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  background-image: -ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  background-image: -o-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  background-image: linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#bddef4", EndColorStr="#79ace9");
}

.dt-button embed {
  outline: none;
}

div.dt-buttons {
  position: relative;
  float: left;
}

div.dt-buttons.buttons-right {
  float: right;
}

div.dt-button-collection {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  margin-top: 3px;
  padding: 8px 8px 4px 8px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: white;
  overflow: hidden;
  z-index: 2002;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px;
}

div.dt-button-collection button.dt-button,
div.dt-button-collection div.dt-button,
div.dt-button-collection a.dt-button {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  float: none;
  margin-bottom: 4px;
  margin-right: 0;
}

div.dt-button-collection button.dt-button:active:not(.disabled),
div.dt-button-collection button.dt-button.active:not(.disabled),
div.dt-button-collection div.dt-button:active:not(.disabled),
div.dt-button-collection div.dt-button.active:not(.disabled),
div.dt-button-collection a.dt-button:active:not(.disabled),
div.dt-button-collection a.dt-button.active:not(.disabled) {
  background-color: #dadada;
  background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="#f0f0f0", EndColorStr="#dadada");
  box-shadow: inset 1px 1px 3px #666;
}

div.dt-button-collection.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 0;
}

div.dt-button-collection.fixed.two-column {
  margin-left: -150px;
}

div.dt-button-collection.fixed.three-column {
  margin-left: -225px;
}

div.dt-button-collection.fixed.four-column {
  margin-left: -300px;
}

div.dt-button-collection > * {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

div.dt-button-collection.two-column {
  width: 300px;
  padding-bottom: 1px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
}

div.dt-button-collection.three-column {
  width: 450px;
  padding-bottom: 1px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
}

div.dt-button-collection.four-column {
  width: 600px;
  padding-bottom: 1px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4;
}

div.dt-button-collection .dt-button {
  border-radius: 0;
}

div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
  background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2001;
}

@media screen and (max-width: 640px) {
  div.dt-buttons {
    float: none !important;
    text-align: center;
  }
}
button.dt-button.processing,
div.dt-button.processing,
a.dt-button.processing {
  color: rgba(0, 0, 0, 0.2);
}

button.dt-button.processing:after,
div.dt-button.processing:after,
a.dt-button.processing:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  box-sizing: border-box;
  display: block;
  content: " ";
  border: 2px solid #282828;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: dtb-spinner 1500ms infinite linear;
  -o-animation: dtb-spinner 1500ms infinite linear;
  -ms-animation: dtb-spinner 1500ms infinite linear;
  -webkit-animation: dtb-spinner 1500ms infinite linear;
  -moz-animation: dtb-spinner 1500ms infinite linear;
}

table.print-table {
  white-space: normal !important;
}

table.print-table tbody th,
table.print-table tbody td,
table.print-table thead th,
table.print-table thead td {
  padding: 5px 0 !important;
  border-left: none;
  border-right: none;
}

/* ============================================================== 
SELECT
============================================================== */
table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
  background-color: #ebedf2;
}

table.dataTable.stripe tbody > tr.odd.selected,
table.dataTable.stripe tbody > tr.odd > .selected, table.dataTable.display tbody > tr.odd.selected,
table.dataTable.display tbody > tr.odd > .selected {
  background-color: #ebedf2;
}

table.dataTable.hover tbody > tr.selected:hover,
table.dataTable.hover tbody > tr > .selected:hover, table.dataTable.display tbody > tr.selected:hover,
table.dataTable.display tbody > tr > .selected:hover {
  background-color: #ebedf2;
}

table.dataTable.order-column tbody > tr.selected > .sorting_1,
table.dataTable.order-column tbody > tr.selected > .sorting_2,
table.dataTable.order-column tbody > tr.selected > .sorting_3,
table.dataTable.order-column tbody > tr > .selected, table.dataTable.display tbody > tr.selected > .sorting_1,
table.dataTable.display tbody > tr.selected > .sorting_2,
table.dataTable.display tbody > tr.selected > .sorting_3,
table.dataTable.display tbody > tr > .selected {
  background-color: #acbad5;
}

table.dataTable.display tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
  background-color: #a6b4cd;
}

table.dataTable.display tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_2 {
  background-color: #a8b5cf;
}

table.dataTable.display tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_3 {
  background-color: #a9b7d1;
}

table.dataTable.display tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
  background-color: #acbad5;
}

table.dataTable.display tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_2 {
  background-color: #aebcd6;
}

table.dataTable.display tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_3 {
  background-color: #afbdd8;
}

table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
  background-color: #a6b4cd;
}

table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
  background-color: #acbad5;
}

table.dataTable.display tbody > tr.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
  background-color: #a2aec7;
}

table.dataTable.display tbody > tr.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_2 {
  background-color: #a3b0c9;
}

table.dataTable.display tbody > tr.selected:hover > .sorting_3, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_3 {
  background-color: #a5b2cb;
}

table.dataTable.display tbody > tr:hover > .selected,
table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-column.hover tbody > tr:hover > .selected,
table.dataTable.order-column.hover tbody > tr > .selected:hover {
  background-color: #a2aec7;
}

table.dataTable tbody td.select-checkbox,
table.dataTable tbody th.select-checkbox {
  position: relative;
}

table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
table.dataTable tbody th.select-checkbox:before,
table.dataTable tbody th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}

table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody th.select-checkbox:before {
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}

table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
  content: "✔";
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}

div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}

@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}
/* ============================================================== 
SCROLL BAR
============================================================== */
@media (min-width: 576px) {
  .dataTables_scrollBody::-webkit-scrollbar {
    width: 10px;
    height: 12px;
    background-color: transparent;
  }
  .dataTables_scrollBody::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 15px rgba(65, 65, 66, 0.2);
  }
  .dataTables_scrollBody::-webkit-scrollbar-thumb {
    background-color: #caccd4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .dataTables_scrollBody::-webkit-scrollbar-thumb:active {
    background-color: #949494;
  }
  .dataTables_scrollBody::-webkit-scrollbar-corner {
    background-color: #fff;
  }
  table.dt-rowReorder-float {
    position: absolute !important;
    opacity: 0.8;
    table-layout: fixed;
    outline: 2px solid #888;
    outline-offset: -2px;
    z-index: 2001;
  }
  tr.dt-rowReorder-moving {
    outline: 2px solid #555;
    outline-offset: -2px;
  }
  body.dt-rowReorder-noOverflow {
    overflow-x: hidden;
  }
  table.dataTable td.reorder {
    text-align: center;
    cursor: move;
  }
}
.tooltipster-fall,
.tooltipster-grow.tooltipster-show {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-base {
  display: flex;
  pointer-events: none;
  position: absolute;
}

.tooltipster-box {
  flex: 1 1 auto;
}

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  transform: rotateZ(0);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 0.4s;
}

@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 0.6s;
}

@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 0.6s;
}

.tooltipster-sidetip .tooltipster-box {
  background: #252933;
  border: none;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

.tooltipster-sidetip .tooltipster-content {
  display: flex;
  border: 1.5px #fcfcfc solid;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 6px;
  height: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
}

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 9px;
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 9px;
  margin-left: -10px;
  width: 20px;
}

.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #ffffff;
  left: 0;
  top: 1.5px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #ffffff;
  left: -1.5px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #ffffff;
  left: 1.5px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #ffffff;
  left: 0;
  top: -1.5px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #252933;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #252933;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #252933;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #252933;
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

.YouTubePopUp-Wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 9999999999999;
}

.YouTubePopUp-animation {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: YouTubePopUp;
  animation-name: YouTubePopUp;
}

@-webkit-keyframes YouTubePopUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes YouTubePopUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.logged-in .YouTubePopUp-Wrap {
  top: 32px;
  z-index: 99998;
}

.YouTubePopUp-Content {
  max-width: 850px;
  display: block;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.YouTubePopUp-Content iframe {
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  height: 480px !important;
  border: none !important;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.YouTubePopUp-Hide {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: YouTubePopUpHide;
  animation-name: YouTubePopUpHide;
}

@-webkit-keyframes YouTubePopUpHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes YouTubePopUpHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.YouTubePopUp-Close {
  position: absolute;
  top: 0;
  cursor: pointer;
  bottom: 528px;
  opacity: 1;
  right: 0;
  margin: auto 0;
  width: 24px;
  height: 24px;
  background: url(../imgs/close-icon.png) no-repeat;
  background-size: 24px 24px;
  -webkit-background-size: 24px 24px;
  -moz-background-size: 24px 24px;
  -o-background-size: 24px 24px;
}

.YouTubePopUp-Close:hover {
  opacity: 0.5;
  transform: rotate(360deg);
  transition: all 0.3s ease-in-out 0s;
}

@media all and (max-width: 768px) and (min-width: 10px) {
  .YouTubePopUp-Content {
    max-width: 90%;
  }
}
@media all and (max-width: 600px) and (min-width: 10px) {
  .YouTubePopUp-Content iframe {
    height: 320px !important;
  }
  .YouTubePopUp-Close {
    bottom: 362px;
  }
}
@media all and (max-width: 480px) and (min-width: 10px) {
  .YouTubePopUp-Content iframe {
    height: 220px !important;
  }
  .YouTubePopUp-Close {
    bottom: 262px;
  }
}
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}

.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}

.ql-clipboard p {
  margin: 0;
  padding: 0;
}

.ql-editor {
  box-sizing: border-box;
  cursor: text;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 0;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor a {
  text-decoration: underline;
}

.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}

.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}

.ql-editor ul > li::before {
  content: "●";
}

.ql-editor li::before {
  display: inline-block;
  margin-right: 0.3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}

.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
}

.ql-editor ol li,
.ql-editor ul li {
  padding-left: 1.5em;
}

.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-num;
}

.ql-editor ol li:before {
  content: counter(list-num, decimal) ". ";
}

.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}

.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}

.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}

.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) ". ";
}

.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}

.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}

.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}

.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) ". ";
}

.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}

.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}

.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}

.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}

.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}

.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) ". ";
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}

.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}

.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}

.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}

.ql-editor .ql-bg-black {
  background-color: #000;
}

.ql-editor .ql-bg-red {
  background-color: #e60000;
}

.ql-editor .ql-bg-orange {
  background-color: #f90;
}

.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}

.ql-editor .ql-bg-green {
  background-color: #008a00;
}

.ql-editor .ql-bg-blue {
  background-color: #06c;
}

.ql-editor .ql-bg-purple {
  background-color: #93f;
}

.ql-editor .ql-color-white {
  color: #fff;
}

.ql-editor .ql-color-red {
  color: #e60000;
}

.ql-editor .ql-color-orange {
  color: #f90;
}

.ql-editor .ql-color-yellow {
  color: #ff0;
}

.ql-editor .ql-color-green {
  color: #008a00;
}

.ql-editor .ql-color-blue {
  color: #06c;
}

.ql-editor .ql-color-purple {
  color: #93f;
}

.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}

.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}

.ql-editor .ql-size-small {
  font-size: 0.75em;
}

.ql-editor .ql-size-large {
  font-size: 1.5em;
}

.ql-editor .ql-size-huge {
  font-size: 2.5em;
}

.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

.ql-editor .ql-align-center {
  text-align: center;
}

.ql-editor .ql-align-justify {
  text-align: justify;
}

.ql-editor .ql-align-right {
  text-align: right;
}

.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  pointer-events: none;
  position: absolute;
}

body.dark {
  /* ============================================================== 
  NAV
  ============================================================== */
  /* ============================================================== 
  HOME
  ============================================================== */
  /* ============================================================== 
  SCHEDULE
  ============================================================== */
  /* ============================================================== 
  SCORES
  ============================================================== */
  /* ============================================================== 
  LEADERS PAGE
  ============================================================== */
}
body.dark div.headline-drop,
body.dark #headlines,
body.dark #leader-board-container,
body.dark #news-feed,
body.dark #standings-container,
body.dark #editorial-container {
  background-color: #14151f;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.31);
}
body.dark #slider-wrap {
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.31);
}
body.dark div.leader,
body.dark #home .title {
  border-bottom: 1px solid #2a303e;
}
body.dark img.leader-img {
  background-color: #3a3f4b;
}
body.dark i.headline-drop-close {
  color: #fff;
}
body.dark .news-article {
  border-color: #2a303e;
}
body.dark .news-article-details {
  background-color: #222731;
}
body.dark .caption-container {
  background-color: rgba(20, 21, 31, 0.8);
}
body.dark div#filter-modal button#filter-result {
  background-color: #333a49;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.31);
}
@media (max-width: 768px) {
  body.dark header section#filter {
    background-color: #1e222b;
  }
}
body.dark header ul#more-menu {
  background-color: #1e222b;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.73);
}
body.dark header ul#more-menu li:hover {
  background-color: #333845;
}
body.dark div#schedule-list {
  /* home */
}
body.dark div#schedule-list wrap.match-up-wrap {
  background-color: #1e222b;
  color: #cfd2da;
  border-color: #2a303e;
}
@media (max-width: 576px) {
  body.dark div#schedule-list wrap.match-up-wrap:nth-child(even) {
    background-color: #222731;
  }
}
body.dark div#schedule-list .info {
  background-color: #1a1d25;
}
body.dark div#schedule-list .game-links a,
body.dark div#schedule-list .info {
  border-color: #2a303e;
}
body.dark div#schedule-list .info:hover {
  background-color: #14161c;
}
body.dark div#schedule-list .team-name::before {
  color: #45506d;
}
body.dark div#schedule-list section.home-team::before {
  content: "";
  background-color: #222731;
}
@media (min-width: 576px) {
  body.dark div#schedule-list .game-links {
    background-color: #222731;
  }
}
body.dark div#schedule-list section.game-num::after {
  background-color: #ebedf2;
  background-color: #14161c;
}
body.dark div#schedule-list div.match-up-details {
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.31);
}
body.dark div#submit-container.sticky {
  background-color: #151922;
  box-shadow: 0px 16px 14px 7px rgba(0, 0, 0, 0.55);
}
body.dark input[name=scores_submit],
body.dark input[name=password_submit] {
  color: #cfd2da;
  background-color: #1e222b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.31);
  transition: background-color 0.4s ease-in;
}
body.dark input[name=scores_submit]:hover,
body.dark input[name=password_submit]:hover {
  background-color: #2f3543;
}
body.dark input[name=scores_submit] {
  background-color: rgba(30, 34, 43, 0.85);
  border-color: #2f3543 !important;
}
body.dark input[name=email] {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.31) !important;
}
body.dark input[name=password_submit] {
  background-color: #333845;
}
body.dark div#scores input[type=text],
body.dark div#scores input[type=tel] {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.31);
  color: #03091b;
}
body.dark div#leaders {
  /*  MENU BARS ========================== */
  /* FILTER, SEARCH, SELECT, TEAM LOGOS ========================== */
}
body.dark div#leaders ul#category-tabs li {
  color: #cfd2da;
  background-color: #3a3f4b;
  border-right-color: #121720;
  border-top-color: #2a2f3c;
  border-bottom-color: #2b303c;
}
body.dark div#leaders ul#category-tabs li:hover {
  background-color: #2b303c;
}
@media (max-width: 414px) {
  body.dark div#leaders ul#category-tabs li:hover {
    background-color: transparent;
  }
}
body.dark div#leaders ul#category-tabs li.active {
  background-color: #1e222b;
  box-shadow: 0px 2px 14px 0px rgb(17, 21, 28);
}
body.dark div#leaders filter ul#team-logos li {
  box-shadow: rgba(69, 65, 78, 0.1) 0px 1px 15px 1px;
}
body.dark div#leaders filter ul#team-logos li:hover {
  background-color: rgba(51, 56, 69, 0.6);
}
body.dark div#leaders filter ul#team-logos li.team-on {
  background-color: #333845;
}

body.light {
  /* ============================================================== 
  NAV
  ============================================================== */
  /* ============================================================== 
  HOME
  ============================================================== */
  /* ============================================================== 
  PLAYERS PAGE
  ============================================================== */
  /* ============================================================== 
  SCHEDULE
  ============================================================== */
  /* ============================================================== 
  SCORES
  ============================================================== */
  /* ============================================================== 
  STANDINGS PAGE
  ============================================================== */
  /* ============================================================== 
  LEADERS PAGE
  ============================================================== */
}
body.light div.headline-drop,
body.light #headlines,
body.light #leader-board-container,
body.light #news-feed,
body.light #standings-container,
body.light #editorial-container {
  background-color: #fff;
  box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.1);
  color: #03091b;
}
body.light #slider-wrap {
  box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.1);
}
body.light #home .title {
  border-bottom: 1px solid #efeff5;
}
body.light div.leader {
  border-bottom: 1px solid #efeff5;
}
body.light div.leader:hover {
  background-color: #f7f8fa;
}
body.light img.leader-img {
  background-color: #fbfbfb;
}
body.light i.headline-drop-close {
  color: #d5d6dc;
}
body.light div#standings-container table thead tr th {
  background-color: #fff !important;
}
body.light .news-article {
  border-color: #efeff5;
}
body.light .news-article-details {
  background-color: #f9f9f9;
}
body.light .caption-container {
  background-color: rgba(65, 75, 76, 0.8);
}
body.light div#filter-modal button#filter-result {
  background-color: white;
  box-shadow: 0 5px 5px rgba(82, 63, 105, 0.1);
}
@media (max-width: 768px) {
  body.light header section#filter {
    background-color: #f7f8fa;
  }
}
body.light header ul#more-menu {
  color: #03091b;
  background-color: #f7f8fa;
  box-shadow: 0px 0px 50px 0px rgba(73, 72, 117, 0.1);
}
body.light header ul#more-menu li:hover {
  background-color: #ebedf2;
}
body.light div#schedule-list {
  /* info */
  /* visitor */
}
body.light div#schedule-list wrap.match-up-wrap {
  background-color: #fff;
  color: #03091b;
  border-color: #f1f2f3;
}
@media (max-width: 576px) {
  body.light div#schedule-list wrap.match-up-wrap:nth-child(even) {
    background-color: #f9f9f9;
  }
}
body.light div#schedule-list section.game-links a {
  border-right-color: #f1f2f3;
}
body.light div#schedule-list .info {
  background-color: #e5e7ee;
}
body.light div#schedule-list .game-links a,
body.light div#schedule-list .info {
  border-color: #efeff5;
}
body.light div#schedule-list .info:hover {
  background-color: #dcdfe8;
}
body.light div#schedule-list section.home-team::before {
  content: "";
  background-color: #f9f9f9;
}
@media (min-width: 576px) {
  body.light div#schedule-list .game-links {
    background-color: #f9f9f9;
  }
}
body.light div#schedule-list .team-name::before {
  color: #d0d5e1;
}
body.light div#schedule-list section.game-num::after {
  background-color: #dfe2ea;
}
body.light div#schedule-list div.match-up-details {
  box-shadow: inset 0 0 20px rgba(82, 63, 105, 0.1);
}
body.light p.contact {
  color: #03091b;
}
body.light div#submit-container.sticky {
  background-color: #efefef;
  box-shadow: 0px 2px 17px 5px rgba(0, 0, 0, 0.26);
}
body.light div.table-container {
  box-shadow: 7px 8px 20px 5px rgba(82, 63, 105, 0.1);
}
body.light input[name=scores_submit],
body.light input[name=password_submit] {
  color: #03091b;
  background-color: #f7f8fa;
  box-shadow: 0 2px 5px rgba(82, 63, 105, 0.1);
  transition: background-color 0.4s ease-in;
}
body.light input[name=scores_submit] {
  background-color: #333845;
  border: none !important;
  color: #fff;
}
body.light input[name=scores_submit]:hover {
  background-color: #3e4454;
}
body.light input[name=email] {
  box-shadow: 0 2px 2px rgba(82, 63, 105, 0.1);
}
body.light input[name=password_submit] {
  background-color: #2a5d81;
}
body.light input[name=password_submit]:hover {
  background-color: #306b94;
}
body.light div#scores input[type=text],
body.light div#scores input[type=tel] {
  background-color: #fff;
  border-color: #efeff5;
  color: #03091b;
}
body.light div#modal form#password input[type=password] {
  background-color: #f7f8fa !important;
}
body.light div#standings table tbody td {
  border-color: #ebedf2 !important;
}
body.light div#leaders {
  /*  MENU BARS ========================== */
  /* FILTER, SEARCH, SELECT, TEAM LOGOS ========================== */
}
body.light div#leaders ul#category-tabs li {
  color: #03091b;
  background-color: #efeff5;
  border-right-color: #d7deef;
  border-top-color: #d4d6dc;
  border-bottom-color: #d7deef;
}
body.light div#leaders ul#category-tabs li:hover {
  background-color: #e8ebef;
}
@media (max-width: 414px) {
  body.light div#leaders ul#category-tabs li:hover {
    background-color: transparent;
  }
}
body.light div#leaders ul#category-tabs li.active {
  background-color: #fff;
  border-bottom-color: #fff;
  box-shadow: 0px 2px 14px 0px rgba(93, 85, 118, 0.47);
}
body.light div#leaders filter {
  /* SEARCH ========================== */
}
body.light div#leaders filter ul#team-logos li {
  box-shadow: rgba(69, 65, 78, 0.22) 0 1px 6px 1px;
}
body.light div#leaders filter ul#team-logos li:hover {
  background-color: rgba(214, 214, 214, 0.8);
}
body.light div#leaders filter ul#team-logos li.team-on {
  background-color: #fff;
}
body.light div#leaders filter div#search {
  border-color: #f7f8fa;
  background-color: #f7f8fa;
  box-shadow: 2px 2px 5px rgba(77, 68, 90, 0.2);
}
body.light div#leaders filter div#search.focus {
  border-color: #b1b3c1;
}
body.light div#leaders div.table-container {
  box-shadow: none;
}

/* ============================================================== 
PLAYERS
============================================================== */
div#players {
  /* TEAM & PLAYER
  ============================= */
  /* TEAM
  ============================= */
  /* PLAYER
  ============================= */
}
div#players div.team,
div#players div.player {
  border-radius: 10px;
  border: 0.5px solid transparent;
  margin: 0 1em 1em 0;
  transform: scale(1);
  padding: 1em;
  box-sizing: content-box;
}
@media (max-width: 650px) {
  div#players div.team,
  div#players div.player {
    margin-right: auto;
    margin-left: auto;
  }
}
div#players div.team:hover,
div#players div.player:hover {
  transform: scale(1.05);
}
div#players div.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 225px;
  width: 225px;
  border: 0.5px solid;
  /* background-color: #14151f; */
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), box-shadow 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  /* TEAM IMAGE ******************/
  /* TEAMS NAME, ABBREV, TEAM SITE ******************/
}
@media (max-width: 576px) {
  div#players div.team {
    width: 150px;
    height: 150px;
  }
}
div#players div.team _:-ms-lang(x), div#players div.team _:-webkit-full-screen {
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
div#players div.team div.logo-container {
  display: flex;
  align-items: center;
  height: 60%;
}
div#players div.team img.logo,
div#players div.team img.league-logo {
  display: block;
  margin: 0 auto 5px auto;
  max-width: 100%;
}
div#players div.team img.logo {
  max-height: 95%;
}
div#players div.team img.league-logo {
  max-height: 40%;
}
div#players div.team span.name,
div#players div.team span.abbrev {
  display: block;
  letter-spacing: 1.5px;
}
div#players div.team span.name {
  font-weight: 600;
  font-size: 22px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
@media (max-width: 576px) {
  div#players div.team span.name {
    font-size: 14px;
  }
}
div#players div.team span.division, div#players div.team span.abbrev {
  font-size: 14px;
}
@media (max-width: 576px) {
  div#players div.team span.division, div#players div.team span.abbrev {
    font-size: 11px;
  }
}
div#players div.team span.team-site {
  font-size: 12px;
  font-weight: 500;
}
div#players div.team span.team-site:hover {
  text-decoration: underline;
}
div#players div.player {
  height: 225px;
  min-height: 100px;
  width: 225px;
  border: 0.5px solid;
  text-align: center;
  opacity: 0;
  overflow: hidden;
  transition-property: opacity, transform, box-shadow;
  transition-timing-function: ease-in, cubic-bezier(0.075, 0.82, 0.165, 1), cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-duration: 0.3s, 0.3s, 0.3s;
  /* PLAYER IMAGE ******************/
  /* PLAYER NAME, NUMBER, DETAILS.. ******************/
}
@media (max-width: 576px) {
  div#players div.player {
    width: 150px;
    height: 150px;
  }
}
div#players div.player _:-ms-lang(x), div#players div.player _:-webkit-full-screen {
  transition-property: opacity, transform;
  transition-timing-function: ease-in, cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-duration: 0.3s, 0.3s;
}
div#players div.player.playerFade {
  opacity: 1 !important;
}
div#players div.player.all-players {
  transition-delay: 0.2s, 0s, 0s !important;
  opacity: 1 !important;
}
div#players div.player div.photo-container {
  flex: none;
  display: block;
  height: 70%;
  opacity: 0.9;
  margin: 0 auto 5px auto;
  transition: opacity ease-in-out 0.2s;
  position: relative;
}
div#players div.player div.photo-container img.player {
  display: block;
  max-height: 95%;
  border-radius: 3px;
  margin: 0 auto;
  padding: 0;
  flex: 0;
  transition: background-color ease-in-out 0.4s;
}
div#players div.player:hover div.photo-container {
  opacity: 1;
}
div#players div.player span.name {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 576px) {
  div#players div.player span.name {
    font-size: 14px;
  }
}
div#players div.player span.name.name a:hover {
  text-decoration: underline;
}
div#players div.player span.number {
  margin-right: 5px;
}
@media (max-width: 576px) {
  div#players div.player span.number, div#players div.player span.more-info {
    font-size: 11px;
  }
}

/* ============================================================== 
LEADERS
============================================================== */
div#leaders {
  /* ============================================================== 
  LEADERBOARD FORMAT - LARGE IMGS, MEDIUM IMGS, SMALL IMGS, LOGO IMGS, NO IMAGES, PNG/JPG
  ============================================================== */
  /* NO IMAGES
  ============================= */
}
div#leaders _:-ms-lang(x), div#leaders _:-webkit-full-screen, div#leaders leader {
  transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
div#leaders leader {
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 421px;
  border-radius: 5px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  border: 0.5px solid transparent;
  margin: 0 1em 1em 0;
  /***** BANNER *****/
  /***** ALL ROW STYLES *****/
  /***** BOARD *****/
  /***** Show More Leaders *****/
}
@media (max-width: 576px) {
  div#leaders leader {
    height: 440px;
  }
}
div#leaders leader:hover {
  transform: scale(1.02);
}
div#leaders leader a:hover {
  text-decoration: underline;
}
div#leaders leader div#circle {
  opacity: 1 !important;
}
div#leaders leader h3 {
  text-align: left;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0;
  padding-left: 10px;
}
div#leaders leader h3 span.filter {
  font-size: 8px;
  opacity: 0.7;
  display: block;
}
div#leaders leader banner {
  display: flex;
  flex-direction: column;
  /* border-bottom: 2px solid  #2a303e; */
  position: relative;
  padding-top: 1em;
}
div#leaders leader banner container.photo-container {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 188px;
  /* padding: 1em 0; */
  /* JPG IMAGES
  ============================= */
}
div#leaders leader banner container.photo-container photo {
  display: block;
  width: 100%;
  position: relative;
  height: 170px;
  width: 170px;
}
div#leaders leader banner container.photo-container div#circle {
  display: block;
  position: relative;
  height: 100%;
  border: 2px solid;
  border-radius: 50%;
  background-size: 150%;
  background-position-x: center;
  background-repeat: no-repeat;
  overflow: hidden;
  opacity: 0.9;
  transition: background-color ease-in-out 0.4s;
}
div#leaders leader banner container.photo-container div#circle.links:hover {
  cursor: pointer;
}
div#leaders leader banner container.photo-container div#circle img.player {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div#leaders leader banner container.photo-container div#circle a img {
  background-color: transparent;
  transition: background-color ease-in-out 0.4s;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}
@media (max-width: 576px) {
  div#leaders leader banner container.photo-container div#circle a img {
    filter: none !important;
  }
}
div#leaders leader banner container.photo-container img.logo {
  position: absolute;
  right: -15px;
  bottom: -15px;
  padding: 5px;
  max-width: 65px;
}
@media (max-width: 576px) {
  div#leaders leader banner container.photo-container img.logo {
    filter: none !important;
  }
}
div#leaders leader banner container.photo-container div#circle.jpg {
  border: none !important;
  border-radius: 0 !important;
  overflow: initial !important;
}
div#leaders leader banner container.photo-container div#circle.jpg:hover {
  background-color: transparent !important;
}
div#leaders leader banner container.photo-container div#circle.jpg img.player {
  border-radius: 3px;
}
div#leaders leader banner row li {
  font-size: 12px;
}
div#leaders leader row {
  display: block;
  border-bottom: 1px solid;
}
div#leaders leader row ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  height: 35px;
}
div#leaders leader row ul li {
  display: inline;
  flex: 1;
  text-align: left;
  font-weight: 500;
  /***** ROW NAMES *****/
}
div#leaders leader row ul li.name {
  flex-grow: 3;
  letter-spacing: 0.5px;
  overflow: hidden;
}
div#leaders leader row ul li.rank {
  flex-grow: 0.5;
  text-indent: 10px;
}
div#leaders leader row ul li.span {
  text-overflow: ellipsis;
}
div#leaders leader row ul li.stat {
  flex-grow: 0.5;
}
div#leaders leader row ul li.image {
  flex-grow: 2;
  text-align: center;
  font-size: 12px;
}
div#leaders leader row ul li img.logo {
  max-height: 30px;
  max-width: 30px;
}
div#leaders leader leaderboard {
  display: block;
  overflow-y: auto;
  flex: 1;
}
@media (max-width: 576px) {
  div#leaders leader leaderboard {
    max-height: 100%;
  }
}
div#leaders leader leaderboard.all {
  max-height: initial;
}
div#leaders leader leaderboard li {
  font-size: 11px;
}
div#leaders leader .leader-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 2rem 1rem;
  text-align: center;
}
div#leaders leader .leader-empty .leader-empty-icon {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
div#leaders leader .leader-empty strong {
  font-size: 1rem;
  font-weight: 600;
}
div#leaders leader .leader-empty span {
  max-width: 14rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.7;
}
div#leaders leader div.dropdown {
  display: none;
  padding: 10px 0;
}
div#leaders leader div.dropdown span.more-leaders {
  cursor: pointer;
  font-size: 14px;
}
div#leaders content.none leader {
  min-height: auto;
  max-height: 421px;
  height: auto;
}
div#leaders content.none leader h3 {
  padding-top: 0.5em;
  padding-bottom: 1em;
}
div#leaders content.none leader banner {
  min-height: initial;
}
div#leaders content.none leader container.photo-container div#circle.logo.links {
  border: none !important;
  border-radius: 0 !important;
}
div#leaders content.none leader container.photo-container div#circle.logo.links:hover {
  background-color: transparent !important;
}

div.modal {
  text-align: center;
  /* ============================================================== 
  PASSWORD FORM
  ============================================================== */
  /* ============================================================== 
  ANIMATED CHECK
  ============================================================== */
}
div.modal.load {
  padding: 4em;
}
div.modal .modal-title {
  font-size: 20px;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  div.modal .modal-title {
    font-size: 14px;
  }
}
div.modal form#password input {
  display: block;
  margin: 0 auto;
}
div.modal form#password input[type=password] {
  border-radius: 2px;
  border-color: transparent;
  padding: 15px 10px;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 2em auto;
}
@media (max-width: 576px) {
  div.modal form#password input[type=password] {
    padding: 10px 0 10px 5px;
  }
}
div.modal form#password input[type=submit] {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  padding: 15px 15px;
  border: none;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-appearance: none;
}
@media (max-width: 576px) {
  div.modal form#password input[type=submit] {
    padding: 10px;
  }
}
div.modal .circle-loader {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation: loader-spin 1.2s infinite linear;
  position: relative;
  vertical-align: top;
  border-radius: 50%;
  width: 7em;
  height: 7em;
  margin: 0 auto;
}
div.modal .load-complete {
  display: inline-block;
  -webkit-animation: none;
  animation: none;
  border-color: #5cb85c;
  transition: border 500ms ease-out;
}
div.modal .checkmark {
  display: none;
}
div.modal .checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
div.modal .checkmark:after {
  opacity: 1;
  height: 3.5em;
  width: 1.75em;
  transform-origin: left top;
  border-right: 3px solid #5cb85c;
  border-top: 3px solid #5cb85c;
  content: "";
  left: 1.75em;
  top: 3.5em;
  position: absolute;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 1.75em;
    opacity: 1;
  }
  40% {
    height: 3.5em;
    width: 1.75em;
    opacity: 1;
  }
  100% {
    height: 3.5em;
    width: 1.75em;
    opacity: 1;
  }
}

div#home {
  /* NEWS FEED
  ============================= */
  /* HEADLINES DROP
  ============================= */
  /* HEADLINES
  ============================= */
  /* LEADER BOARD
  ============================= */
  /* EDITORIAL
  ============================= */
  /* STANDINGS
  ============================= */
}
div#home main {
  width: 1300px;
  max-width: 98%;
  margin: auto;
  padding-top: 2em;
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  div#home main {
    padding-top: 0;
  }
}
@media (max-width: 576px) {
  div#home main {
    padding-top: 1.5rem;
  }
}
div#home .title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: left;
  margin: 0;
  padding: 1em 0 1em 1em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  div#home .title {
    font-size: 16px;
  }
}
div#home #headlines,
div#home #leader-board-container,
div#home #news-feed,
div#home #standings-container,
div#home #editorial-container {
  border-radius: 10px;
}
div#home div#ad-square-wrap {
  margin: 0 auto;
}
div#home div#slider-wrap {
  padding: 0;
  display: block;
  margin-top: 0;
  margin-bottom: 1.5rem !important;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
div#home div#slider-wrap div.slider {
  width: 100%;
  margin: 0 auto;
  max-width: 1250px;
}
div#home div#slider-wrap div.slider:hover img {
  transform: scale(1.04);
  transition: transform ease-in-out 0.3s;
}
@media (max-width: 768px) {
  div#home div#slider-wrap div.slider:hover img {
    transform: none;
  }
}
div#home div#slider-wrap div.slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform ease-in-out 0.3s;
  overflow: hidden;
}
div#home div#slider-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transform: scale(1);
  transition: transform ease-in-out 0.3s;
}
@media (max-width: 576px) {
  div#home div#slider-wrap img {
    height: 400px;
  }
}
div#home div#slider-wrap div.caption-container {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0;
  margin: 0;
}
div#home div#slider-wrap h2.caption {
  font-size: 15px;
  text-align: left;
  margin: 0;
  color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 1.3em;
  padding: 10px 0;
  letter-spacing: 1px;
  padding-right: 65px;
  padding-left: 20px;
}
@media (max-width: 768px) {
  div#home div#slider-wrap h2.caption {
    font-size: 14px;
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  div#home div#slider-wrap h2.caption {
    font-size: 12px;
    padding: 5px;
    -webkit-text-size-adjust: none;
  }
}
div#home div#slider-wrap h2.caption a {
  color: #fff;
}
div#home div#slider-wrap h2.caption .caption-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
div#home div#dash {
  width: 65%;
  max-width: 900px;
  margin: 0;
  white-space: normal;
}
@media (max-width: 900px) {
  div#home div#dash {
    width: 100%;
  }
}
div#home .social-newsfeed-container-basic {
  width: 100% !important;
  margin: 0 auto !important;
  float: none !important;
}
div#home .social-media-title {
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding: 5px 0;
  margin: 0;
}
@media (max-width: 900px) {
  div#home #news-feed {
    margin-top: 2rem;
  }
}
div#home #news-articles-container {
  padding: 2rem;
  border-radius: 10px;
}
div#home #news-articles-container .news-article {
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  position: relative;
}
div#home #news-articles-container .news-article:last-child {
  margin-bottom: 0;
}
div#home #news-articles-container .news-article .news-article-photo-container {
  margin: 0;
  height: 400px; /* Set your specific height */
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 576px) {
  div#home #news-articles-container .news-article .news-article-photo-container {
    height: 300px;
  }
}
div#home #news-articles-container .news-article .news-article-photo-container.no-photo {
  position: relative;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#home #news-articles-container .news-article .news-article-photo-container .news-article-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div#home #news-articles-container .news-article .news-article-photo-container.no-photo .news-article-photo {
  width: auto;
  max-height: 75%;
  opacity: 40%;
}
div#home #news-articles-container .news-article .news-article-details {
  padding: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
div#home #news-articles-container .news-article .news-article-details .news-article-title {
  font-size: 18px;
  margin: 0 0 10px 0;
}
div#home #news-articles-container .news-article .news-article-details .news-article-published-date {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
div#home #news-articles-container .news-article .news-article-details .news-article-content-preview {
  margin-bottom: 10px;
}
div#home #news-articles-container .news-article .news-article-details .news-article-read-more {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}
div#home #news-articles-container .news-article .news-article-details .news-article-content {
  display: none;
}
div#home #news-articles-container .news-article .news-article-details .news-article-content p {
  font-size: 14px;
  line-height: 1.4rem;
}
div#home #news-articles-container .news-article .news-article-up-arrow {
  display: none;
  font-size: 30px;
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  cursor: pointer;
}
div#home #news-articles-container .news-article.no-news {
  text-align: center;
}
div#home #news-articles-container .news-article.no-news .news-article-published-date {
  font-size: 14px;
}
div#home #twitter-feed-large {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 900px) {
  div#home #twitter-feed-large {
    margin: 0 auto 1em;
  }
}
div#home #facebook-feed {
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
div#home .fb-page {
  box-shadow: 0 0 5px #999;
}
div#home div#headlines-drop-container {
  display: none;
  position: relative;
  transform: scaleY(0);
}
div#home div#headlines-drop-container.headline-dropdown-height {
  transform: scaleY(1);
  transition: transform ease-in-out 0.4s;
}
div#home div#headlines-drop-container div.headline-drop {
  display: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5em;
  text-align: left;
  transition: transform ease-in-out 0.4s;
  margin-bottom: 1.5rem;
  padding: 0 1em 1em 1em;
  border-radius: 5px;
}
@media (max-width: 900px) {
  div#home div#headlines-drop-container div.headline-drop {
    margin-top: 1em;
  }
}
div#home div#headlines-drop-container div.headline-drop h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 1em 0;
  position: relative;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 900px) {
  div#home div#headlines-drop-container div.headline-drop h2 {
    padding: 1em;
  }
}
div#home div#headlines-drop-container div.headline-drop p {
  margin: 0;
  font-size: 13px;
  border-radius: 10px;
}
div#home div#headlines-drop-container i.headline-drop-close {
  position: absolute;
  top: -11px;
  right: -11px;
  font-size: 30px;
  z-index: 1;
  cursor: pointer;
  margin-left: auto;
  transition: opacity ease-in-out 0.4s;
  transition: transform ease-in-out 0.4s;
}
div#home div#headlines-drop-container i.headline-drop-close:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  div#home div#headlines-drop-container i.headline-drop-close {
    font-size: 25px;
    top: -11px;
    right: 0px;
  }
}
div#home div.headline-drop .iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
div#home div.headline-drop .iframe-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  box-shadow: 4px 4px 20px 2px rgba(0, 0, 0, 0.84);
}
div#home div#sidebar {
  top: 0;
  margin: 0;
  width: 33%;
  margin-left: 2%;
  z-index: 1;
  float: left;
}
@media (max-width: 900px) {
  div#home div#sidebar {
    position: relative;
    width: 100%;
    height: initial;
    float: none;
    margin: initial;
    top: initial;
  }
}
div#home div#headlines {
  margin-bottom: 1.5rem;
}
div#home div#headlines div.headline-title-container h2.headline-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  padding: 1em;
  text-transform: uppercase;
}
div#home div#headlines div.headline-container {
  margin: 0;
  padding: 1em 2em;
}
div#home div#headlines div.headline-container ul {
  margin: 0;
  padding: 0;
}
div#home div#headlines div.headline-container ul li.headline {
  font-size: 13px;
  margin: 10px 0;
  padding: 0;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: left;
  transition: color ease-in-out 0.4s;
  text-decoration: underline;
}
div#home div#headlines div.headline-container ul li.headline:hover {
  transition: color ease-in-out 0.4s;
}
div#home div#headlines .headline-top {
  display: none;
  font-size: 10px;
  cursor: pointer;
  transition: opacity ease-in-out 0.4s;
}
@media (max-width: 576px) {
  div#home div#headlines .headline-top {
    display: block;
    padding-left: 1em;
  }
}
div#home div#headlines .headline-top:hover {
  opacity: 0.6;
}
div#home div#headlines span.contact.home {
  margin-left: 5px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: underline;
}
div#home .sidebar-img {
  max-width: 100%;
  max-height: 150px;
  display: block;
  margin: 0 auto;
}
div#home #leader-board-container {
  width: 100%;
  white-space: normal;
  vertical-align: top;
  margin-bottom: 1.5rem;
}
div#home #leader-board-container #leader-board-flex-container {
  overflow: hidden;
}
@media (max-width: 900px) {
  div#home #leader-board-container #leader-board-flex-container {
    display: flex;
    flex-wrap: wrap;
  }
}
div#home #leader-board-container div.leader {
  margin: 0 auto;
  text-align: left;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: background-color ease-in-out 0.5s;
  position: relative;
  overflow: hidden;
}
div#home #leader-board-container div.leader:hover {
  transition: background-color ease-in-out 0.5s;
}
div#home #leader-board-container div.leader:hover .leader-img {
  transform: scale(1.1);
  transition: transform ease-in-out 0.5s;
}
div#home #leader-board-container div.leader:hover .leader-team-background {
  opacity: 0.4;
}
@media (max-width: 576px) {
  div#home #leader-board-container div.leader:hover .leader-team-background {
    opacity: 0;
  }
}
div#home #leader-board-container div.leader a:hover {
  text-decoration: underline;
}
div#home #leader-board-container div.leader:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  div#home #leader-board-container div.leader {
    width: 49.9%;
    padding: 10px 0;
  }
  div#home #leader-board-container div.leader:nth-child(2n+1) {
    border-right: solid rgba(255, 255, 255, 0.2) thin;
  }
  div#home #leader-board-container div.leader:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 576px) {
  div#home #leader-board-container div.leader {
    display: inline-table;
    width: 100%;
  }
  div#home #leader-board-container div.leader:nth-child(2n+1) {
    border-right: none;
  }
  div#home #leader-board-container div.leader:nth-last-child(-n+2) {
    border-bottom: solid rgba(255, 255, 255, 0.2) thin;
  }
  div#home #leader-board-container div.leader:last-child {
    border-bottom: none;
  }
}
div#home #leader-board-container img.leader-team-background {
  position: absolute;
  opacity: 0;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  max-height: 90%;
  margin: 0 auto;
  transition: opacity ease-in-out 0.4s;
}
div#home #leader-board-container div.leader-img-wrap,
div#home #leader-board-container div.leader-info-container {
  position: relative;
}
@media (max-width: 576px) {
  div#home #leader-board-container div.leader-img-wrap,
  div#home #leader-board-container div.leader-info-container {
    display: table-cell;
    width: 33%;
    position: relative;
    vertical-align: middle;
    height: 100%;
    padding: 0;
    text-align: center;
  }
}
div#home #leader-board-container div.leader-img-container {
  position: relative;
  padding: 0.5em 1em;
  display: block;
  overflow: hidden;
}
@media (max-width: 576px) {
  div#home #leader-board-container div.leader-img-container {
    display: inherit;
  }
}
div#home #leader-board-container div.leader-img-container img.leader-img {
  max-width: 75px;
  display: block;
  transition: transform ease-in-out 0.5s;
  border-radius: 5px;
}
div#home #leader-board-container div.leader-img-container img.leader-team-background-small {
  width: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
div#home #leader-board-container div.leader-info-container {
  padding: 0 0.5em;
}
div#home #leader-board-container div.leader-info-container span.leader-name {
  display: block;
  font-size: 18px;
}
@media (max-width: 900px) {
  div#home #leader-board-container div.leader-info-container span.leader-name {
    font-size: 16px;
  }
}
div#home #leader-board-container div.leader-info-container span.leader-info {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
@media (max-width: 576px) {
  div#home #leader-board-container div.leader-info-container span.leader-info {
    font-size: 10px;
  }
}
div#home #leader-board-container div.leader-info-container span.leader-stat {
  display: inline-block;
  margin-top: 0.25rem;
  letter-spacing: 1px;
  font-size: 16px;
}
@media (max-width: 576px) {
  div#home #leader-board-container div.leader-info-container span.leader-stat {
    display: none;
  }
}
div#home #leader-board-container div.leader-info-container span.leader-name,
div#home #leader-board-container div.leader-info-container span.leader-stat {
  font-weight: 600;
}
div#home #leader-board-container span.leader-stat-big {
  display: none;
}
@media (max-width: 576px) {
  div#home #leader-board-container span.leader-stat-big {
    display: table-cell;
    font-size: 18px;
    width: 33%;
    position: relative;
    vertical-align: middle;
    height: 100%;
    padding: 0;
    text-align: center;
  }
}
div#home #leader-board-container span.leader-stat-big span.stat-category {
  font-size: 14px;
}
@media (max-width: 900px) {
  div#home #leader-board-container span.leader-stat-big span.stat-category {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  div#home #leader-board-container span.leader-stat-big span.stat-category {
    display: block;
  }
}
div#home div#editorial-container {
  display: flex;
  flex-direction: column;
  margin: 2em auto;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 900px) {
  div#home div#editorial-container {
    flex-direction: row;
    align-items: center;
    margin: 0 auto 2em;
  }
}
@media (max-width: 576px) {
  div#home div#editorial-container {
    flex-direction: column;
  }
}
div#home div#editorial-container div#editorial-img-container {
  flex: 1;
}
div#home div#editorial-container div#editorial-img-container img {
  width: 100%;
  display: block;
}
div#home div#editorial-container div#editorial-text-container {
  flex: 1;
  width: 100%;
}
div#home div#editorial-container div#editorial-text-container p {
  width: 100%;
  font-size: 12px;
  text-align: left;
  position: relative;
  padding: 1em;
  line-height: 1.5em;
  margin: 0;
}
div#home div#editorial-container div#editorial-text-container a {
  text-decoration: underline;
}
div#home div#standings-container {
  width: 100%;
  white-space: normal;
  vertical-align: top;
  overflow: hidden;
  margin-bottom: 2rem;
}
div#home div#standings-container div.standings-table-container {
  overflow: hidden;
}
div#home div#standings-container table {
  font-size: 14px;
}
@media (max-width: 576px) {
  div#home div#standings-container table {
    font-size: 11px;
  }
}
div#home div#standings-container table tbody td {
  height: 35px;
  border-left: 0;
  border-right: 0;
}
div#home div#standings-container table tbody tr.standings-division-start td {
  border-top: 1px solid currentColor;
}
div#home div#standings-container table th.division,
div#home div#standings-container table td.division {
  padding: 0;
}
div#home div#standings-container table th.team,
div#home div#standings-container table td.team {
  text-align: left !important;
  white-space: nowrap;
  max-width: 110px !important;
  text-overflow: ellipsis;
  overflow: hidden;
}
div#home div#standings-container table img {
  max-height: 35px;
  max-width: 35px;
  margin: 0 auto;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 576px) {
  div#home div#standings-container table img {
    max-height: 40px;
    max-width: 40px;
  }
}
div#home div#standings-container table span a:hover {
  text-decoration: underline;
}

/* ============================================================== 
CONTENT
============================================================== */
div#content-load {
  overflow: hidden;
}

select#division {
  width: 150px;
  height: 40px;
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
select#division option {
  font-size: 14px;
}
@media (max-width: 576px) {
  select#division {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}

/* SVG
============================= */
nav#main-nav li svg {
  /* display: none; */
}

/******** HOME ********/
nav#main-nav li svg #roster path,
nav#main-nav li svg #roster ellipse {
  fill: #fff !important;
}

/******** ROSTER ********/
nav#main-nav li svg #roster path,
nav#main-nav li svg #roster ellipse {
  fill: #fff !important;
}

/******** SCHEDULE ********/
nav#main-nav li svg #schedule g#outline path#square {
  /* fill: #fff !important; */
}

nav#main-nav li svg #schedule g#outline path#line {
  stroke: black !important;
}

nav#main-nav li svg #schedule g#squares_outer *,
nav#main-nav li svg #schedule g#squares_inner * {
  fill: black !important;
  fill-opacity: 0;
  fill: black !important;
}

/******** STATS ********/
nav#main-nav li svg #stats path#arrow {
  fill: #fff !important;
}

/******** STANDINGS ********/
nav#main-nav li svg #standings rect {
  fill: #fff !important;
  stroke-opacity: 0 !important;
}

/******** LINKS ********/
nav#main-nav li svg #link rect {
  fill: #fff !important;
}

div#players {
  /* ============================================================== 
  BASE STYLES - Main, Header
  ============================================================== */
  /* SELECT
  ============================= */
  /* SELECT2 STYLES */
  /* TEAM LIST ICON
  ============================= */
  /* ============================================================== 
  CONTENT
  ============================================================== */
  /* ============================================================== 
  TEAMS
  ============================================================== */
  /* ============================================================== 
  PLAYERS
  ============================================================== */
  /* PLAYERS CONTAINER
  ============================= */
}
div#players header {
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
div#players main {
  width: 1500px;
  max-width: 98%;
  margin: auto;
  padding-top: 2em;
}
@media (max-width: 576px) {
  div#players main {
    padding-top: 0;
  }
}
div#players div.division {
  margin: 1em 0;
}
div#players select#players,
div#players select#division,
div#players select#player-status {
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
div#players select#players option,
div#players select#division option,
div#players select#player-status option {
  font-size: 14px;
}
@media (max-width: 576px) {
  div#players select#players,
  div#players select#division,
  div#players select#player-status {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
@media (max-width: 576px) {
  div#players select#players,
  div#players select#division,
  div#players select#player-status {
    display: block;
  }
}
div#players select#division {
  /* width: 250px; */
}
div#players select#players {
  margin-right: 0.5rem;
}
div#players select#player-status,
div#players header .select2:nth-of-type(3) {
  display: none;
}
div#players header .select2:not(:nth-of-type(1)) {
  margin-left: 10px;
}
div#players header i.team-list-icon {
  display: none;
  margin-left: 10px;
  font-size: 30px;
  cursor: pointer;
}
div#players content {
  display: block;
}
div#players teams#team-list,
div#players div.players-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
div#players teams#team-list {
  justify-content: center;
  /* LOGOS ON */
}
div#players teams#team-list.logo div.team {
  height: 275px;
  width: 275px;
}
@media (max-width: 576px) {
  div#players teams#team-list {
    padding: 0;
  }
}
div#players players#player-list {
  display: block;
}
div#players div.players-wrap {
  display: none;
  /* PLAYER'S TEAM LOGO AND TEAM NAME
  ============================= */
}
div#players div.players-wrap h2.team-title {
  display: none;
  margin: 0;
  margin-bottom: 1em;
  border-bottom: 1px solid #cfd2da;
  font-size: 50px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.27);
}
@media (max-width: 576px) {
  div#players div.players-wrap h2.team-title {
    font-size: 35px;
  }
}
div#players div.players-wrap h2.team-title div.logo-container {
  margin: 0 auto;
}
div#players div.players-wrap h2.team-title img.team-logo {
  max-height: 125px;
  max-width: 150px;
}
div#players div.players-wrap h2.team-title.small img.team-logo {
  max-height: 100px;
}
div#players div.players-wrap h2.team-title a:hover {
  text-decoration: underline;
}
div#players div.players-wrap h2.team-title.logo {
  text-align: center;
  border-bottom: none;
}
div#players div.player-container {
  display: block;
}
@media (max-width: 830px) {
  div#players div.player-container {
    justify-content: center;
  }
}
div#players .player .more-info {
  display: block;
  font-size: 13px;
}
div#players .no-players-found {
  text-align: center;
  font-size: 18px;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  div#players .no-players-found {
    font-size: 16px;
  }
}

/* ============================================================== 
VARIABLES
============================================================== */
/* FILTER
============================= */
section#filter {
  display: flex;
  align-items: center;
}
section#filter select#teams {
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
section#filter select#teams option {
  font-size: 14px;
}
@media (max-width: 576px) {
  section#filter select#teams {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
section#filter div#search {
  margin-left: 1.5em;
  display: inherit;
  align-items: center;
  border: 2px solid;
  height: 40px;
  width: 175px;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 5px;
  position: relative;
  transition: border-color ease-in-out 0.2s;
  display: flex;
}
section#filter div#search .fa-search {
  font-size: inherit;
  color: #b1b3c1;
  display: inline-block;
  z-index: 1;
}
section#filter div#search input {
  display: inline-block;
  background-color: transparent;
  width: 100%;
  color: inherit;
  margin: 0;
  padding: 0 10px;
  border: none;
  font-size: inherit;
  -webkit-backface-visibility: none;
  -moz-backface-visibility: none;
  -ms-backface-visibility: none;
  backface-visibility: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: left 0;
  -moz-transition: left 0;
  -ms-transition: left 0;
  -o-transition: left 0;
  transition: left 0;
  text-transform: capitalize;
}
section#filter div#search input::-webkit-input-placeholder {
  color: #b1b3c1;
}
section#filter div#search input::-moz-placeholder { /* Firefox 19+ */
  color: #b1b3c1;
}
section#filter div#search input:-ms-input-placeholder { /* IE 10+ */
  color: #b1b3c1;
}
section#filter div#search .close {
  display: none;
  color: #de0503;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  transition: color ease-in-out 0.4s;
}
section#filter div#search .close:hover {
  color: #b30805;
  transition: color ease-in-out 0.4s;
}
@media (max-width: 576px) {
  section#filter div#search {
    box-shadow: none;
    font-size: 12px;
    height: 35px;
    width: 175px;
  }
}
@media (max-width: 768px) {
  section#filter {
    flex-direction: column;
  }
  section#filter select#teams,
  section#filter .select2-container,
  section#filter div#search {
    width: 100% !important;
    margin: 0.5em 0;
  }
}

div#filter-modal button#filter-result {
  width: 100%;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
  margin: 1em 0;
  color: inherit;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
}

div#events {
  /* ============================================================== 
  BASE STYLES - Main, Header
  ============================================================== */
  /* ============================================================= 
  SCHEDULE LIST
  ============================================================== */
  /* ============================================================== 
  SCHEDULE TABLE
  ============================================================== */
}
div#events header {
  margin: 2em auto;
  display: flex;
  align-items: center;
  /* MORE
  ============================= */
}
@media (max-width: 768px) {
  div#events header section#filter {
    display: none;
  }
}
div#events header section#more {
  display: flex;
  margin-left: auto;
  position: relative;
}
@media (max-width: 768px) {
  div#events header section#more {
    margin-left: initial;
    flex: 1;
  }
}
@media (max-width: 768px) {
  div#events header section#more div#utility {
    display: flex;
    margin-left: auto;
  }
}
div#events header section#more div#utility i {
  font-size: 25px;
  margin-left: 1em;
  cursor: pointer;
}
div#events header section#more i.filter {
  display: none;
}
@media (max-width: 768px) {
  div#events header section#more i.filter {
    display: block;
  }
}
div#events header section#more button#schedule-type {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  border: none;
  text-decoration: underline;
}
div#events header section#more button#schedule-type::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f073";
  font-weight: 300;
  margin-right: 5px;
}
div#events header section#more button#schedule-type.no-current {
  text-decoration: none;
  cursor: default;
}
@media (max-width: 768px) {
  div#events header section#more button#schedule-type {
    font-size: 18px;
    padding: 0;
  }
}
div#events header section#more ul#more-menu {
  position: absolute;
  top: 10px;
  visibility: hidden;
  opacity: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 3;
  transition: visibility ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
div#events header section#more ul#more-menu.on {
  visibility: visible;
  opacity: 1;
  top: 20px;
}
div#events header section#more ul#more-menu li {
  padding: 1em;
  list-style-type: none;
  cursor: pointer;
}
div#events header section#more ul#more-menu li i {
  margin-right: 5px;
}
div#events main {
  width: 1500px;
  max-width: 98%;
  margin: auto;
  padding-top: 2em;
}
@media (max-width: 576px) {
  div#events main {
    padding-top: 0;
  }
}
div#events div#schedule-list {
  display: block;
  color: #03091b;
  /* MATCH UP
  ============================= */
  /* MATCH UP SECTIONS ***********/
  /* GAME NUM */
  /* Teams */
  /* Home */
  /* Visitor */
  /* EXTRAS */
  /* MATCH UP DETAILS
  ============================= */
}
div#events div#schedule-list div.match-up-container {
  display: none;
  overflow: hidden;
}
div#events div#schedule-list div.match-up-container.current {
  display: block;
}
div#events div#schedule-list h3.game-date {
  letter-spacing: 1px;
  font-size: 14px;
}
div#events div#schedule-list h3.game-date span.game-count {
  display: block;
  font-size: 10px;
}
div#events div#schedule-list p.game-format {
  font-size: 10px;
}
div#events div#schedule-list wrap.match-up-wrap {
  display: block;
  overflow: hidden;
}
div#events div#schedule-list wrap.match-up-wrap:not(:last-of-type) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
div#events div#schedule-list .winner {
  font-weight: bold;
  position: relative;
}
div#events div#schedule-list .winner:after {
  content: "";
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid rgba(0, 0, 0, 0);
  border-right-style: solid;
  border-right-width: 4px;
}
@media (min-width: 576px) {
  div#events div#schedule-list .winner:after {
    right: 4px;
  }
}
div#events div#schedule-list div.match-up {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100px;
}
@media (min-width: 576px) {
  div#events div#schedule-list div.match-up {
    height: 90px;
  }
}
div#events div#schedule-list div.match-up.game-link {
  cursor: pointer;
}
div#events div#schedule-list section {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (min-width: 768px) {
  div#events div#schedule-list section {
    flex: 1;
  }
}
div#events div#schedule-list section.game-num {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 0;
  left: 0;
  overflow: hidden;
  font-size: 10px;
}
div#events div#schedule-list section.game-num:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 100% 100%;
  transform: skewX(-45deg);
  transform-origin: 0% 0%;
}
div#events div#schedule-list section.game-num span {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}
div#events div#schedule-list section.info {
  flex: 0 0 65px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  padding: 0 2px;
  cursor: pointer;
}
@media (min-width: 768px) {
  div#events div#schedule-list section.info {
    font-size: 12px;
    flex: 0 0 100px;
  }
}
@media (min-width: 992px) {
  div#events div#schedule-list section.info {
    flex: 0 0 175px;
  }
}
div#events div#schedule-list section.info .info-inner::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f13a";
  margin-left: 5px;
}
div#events div#schedule-list section.info .info-inner.expanded::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f139";
}
div#events div#schedule-list section.info .info-playoff {
  display: block;
  margin-bottom: 0.75rem;
  text-align: left;
  font-weight: bold;
}
@media (min-width: 768px) {
  div#events div#schedule-list section.info .info-playoff {
    font-size: 10px;
  }
}
div#events div#schedule-list section.info .info-playoff .playoff-game {
  display: block;
}
@media (min-width: 768px) {
  div#events div#schedule-list section.info .info-playoff .playoff-game {
    display: inline;
  }
}
div#events div#schedule-list section.info .info-detail {
  padding: 0 2px;
}
div#events div#schedule-list section.info .info-detail:last-of-type {
  display: inline-block;
}
div#events div#schedule-list section.info .game-time {
  display: block;
}
@media (max-width: 992px) {
  div#events div#schedule-list section.info .game-time {
    display: inline-block;
    font-size: inherit;
    margin: auto;
    padding: 0;
  }
}
div#events div#schedule-list section.info .game-location {
  font-size: 11px;
}
@media (max-width: 992px) {
  div#events div#schedule-list section.info .game-location {
    display: none !important;
  }
}
div#events div#schedule-list section.info .game-more-details {
  margin-top: 5px;
}
div#events div#schedule-list section.info .game-more-details::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f13a";
  margin-left: 5px;
}
div#events div#schedule-list section.info .game-more-details.expanded::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f139";
}
div#events div#schedule-list .teams-container {
  display: flex;
  flex-grow: 3;
  letter-spacing: 1.5px;
  height: 100%;
  flex-direction: column;
}
@media (min-width: 576px) {
  div#events div#schedule-list .teams-container {
    flex-direction: row;
  }
}
div#events div#schedule-list .teams-container section {
  flex: 1;
}
div#events div#schedule-list .teams-container a:hover {
  text-decoration: underline;
}
div#events div#schedule-list .team-inner {
  display: flex;
  align-items: inherit;
  margin-left: 12px;
}
@media (min-width: 576px) {
  div#events div#schedule-list .team-inner {
    flex: 1;
    flex-direction: row;
    text-align: center;
    margin-left: 0;
  }
}
div#events div#schedule-list .team-inner .team-name {
  font-size: 12px;
  font-weight: 500;
  padding-left: 5px;
}
div#events div#schedule-list .team-inner .team-name::before {
  font-size: 7px;
  position: absolute;
  font-weight: 300;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 576px) {
  div#events div#schedule-list .team-inner .team-name {
    font-size: 11px;
  }
  div#events div#schedule-list .team-inner .team-name::before {
    display: none;
  }
}
@media (min-width: 992px) {
  div#events div#schedule-list .team-inner .team-name {
    font-size: 14px;
  }
}
div#events div#schedule-list .team-inner .logo {
  max-height: 27px;
  max-width: 55px;
  padding: 0 5px;
  position: relative;
  vertical-align: middle;
}
@media (min-width: 576px) {
  div#events div#schedule-list .team-inner .logo {
    height: 30px;
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  div#events div#schedule-list .team-inner .logo {
    height: auto;
    max-height: 60px;
    max-width: none;
  }
}
div#events div#schedule-list section .score {
  font-size: 16px;
  margin-left: auto;
  padding: 0 10px;
  font-weight: 600;
}
div#events div#schedule-list section .score:empty {
  display: none;
}
@media (min-width: 576px) {
  div#events div#schedule-list section .score {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  div#events div#schedule-list section .score {
    font-size: 16px;
  }
}
div#events div#schedule-list section.home-team {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 576px) {
  div#events div#schedule-list section.home-team {
    padding-left: 20px;
  }
  div#events div#schedule-list section.home-team::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform-origin: 100% 100%;
    transform: skewX(-15deg);
  }
  div#events div#schedule-list section.home-team .team-inner {
    order: 2;
  }
}
div#events div#schedule-list section.home-team .team-name::before {
  content: "H";
}
div#events div#schedule-list section.visitor-team {
  position: relative;
}
div#events div#schedule-list section.visitor-team .team-inner .team-name::before {
  content: "V";
}
@media (min-width: 576px) {
  div#events div#schedule-list section.visitor-team .team-inner {
    justify-content: flex-end;
    text-align: right;
  }
  div#events div#schedule-list section.visitor-team .team-inner::after {
    font-size: 16px;
    color: #676d7d;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    content: "\f1fa";
    z-index: 2;
    right: -20px;
    left: initial;
    top: initial;
  }
  div#events div#schedule-list section.visitor-team .team-inner a {
    order: 2;
  }
}
div#events div#schedule-list section .result {
  position: absolute;
  right: -20px;
  z-index: 2;
  font-size: 8px;
  font-weight: 600;
}
div#events div#schedule-list section.game-links {
  flex-basis: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
  font-size: 12px;
}
@media (min-width: 768px) {
  div#events div#schedule-list section.game-links {
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 0 0 175px;
    font-size: 12px;
    border: none;
  }
}
div#events div#schedule-list section.game-links a {
  flex: 1;
  display: inherit;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: 100%;
  padding: 0 5px;
  font-size: 10px;
  text-decoration: none;
  transition: background-color ease-in 0.2s;
}
div#events div#schedule-list section.game-links a:not(:first-of-type) {
  border-top-style: solid;
  border-top-width: 1px;
}
@media (min-width: 768px) {
  div#events div#schedule-list section.game-links a {
    flex: 0 0 75px;
    padding: 0 10px;
    font-size: 12px;
    height: 100%;
    width: auto;
  }
  div#events div#schedule-list section.game-links a:not(:first-of-type) {
    border-top-style: none;
  }
  div#events div#schedule-list section.game-links a:not(:first-of-type) {
    border-left-style: solid;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  div#events div#schedule-list section.game-links a {
    font-size: inherit;
  }
}
div#events div#schedule-list section.game-links i {
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  div#events div#schedule-list section.game-links i {
    font-size: 18px;
    margin-right: 5px;
  }
}
div#events div#schedule-list section.game-links span {
  display: none;
  white-space: nowrap;
}
div#events div#schedule-list section.extras {
  flex-grow: 1;
  justify-content: center;
  position: relative;
  font-size: 11px;
  text-align: center;
  letter-spacing: 1.5px;
  transition: background-color ease-in 0.4s;
}
@media (max-width: 992px) {
  div#events div#schedule-list section.extras {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  div#events div#schedule-list section.extras {
    flex-grow: 2;
  }
}
@media (max-width: 576px) {
  div#events div#schedule-list section.extras {
    flex-grow: 1.5;
  }
}
div#events div#schedule-list div.match-up-details {
  height: 0;
  padding: 0;
  margin: 0;
  padding: 0;
  transition: height 1s cubic-bezier(0, 1, 0, 1);
}
div#events div#schedule-list div.match-up-details div.details-inner-container {
  padding: 1em 15px;
}
div#events div#schedule-list div.match-up-details span {
  display: block;
  margin: 5px;
  font-size: 12px;
}
@media (max-width: 576px) {
  div#events div#schedule-list div.match-up-details span {
    font-size: 10px;
  }
}
div#events div#schedule-list div.match-up-details span i {
  margin-right: 5px;
}
div#events div#schedule-list div.match-up-details span a {
  text-decoration: underline;
}
div#events div#schedule-table {
  display: none;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 576px) {
  div#events div#schedule-table {
    border-radius: 0;
  }
}
div#events div#schedule-table table tbody td {
  border-left: none;
  border-right: none;
  padding: 8px 6px;
}
div#events div#schedule-table table img {
  height: 30px;
  max-width: 100px;
  margin: 0 auto 2px auto;
  display: block;
}
div#events div#schedule-table table a:hover {
  text-decoration: underline;
}
div#events div#schedule-table div.dt-buttons {
  display: none;
}

div#scores {
  /* ============================================================== 
  BASE STYLES - Main, Header
  ============================================================== */
  /* ============================================================== 
  SCORES FORM
  ============================================================== */
  /* ============================================================== 
  INPUTS
  ============================================================== */
}
div#scores main {
  width: 1500px;
  max-width: 98%;
  margin: auto;
  padding-top: 2em;
}
@media (max-width: 576px) {
  div#scores main {
    padding-top: 0;
  }
}
div#scores content {
  padding: 2em 0;
  display: block;
}
div#scores select#scores-teams {
  width: 150px;
  height: 40px;
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
div#scores select#scores-teams option {
  font-size: 14px;
}
@media (max-width: 576px) {
  div#scores select#scores-teams {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
div#scores .select2-container,
div#scores select#scores-teams {
  margin-right: auto;
}
@media (max-width: 576px) {
  div#scores .select2-container,
  div#scores select#scores-teams {
    width: 100% !important;
    margin: 0.5em 0;
  }
}
div#scores p.contact {
  margin-left: auto;
  display: inline;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-right: 1.5em;
}
@media (max-width: 768px) {
  div#scores p.contact {
    order: 2;
    display: block;
    margin: 8px 0 0 0;
    font-size: 12px;
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 576px) {
  div#scores p.contact {
    font-size: 10px;
  }
}
div#scores span.contact {
  cursor: pointer;
  text-decoration: underline;
}
@media (max-width: 768px) {
  div#scores span.contact {
    order: 1;
  }
}
div#scores div#submit-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 0;
}
@media (max-width: 576px) {
  div#scores div#submit-container {
    padding: 0.5em 0;
  }
}
div#scores div#submit-container.sticky {
  padding: 1em;
}
@media (max-width: 576px) {
  div#scores div#submit-container.sticky {
    padding: 0.5em 5px;
  }
}
div#scores div.table-container {
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 576px) {
  div#scores div.table-container {
    border-radius: 0;
  }
}
div#scores table tbody td {
  border-left: none;
  border-right: none;
  height: 30px;
}
div#scores table a:hover {
  text-decoration: underline;
}
div#scores table th:nth-child(1),
div#scores table td:nth-child(1) {
  padding: 0 10px;
}
@media (max-width: 576px) {
  div#scores table th:nth-child(1),
  div#scores table td:nth-child(1) {
    padding: 0 4px;
  }
}
div#scores table img.logo {
  height: 30px;
  max-width: 100px;
  margin: 0 auto 2px auto;
  display: block;
}
div#scores div.table-container input[type=text],
div#scores div.table-container input[type=tel] {
  height: 30px;
}
div#scores div.table-container input[type=text],
div#scores div.table-container input[type=tel] {
  border: 3px solid;
  border-radius: 5px;
  border-color: transparent;
  padding: 5px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: text;
  text-align: left;
  padding-left: 5px;
}
@media (max-width: 576px) {
  div#scores div.table-container input[type=text],
  div#scores div.table-container input[type=tel] {
    width: 100px;
    font-size: 12px;
  }
}
div#scores div.table-container input[type=text].score,
div#scores div.table-container input[type=tel].score {
  width: 60px;
}
div#scores input[name=email] {
  border: 3px solid;
  border-radius: 5px;
  border-color: transparent;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: text;
  text-align: left;
  align-self: center;
  margin-right: 1rem;
}
@media (max-width: 576px) {
  div#scores input[name=email] {
    font-size: 11px;
    flex: 1;
  }
}
div#scores input[type=submit] {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 35px;
  border: 3px solid;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-appearance: none;
}

div#standings {
  /* ============================================================== 
  BASE STYLES - Main, Header
  ============================================================== */
  /* ============================================================== 
  DIVISION
  ============================================================== */
  /* ============================================================== 
  table
  ============================================================== */
  /* ============================================================== 
  MEDIA SCREENS
  ============================================================== */
}
div#standings main {
  width: 1000px;
  max-width: 98%;
  margin: auto;
  padding-top: 2em;
}
@media (max-width: 576px) {
  div#standings main {
    padding-top: 0;
  }
}
div#standings header {
  margin: 2em auto;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  div#standings header {
    justify-content: center;
  }
}
div#standings button#standings-type {
  margin-left: auto;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  border: none;
  text-decoration: underline;
}
div#standings content {
  display: block;
}
div#standings .standings-empty {
  margin: 1em 0;
  padding: 2rem 1rem;
  border: 1px solid currentColor;
  text-align: center;
}
div#standings div.division {
  margin: 1em 0;
}
div#standings .division h2.division-title {
  border-bottom: 1px solid;
  font-size: 25px;
  font-weight: 900;
}
div#standings .division h2.division-title:empty {
  display: none;
}
@media (max-width: 576px) {
  div#standings .division h2.division-title {
    font-size: 20px;
  }
}
div#standings div.table-container {
  box-shadow: 7px 8px 20px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
div#standings table {
  font-size: 16px;
  /* put restrictions on second column (team name column)*/
}
@media (max-width: 576px) {
  div#standings table {
    font-size: 12px;
  }
}
div#standings table tbody td:nth-of-type(1),
div#standings table thead th:nth-of-type(1) {
  padding: 0 10px;
}
div#standings table thead th:nth-of-type(2),
div#standings table tbody td:nth-of-type(2) {
  position: relative;
  min-width: 100px;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  font-weight: 500;
  padding: 0;
}
@media (max-width: 576px) {
  div#standings table thead th:nth-of-type(2),
  div#standings table tbody td:nth-of-type(2) {
    min-width: 160px;
    max-width: 160px;
  }
}
div#standings table thead th:nth-of-type(2).logo,
div#standings table tbody td:nth-of-type(2).logo {
  height: 55px;
}
@media (max-width: 576px) {
  div#standings table thead th:nth-of-type(2).logo,
  div#standings table tbody td:nth-of-type(2).logo {
    height: 45px;
    font-size: 12px;
  }
}
div#standings table a.player-link:hover {
  text-decoration: underline;
}
div#standings table img {
  max-height: 45px;
  max-width: 45px;
  margin: 0 auto;
  vertical-align: middle;
  margin: 0 5px 0 0;
}
@media (max-width: 576px) {
  div#standings table img {
    max-height: 40px;
    max-width: 40px;
  }
}
@media (max-width: 576px) {
  div#standings table img {
    max-height: 25px;
    max-width: 25px;
  }
}
div#standings table tbody td {
  border: none !important;
  border-bottom: 1px #2a303e solid !important;
}
div#standings table tbody td a:hover {
  text-decoration: underline;
}

div#leaders {
  /* HEADER */
  /* ============================================================== 
  CATEGORY MENU & REPORT MENU 
  ============================================================== */
  /******* CATEGORY STYLES *******/
  /******* REPORT STYLES *******/
  /* ============================================================== 
  FILTER, SEARCH, SELECT, TEAM LOGOS
  ============================================================== */
  /* ============================================================== 
  STATS CONTAINER, CONTENT, TABLES
  ============================================================== */
  /* ============================================================== 
  TABLES
  ============================================================== */
  /********** TABLE BUTTONS - PRINT **********/
  /********** PRINTING **********/
  /* ============================================================== 
  LEADERS
  ============================================================== */
}
div#leaders main {
  width: 1500px;
  max-width: 98%;
  margin: auto;
  padding-top: 2em;
  padding-top: 0;
}
@media (max-width: 576px) {
  div#leaders main {
    padding-top: 0;
  }
}
div#leaders header#header {
  display: block;
  width: 100%;
  margin: 2em auto;
  #
        text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  div#leaders header#header {
    margin: 1.5em auto;
  }
}
div#leaders header menu#stats-menu {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 800px;
  max-width: 90%;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 576px) {
  div#leaders header menu#stats-menu {
    max-width: 100%;
  }
}
div#leaders menu selector {
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: cubic-bezier(0.68, -0.55, 0.39, 1.17) 0.4s;
}
div#leaders ul#stats-tabs {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
div#leaders ul#stats-tabs li,
div#leaders menu selector[data-select=stats] {
  font-size: 15px;
  border-bottom-width: 5px;
  border-bottom-style: solid;
  font-weight: 600;
}
@media (max-width: 576px) {
  div#leaders ul#stats-tabs li,
  div#leaders menu selector[data-select=stats] {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  div#leaders ul#stats-tabs li,
  div#leaders menu selector[data-select=stats] {
    font-size: 12px;
  }
}
div#leaders ul#category-tabs {
  max-width: none;
  margin-bottom: 0;
  flex: 1;
}
div#leaders ul#category-tabs li {
  font-size: 15px;
  border-right: 1px solid;
  border-top: 4px solid;
  transition: background-color 0.2s ease-out;
}
@media (max-width: 576px) {
  div#leaders ul#category-tabs li {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  div#leaders ul#category-tabs li:hover {
    background-color: rgba(30, 34, 43, 0.55);
  }
}
div#leaders ul#category-tabs li .active {
  position: relative;
  border-bottom: solid #333 5px;
  color: #333;
}
div#leaders ul#category-tabs li.active {
  /* box-shadow: inset 0 0 10px #b4c5da; */
  border-bottom-color: transparent;
  position: relative;
}
div#leaders ul#category-tabs li.stats-tab {
  border-bottom: 0;
}
div#leaders filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-bottom: 1em;
  /********** FILTER ICONS - SEARCH, PRINT **********/
  /* PRINT */
  /********** TEAM LOGOS AND SELECT **********/
}
div#leaders filter section#icons {
  display: flex;
  align-items: center;
}
div#leaders filter div#search {
  display: inherit;
  align-items: center;
  border: 2px solid;
  height: 40px;
  width: 175px;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 5px;
  position: relative;
  transition: border-color ease-in-out 0.2s;
  display: none;
}
div#leaders filter div#search .fa-search {
  font-size: inherit;
  color: #b1b3c1;
  display: inline-block;
  z-index: 1;
}
div#leaders filter div#search input {
  display: inline-block;
  background-color: transparent;
  width: 100%;
  color: inherit;
  margin: 0;
  padding: 0 10px;
  border: none;
  font-size: inherit;
  -webkit-backface-visibility: none;
  -moz-backface-visibility: none;
  -ms-backface-visibility: none;
  backface-visibility: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: left 0;
  -moz-transition: left 0;
  -ms-transition: left 0;
  -o-transition: left 0;
  transition: left 0;
  text-transform: capitalize;
}
div#leaders filter div#search input::-webkit-input-placeholder {
  color: #b1b3c1;
}
div#leaders filter div#search input::-moz-placeholder { /* Firefox 19+ */
  color: #b1b3c1;
}
div#leaders filter div#search input:-ms-input-placeholder { /* IE 10+ */
  color: #b1b3c1;
}
div#leaders filter div#search .close {
  display: none;
  color: #de0503;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  transition: color ease-in-out 0.4s;
}
div#leaders filter div#search .close:hover {
  color: #b30805;
  transition: color ease-in-out 0.4s;
}
@media (max-width: 576px) {
  div#leaders filter div#search {
    box-shadow: none;
    font-size: 12px;
    height: 35px;
    width: 175px;
  }
}
@media (max-width: 576px) {
  div#leaders filter div#search {
    margin-bottom: 10px;
  }
}
div#leaders filter div#print {
  margin-left: 10px;
}
@media (max-width: 576px) {
  div#leaders filter div#print {
    display: none;
  }
}
div#leaders filter i.print {
  display: none;
  font-size: 25px;
  cursor: pointer;
}
div#leaders filter ul#team-logos {
  display: none;
  /* display: flex; */
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
div#leaders filter ul#team-logos.wrap {
  margin-bottom: 4em;
}
div#leaders filter ul#team-logos.wrap li {
  margin: 5px;
}
@media (max-width: 768px) {
  div#leaders filter ul#team-logos.wrap {
    margin-bottom: 2em;
  }
}
@media (max-width: 576px) {
  div#leaders filter ul#team-logos.wrap {
    margin-bottom: 0em;
  }
}
div#leaders filter ul#team-logos li {
  list-style-type: none;
  /* background-color: rgba(30, 34, 43, 0.55); */
  padding: 2px;
  margin: 0 5px;
  height: 40px;
  width: 50px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}
div#leaders filter ul#team-logos li img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}
div#leaders filter div#category {
  margin-right: 0.5rem;
}
div#leaders filter div#category #category-select {
  height: 40px;
  width: 150px;
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
div#leaders filter div#category #category-select option {
  font-size: 14px;
}
@media (max-width: 576px) {
  div#leaders filter div#category #category-select {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
div#leaders filter div#teams {
  display: none;
  margin-right: 0.5rem;
}
@media (max-width: 350px) {
  div#leaders filter div#teams {
    margin: 0;
    text-align: left;
  }
}
div#leaders filter div#teams #team-select {
  height: 40px;
  width: 150px;
  transition: box-shadow ease 0.4s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  text-align: left !important;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 175px;
  height: 40px;
  margin-bottom: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px !important;
  padding-left: 8px;
}
div#leaders filter div#teams #team-select option {
  font-size: 14px;
}
@media (max-width: 576px) {
  div#leaders filter div#teams #team-select {
    font-size: 11px;
    width: 150px;
    height: 35px;
  }
}
div#leaders filter #leader-icons {
  display: none;
}
@media (max-width: 768px) {
  div#leaders filter .select2-container {
    width: 200px !important;
  }
}
div#leaders container#stats-container {
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 5px;
}
div#leaders container#stats-container p#stat-glossary {
  text-align: left;
  text-decoration: underline;
}
div#leaders content#stat-tables {
  display: block;
}
div#leaders content#stat-tables div.table-container:not(:first-of-type) {
  display: none;
}
div#leaders content#stat-tables:not(:first-of-type) {
  display: none;
}
div#leaders table {
  /* put restrictions on second column (player name column)*/
}
div#leaders table thead th:nth-of-type(2), div#leaders table tbody td:nth-of-type(2) {
  text-align: left;
  position: relative;
  max-width: 150px;
  min-width: 150px;
  text-decoration: none;
  /* min-width: 190px !important; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 12px;
  /* text-indent: 2px; */
  padding: 0 5px;
}
@media (max-width: 576px) {
  div#leaders table thead th:nth-of-type(2), div#leaders table tbody td:nth-of-type(2) {
    max-width: 140px;
    min-width: 140px;
    font-size: 10px;
  }
}
div#leaders table a.player-link:hover {
  text-decoration: underline;
}
div#leaders table.team td span.logo {
  margin-right: 5px;
}
div#leaders table td span.logo {
  display: inline-block;
  height: 20px;
  width: 20px;
}
div#leaders table td a span.abbrev:hover {
  text-decoration: underline;
}
div#leaders table img {
  max-height: 100%;
  max-width: 25px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div#leaders table.stat-table th:nth-child(1), div#leaders table.stat-table td:nth-child(1) {
  padding: 0 10px;
}
@media (max-width: 576px) {
  div#leaders table.stat-table th:nth-child(1), div#leaders table.stat-table td:nth-child(1) {
    padding: 0 4px;
  }
}
div#leaders table .jersey-number {
  margin-left: 2px;
}
div#leaders table .name-container {
  display: flex;
  align-items: center;
}
div#leaders .dt-buttons {
  display: none;
}
div#leaders content#stat-tables div#stat-print {
  display: none;
}
div#leaders table.print-table {
  width: 100%;
  font-size: 10px;
}
div#leaders table.print-table td {
  border-bottom: 1px solid #000;
}
div#leaders table.print-table th:nth-child(1),
div#leaders table.print-table td:nth-child(1) {
  text-align: left;
}
div#leaders #all-leaders container.leader-cat {
  display: none;
}
div#leaders content#all-leaders,
div#leaders #all-leaders container.leader-cat:first-child {
  display: block;
}
div#leaders #all-leaders container.leader-cat h2 {
  letter-spacing: 2px;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #cfd2da;
}
@media (max-width: 576px) {
  div#leaders #all-leaders container.leader-cat h2 {
    font-size: 18px;
  }
}
div#leaders #all-leaders container div.leader-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*# sourceMappingURL=planner-style.css.map */
