﻿/* Footjoy branding. */


/* Header */
.navbar-bg {
  background-color: #38628C;    /* FJ blue. */
}

.navbar .centerLogo img {
  height: 34px;
}

.dropdown-item:active {
  background-color: #38628C;  /* Bootstrap's bright blue to FJ blue. All dropdowns. */
}

.navbar-top .dropdown-menu .logo-item-switch:active {
  background-color: #e31837;  /* Switching to Titleist. Change bootstrap's bright blue to Titleist red. */
}

/* SureFitHub styles, redesigned. */

.text-brand {
  color: #38628c;
}

a.brandlink {
  text-decoration: none;
  color: #38628c;
  border-bottom: 1px solid #38628c;
  border-bottom-color: rgba(56, 98, 140, 0.2);
}
a.brandlink:focus,
a.brandlink:hover {
  color: #4c4c4c;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
a.brandlink.no-border {
  border-bottom: 0;
}

/* btnLink brand colors.*/
button.brandlink {
  text-decoration: underline;
  text-decoration-color: rgba(56, 98, 140, 0.2);        /* button doesn't work with link's border-bottom approach; use text-decoration instead. */
  color: #38628c;
}
button.brandlink:focus,
button.brandlink:hover {
  color: #4c4c4c;
  text-decoration-color: rgba(0, 0, 0, 0.1);
}
button.brandlink.no-border {
  text-decoration: none;
}

/* btn brand colors (was btn-danger, btn-outline-danger). */
.btn-brand {
  color: #fff;
  background-color: #38628c;
  border-color: #38628c;
}

.btn-brand:hover {
  color: #fff;
  background-color: #335a80;        /* Use HSL from base color, then lighten each. */
  border-color: #305478;
}

.btn-outline-brand {
  color: #38628c;
  border-color: #38628c;
}

.btn-outline-brand:hover {
  color: #fff;
  background-color: #38628c;
  border-color: #38628c;
}

.border-brand {
  border-color: #38628c !important;
}



.footjoy-blue {
  color: #38628c !important;
}

/* Datatables pages.
    datatables mimicked the style, instead of using bootstrap classes. */

.page-link {
    color: #38628c;          /* Navigation Titleist red, instead of bootstrap blue.*/
}

.page-link:hover {
    color: #38628c;
}

.page-item.active .page-link {
    background-color: #38628c;
    border-color: #38628c;
}

