body {
  background-color: #ececec;
}

/* Placeholder for missing images */
.placeholder-image {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 100px;
}

/* PAGE LAYOUT */
.card-page {
  box-shadow: 1px 1px 5px grey;
}

.card-btn {
  float: right;
}


.page-header {
  font-size: 1em;
  font-weight: bold;
}

a {
  color: inherit;
}

a:hover {
  color: #FFA500;
}

/* TABS */
.nav-link {
  color:black !important;
  font-weight: normal !important;
  text-decoration: none !important;
}

.player-nav-item .nav-link {
  color: white !important;
}

.player-nav-item .nav-link:hover {
  text-decoration: none !important;
}

.nav-link.active {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff !important;
}

.player-nav-item .btn {
  display: block;
}

/* FORMS */
.submit_button {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* ICONS */
.btn_icon {
  color: white;
}

/* HEADER */
.container-fluid {
    padding-right:0;
    padding-left:0;
    margin-right:auto;
    margin-left:auto;
    position: relative;
 }

#headerImage {
  display: block;
  margin: auto;
  position: relative;
}

.main-header {
  background-color: black;
  position: relative;
}

/* NAVIGATION BAR */
#logo {
  height: 40px;
  width: 40px;
}

#nav {
  background-color: #d2d2d2;
  margin-bottom: 0px;
}

.navbar {
  background-color: #d2d2d2;
}

.nav-link {
  font-family: sans-serif;
  font-size: 14px;
}

.navbar .nav-item .nav-link:hover {
  text-decoration: underline !important;
}

.main-navbar-menu {
  background-color: #ececec;
  min-width: 8rem;
}

.dropdown-item {
  font-family: sans-serif;
  font-size: small;
}

.dropdown-item:hover {
  text-decoration: underline;
  background-color: #ececec;
}

/* Nested dropdown submenus */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 6px 6px 6px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  border-radius: 6px 0 6px 6px;
}

/* Mobile-friendly dropdown submenu behavior */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding-left: 20px !important;
    display: block !important;
  }
  
  .dropdown-submenu > a:after {
    display: none !important;
  }
  
  .dropdown-submenu > a {
    padding-right: 15px !important;
  }
}

#profile_pic_sm {
  height: 25px;
  width: 25px;
  padding: 0px;
}

/* FONT AWESOME ICONS */
i {
  color: black;
}

.notify_count {
  position: absolute;
  top: 3px;
  right: 3px;
  color: #fff;
  padding: 0 3px;
  border-radius: 8px;
  background: #b63f3f;
  font-size: 11px;
  line-height: 14px;
  font-weight: bold;
}

.dropdown-menux {
  width: 300px;

}

.dropdown-menux li a {
  color: black;
  text-decoration: underline;
}

.dropdown-menux li a:hover {
  color: #ff8800;
}

.notification {
  display: block;
  padding: 9px 13px;
  box-shadow: 0px 10px 2px -10px rgba(0, 0, 0, 0.5);
}


/* FOOTER */
.footer {
   bottom : 2px;
   height : 30px;
   margin-top : 20px;
   vertical-align: bottom;
   position: relative;
   width: 100%;
}

/* BREADCRUMBS */
.breadcrumb {
  background-color: #FFFFFF;
  box-shadow: 1px 1px 5px grey;
  padding: 0.75rem 1rem;
  border-radius: 0 0 0.25rem 0.25rem;
}

.breadcrumb a {
  color: black;
}

.breadcrumb a:hover {
  color: #ff8800;
}

/* Player Links */
.playerLinks {
  color: black;
  text-decoration: underline;
}

.playerLinks:hover {
  color: #ff8800;
}

/* Team Links */
.team-links {
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2px;
  text-align: center;
}

.team-links li {
  display: inline;
  margin-left: 3px;
}

.team-links li img {
  max-width: 100%;
  max-height: 100%;
}

/* PAGINATION */
.page-item.active .page-link {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: normal !important;
  }

.page-item .page-link {
  color: #007bff !important;
  font-weight: normal !important;
  text-decoration: none !important;
}

.page-item.disabled .page-link {
    color: #6c757d !important;
  }

/* Color-Mode */
.bi {
    width: 1rem;
    height: 1rem;
    vertical-align: -.125rem;
    fill: currentcolor
}

.navbar .dropdown-menu .active .bi {
    display: block !important;
}

.navbar .dropdown-menu .active {
    font-weight: 600;
}

/* Breakpoint XS */
@media (max-width: 575px)
{
    .hidden-xs-down, .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down,
    .hidden-xs-up,
    .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl
    {
        display: none !important;
    }

}

/* Breakpoint SM */
@media (min-width: 576px) and (max-width: 767px)
{
    .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down,
    .hidden-xs-up, .hidden-sm-up,
    .hidden-unless-xs, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl
    {
        display: none !important;
    }
}

/* Breakpoint MD */
@media (min-width: 768px) and (max-width: 991px)
{
    .hidden-md-down, .hidden-lg-down, .hidden-xl-down,
    .hidden-xs-up, .hidden-sm-up, .hidden-md-up,
    .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-lg, .hidden-unless-xl
    {
        display: none !important;
    }
}

/* Breakpoint LG */
@media (min-width: 992px) and (max-width: 1199px)
{
    .hidden-lg-down, .hidden-xl-down,
    .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up,
    .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-xl
    {
        display: none !important;
    }
}

/* Breakpoint XL */
@media (min-width: 1200px)
{
    .hidden-xl-down,
    .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, .hidden-xl-up,
    .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg
    {
        display: none !important;
    }
}

@media (min-width: 576px) and (max-width: 767px)
{
  .no_display {
    display: none !important;
  }
}

/* Tom Select */ 
.ts-dropdown-content {
  color: #000;
  background-color: #fff;
}

.ts-dropdown [data-selectable].option {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.ts-dropdown .option, .ts-dropdown .optgroup-header, .ts-dropdown .no-results, .ts-dropdown .create {
  padding: 3px 0.75rem;
  font-size: small;
}

.ts-wrapper .dropdown-header {
  background-color: #fff;
}

.ts-dropdown {
  background-color: #fff;
}

/* TABLE SORTER */
th.up div:after {
  content: " \f0d7";
  font-family: FontAwesome;
  font-size: small;
}
th.down div:after {
  content: " \f0d8";
  font-family: FontAwesome;
  font-size: small;
}
th.tablesorter-headerUnSorted div:after {
  content: " \f0dc";
  font-family: FontAwesome;
  font-size: small;
}