/************************
FONT INCLUDES - Google or Adobe Font @import or other font face
*************************/
@import url('//fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
  font-family: Quincy;
  src: url(./fonts/QuincyCF-Bold.woff);
}

/************************
SET BASE THEME COLORS HERE -- CUSTOM VARIABLES
these are used here and in the nld-color.css file
*************************/
:root {
  /*theme and brand colors*/
  --primary: #115740;
  --primary-tint-01: color-mix(in srgb, var(--primary), white 35%);
  --primary-tint-02: color-mix(in srgb, var(--primary), white 65%);
  --primary-tint-03: color-mix(in srgb, var(--primary), white 80%);
  --primary-shade-01: color-mix(in srgb, var(--primary), black 35%);
  --primary-shade-02: color-mix(in srgb, var(--primary), black 65%);
  --secondary: #EA6218;
  --secondary-tint-01: color-mix(in srgb, var(--secondary), white 35%);
  --secondary-tint-02: color-mix(in srgb, var(--secondary), white 65%);
  --secondary-tint-03: color-mix(in srgb, var(--secondary), white 80%);
  --secondary-shade-01: color-mix(in srgb, var(--secondary), black 35%);
  --secondary-shade-02: color-mix(in srgb, var(--secondary), black 65%);
  --tertiary: #6E6E6E;
  --tertiary-tint-01: color-mix(in srgb, var(--tertiary), white 35%);
  --tertiary-tint-02: color-mix(in srgb, var(--tertiary), white 65%);
  --tertiary-tint-03: color-mix(in srgb, var(--tertiary), white 80%);
  --tertiary-shade-01: color-mix(in srgb, var(--tertiary), black 35%);
  --tertiary-shade-02: color-mix(in srgb, var(--tertiary), black 65%);

  /*general colors*/
  --dark: #262626;
  --light: #fff;
  --gray: #6E6E6E;
  --accent01: #F4F1F0;
  /*limestone*/
  --accent02: #197D5C;
  /*lighter keeneland green*/
  --accent03: #014533;
  /*darker keeneland green*/

  /*ui elements*/
  --active: #57A66C;
  --danger: #C01115;
  --warning: #FFCF28;
  --success: #197D5C;
  --info: color-mix(in srgb, var(--primary), white 80%);

  /*table elements*/
  --table-altrow: #EFEFEF;
  --table-border: #9A9A9A;
  --table-disabled: #D9D9D9;
}

/*** used to change the color scheme on archived sales to a duller color ***/
.archive-sale-page {
  --primary: #666666;
  --primary-tint-01: color-mix(in srgb, var(--primary), white 35%);
  --primary-tint-02: color-mix(in srgb, var(--primary), white 65%);
  --primary-tint-03: color-mix(in srgb, var(--primary), white 80%);
  --primary-shade-01: color-mix(in srgb, var(--primary), black 35%);
  --primary-shade-02: color-mix(in srgb, var(--primary), black 65%);
}

/*** example co-brand sale, calumet ***/
.cobrand-sale-page-calumet {
  --primary: #B02C31;
  --primary-tint-01: color-mix(in srgb, var(--primary), white 35%);
  --primary-tint-02: color-mix(in srgb, var(--primary), white 65%);
  --primary-tint-03: color-mix(in srgb, var(--primary), white 80%);
  --primary-shade-01: color-mix(in srgb, var(--primary), black 35%);
  --primary-shade-02: color-mix(in srgb, var(--primary), black 65%);
  --info: var(--primary-tint-03);
}

/*** additional color settings are found in nld-color.css ***/


/***********************
CSS ANIMATIONS
*************************/
/* floating svgs */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 0.25rem);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.float {
  animation: float 1.5s infinite;
}

/* glow effect */
@keyframes live-glow {
  0% {
    box-shadow: 0 0 1rem 0.25rem color-mix(in srgb, var(--primary), black 60%);
  }

  50% {
    box-shadow: 0 0 5rem 0.5rem color-mix(in srgb, var(--primary), black 45%);
  }

  100% {
    box-shadow: 0 0 1rem 0.25rem color-mix(in srgb, var(--primary), black 60%);
  }
}

.live-glow {
  animation: live-glow 15s infinite;
}

/*** live icon, pulses red/white ***/
.live-pulse {
  animation: pulse-animation 2s infinite;
  border-radius: 100%;
}

.live-pulse-light {
  animation: pulse-animation-light 2s infinite;
  border-radius: 100%;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.2);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }
}

@keyframes pulse-animation-light {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}


/************************
BODY
*************************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-size: 1rem;
}

::selection {
  /*text selection*/
  background: var(--primary-tint-03) !important;
  color: var(--dark);
}

/*************************
HEADINGS AND FONTS
**************************/

p {
  /* font-size: inherit !important; */
}

h1,
.h1 {
  /*only use for page titles*/
  font-family: Quincy, serif;
  margin: 0;
  font-size: 3.2rem;
  line-height: 3rem;
  font-weight: inherit !important;
}

h1.display-4 {
  margin: 0.75rem 0;
}

@media (min-width: 1200px) {
  h1.display-4 {
    font-size: 3.5rem;
    line-height: 3.2rem;
  }
}

h2,
.h2 {
  font-family: Quincy, serif;
  margin: 0;
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: inherit !important;
}

h3,
.h3 {
  font-family: Quincy, serif;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7rem;
  font-weight: inherit !important;
}

h4,
.h4 {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  letter-spacing: 0.25px;
  font-size: 1.2rem;
  font-weight: inherit !important;
}

h5,
.h5 {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: inherit !important;
}

h6,
.h6 {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: inherit !important;
}


.subtitle {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 4px;
}

.text-serif {
  font-family: Quincy, serif;
}

.text-sans-serif {
  font-family: 'Open Sans', Open Sans, sans-serif;
}

.lead {
  /*slightly larger text used for intro paragraphs*/
  font-size: 1.25rem;
  font-weight: normal;
}

.small {
  /*small text used for asides or footnotes*/
  font-size: 0.85rem;
  font-weight: normal;
}

code {
  color: var(--primary);
}

mark {
  background: primary-tint-90;
}

blockquote {
  /*used for pullquotes in articles*/
  max-width: 500px;
  margin: 4rem auto 2rem auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

blockquote p {
  font-family: Quincy, serif;
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-top: 1rem;
}

blockquote p:before {
  content: '“';
  font-family: Quincy, serif;
  color: inherit;
  opacity: 0.35;
  font-size: 6rem;
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  z-index: -1;
}

blockquote cite {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 0.9rem !important;
  letter-spacing: 1px;
  font-style: normal;
  display: block;
}


figure {
  max-width: 100%;
}

figure img {
  max-width: 100%;
  height: auto;
}

figcaption {
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  color: var(--gray);
  padding: 0.5rem 0.25rem;
}

.badge {
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
  display: inline-block;
  background: var(--primary-tint-01);
  padding: 6px;
  margin: 5px 6px 0px 0px;
  overflow-wrap: break-word;
  font-weight: bold;
}

/*** headings and font size adjustments for mobile ***/
@media (max-width: 650px) {
  h1.display-1 {
    font-size: 3rem;
    line-height: 2.8rem;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 2.25rem;
  }

  h2,
  .h2 {
    font-size: 1.7rem;
    line-height: 1.8rem;
  }

  h3,
  .h3 {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

  h4,
  .h4 {
    font-size: 1.1rem;
  }

  h5,
  .h5 {
    font-size: 1rem;
  }

  .lead {
    font-size: 1rem;
  }

  .small {
    font-size: 0.75rem;
  }

  body {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.65rem 0.9rem !important;
    font-size: 0.75rem !important;
  }

  blockquote p {
    font-size: 1.4rem !important;
    line-height: 1.75rem !important;
  }
}

/**************************
LINKS AND BUTTONS
***************************/
/*** default links ***/
a {
  transition: all 0.3s ease-in-out;
  color: inherit;
}

a:hover {}

a:active,
a:focus {}

/*** default button ***/
.dress-code .btn,
/* .dress-code button, */
.dress-code input[type="submit"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  border-width: 1px;
  transition: 0.3s;
  font-family: 'Open Sans', Open Sans, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 0.85rem;
  margin: 0.15rem;
}

.dress-code .btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.dress-code .btn:active,
.dress-code .btn:focus {
  border-color: inherit;
}

.dress-code .btn:focus-visible {
  border-color: inherit;
  box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25);
}

.dress-code.dress-code .btn svg,
.dress-code .btn img {
  max-height: 20px;
  fill: currentColor !important;
}

.btn-lg {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.6rem;
}

.btn-disabled {
  opacity: 0.8;
  background: var(--gray);
  pointer-events: none;
}

/*** additional button styles are in nld-color.css ***/

/***************************
WEBFORMS
****************************/
.form-control,
.form-select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
  border: 1px solid;
  border-color: var(--gray) !important;
  border-radius: 1px;
  transition: 0.3s;
  padding: 0.6rem;
}

.form-control:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 .25rem var(--primary-tint-03);
  background: var(--light);
  outline: none;
}

.form-check-input,
input[type="checkbox"] {
  border: 1px solid;
  border-color: var(--gray) !important;
}

.form-check-label {
  font-weight: normal;
}

.form-check-input[type="checkbox"],
input[type="checkbox"] {
  border-radius: 0px;
  border-color: var(--gray) !important;
}

.form-check-input:checked,
input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary) !important;
}

.form-check-input:focus,
input[type="checkbox"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .25rem var(--primary-tint-03);
}


.form-check.child {
  margin: 0 0 0.2rem 25px;
  font-size: 0.85rem;
}

label {
  font-weight: bold;
}

.form-multi-select-tag {
  display: inline-block;
  width: auto;
  align-items: center;
  padding: 0.35rem;
  margin: 0.25rem 0.25rem 0.25rem 0;
  background-color: var(--primary-tint-02);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 3px;

  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.form-multi-select-tag svg {
  margin-left: 3px;
  max-height: 12px;
  margin-top: -3px;
}

.form-multi-select-tag.inactive {
  background-color: var(--tertiary-tint-01);
  border: 2px solid var(--gray);
  color: var(--gray);
}

/*** default form validations ***/
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: var(--success);
}

/*************************
DESIGN ELEMENTS / HELPER CLASSES
**************************/
.dress-code hr {
  background-color: var(--secondary);
  border-color: var(--secondary);
  opacity: 1;
  height: 3px;
  max-width: 80px !important;
  margin: 1.5rem auto;
}

/*** sale tags, used on cards ***/
.sale-status-tag {
  display: inline-block;
  z-index: 10;
  border: 1px solid var(--gray);
  font-family: 'Open Sans', Open Sans, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.25rem 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--light);
  border-radius: 0;
}

/*** active vs. inactive sale indicators ***/
.sale-dot {
  border-radius: 100%;
  height: 10px;
  width: 10px;
  min-width: 10px;
  min-height: 10px;
  content: '';
  display: inline-block;
  margin-right: 5px;
}

.active-sale {
  background: var(--active);
}

.archived-sale {
  background: var(--gray);
}

.upcoming-sale {
  background: var(--secondary);
}


/*** hip number and icon circles ***/
.hip-no {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light) !important;
  background: var(--primary);
  font-family: Quincy, serif;
  text-align: center;
  border-radius: 100%;
}

.hip-no-sm {
  width: 65px;
  height: 45px;
  outline: 5px solid rgba(255, 255, 255, 0.5);
  outline-offset: -4px;
  font-size: 0.85rem;
}

.hip-no-md {
  width: 100px;
  height: 70px;
  outline: 6px solid rgba(255, 255, 255, 0.5);
  outline-offset: -5px;
  font-size: 1.2rem;
}

.hip-no-lg {
  width: 150px;
  height: 110px;
  outline: 8px solid rgba(255, 255, 255, 0.5);
  outline-offset: -7px;
  font-size: 2rem;
}

.icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light) !important;
  background: var(--primary);
  text-align: center;
  border-radius: 100%;
  margin: 1.5rem auto;
}

.icon-bg-sm {
  width: 65px;
  height: 65px;
  outline: 5px solid rgba(255, 255, 255, 0.5);
  outline-offset: -4px;
}

.icon-bg-md {
  width: 100px;
  height: 100px;
  outline: 6px solid rgba(255, 255, 255, 0.5);
  outline-offset: -5px;
}

.icon-bg-lg {
  width: 150px;
  height: 150px;
  outline: 8px solid rgba(255, 255, 255, 0.5);
  outline-offset: -7px;
}

.icon-bg img,
.icon-bg svg {
  fill: var(--light);
  width: 40%;
  height: 40%;
  animation: float 1.5s infinite;
}

/*** vertical heights, usually set on rows ***/
.vh-15 {
  min-height: 15vh;
}

.vh-25 {
  min-height: 25vh;
}

.vh-50 {
  min-height: 50vh;
}

.vh-75 {
  min-height: 75vh;
}

/*** borders ***/
.border-bottom {
  border-bottom: 1px solid var(--gray) !important;
}

.border-top {
  border-top: 1px solid var(--gray) !important;
}

/*** background + semi-transparent overlay ***/
.background {
  /* applied to parent div with background image */
  position: relative;
}

.text-overlay {
  /* applied to first child div with text */
  z-index: 3;
  position: relative;
}

.ratio .text-overlay {
  position: absolute;
  bottom: 10px !important;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 10px;
}

.bg-overlay {
  /* applied to second child div to add gradient/overlay to parent image*/
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.60);
}

.bg-overlay-75 {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.bg-overlay-bottom-gradient {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  border-radius: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 15%, rgba(255, 255, 255, 0) 100%);
}

.bg-overlay-gradient-left {
  background: linear-gradient(-140deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.90) 75%);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
}

.bg-overlay-gradient-bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
}

/***************************
CARDS - https://getbootstrap.com/docs/5.3/components/card/
****************************/
.card-link,
.card-link:hover {
  color: inherit;
  text-decoration: none;
}

.card {
  color: inherit;
  border-radius: 0px;
  box-shadow: 0 0 0.8rem 0rem rgba(0, 0, 0, 0.1);
}

.card-title {
  margin: 0;
}

.card-text {
  margin: 0;
}

.card-body h3 {
  margin: 0.35rem 0;
}

.card-footer {
  background: none;
  border: none;
  margin-bottom: 8px;
}

.sale-stat-card {
  background: transparent;
}

.vert-card {
  border-radius: 0;
  border: 0;
}

.vert-card .list-group {
  margin: 0.25rem 1rem;
  border-color: var(--gray);
}

.vert-card .sale-status-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.vert-card .card-img {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}

.vert-card .card-img img {
  border-radius: 0px;
  transition: transform 0.6s cubic-bezier(0.11, 0, 0.5, 0);
}

.vert-card .card-img img:hover {
  transform: scale(1.1);
}

.vert-card .btn {
  align-items: end;
}

.sale-card .card-body {
  flex: none;
}

.sale-card .list-group {
  flex: 1 1 auto;
}

.horz-card {
  padding: 0rem;
}

.staff-card .staff-img {
  overflow: hidden;
}

.staff-card img {
  transition: transform 0.6s cubic-bezier(0.11, 0, 0.5, 0);
}

.staff-card:hover img {
  transform: scale(1.1);
}

.featured-horse-card {
  color: var(--light);
  border-radius: 0px;
  position: relative;
  min-height: 400px;
  background-position: center center;
  background-size: cover;
}

.featured-horse-card .hip-no {
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
}

.featured-horse-card .bg-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  border-radius: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 25%, rgba(255, 255, 255, 0) 100%)
}

.featured-horse-card .text-overlay {
  position: absolute;
  bottom: 10px !important;
  text-align: left;
  padding: 1rem;
}

.promoted-card {
  color: var(--light);
  border-radius: 0px;
  position: relative;
  min-height: 400px;
  background-position: center center;
  background-size: cover;
}

.promoted-card .bg-overlay-50,
.promoted-card .bg-overlay-75,
.promoted-card .bg-overlay {
  border-radius: 0px;
}

.promoted-card .outline-overlay {
  border-radius: 0px;
  /*outline: 1px solid var(--light);*/
  outline-offset: -0.5rem;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.promoted-card .text-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.promoted-card .text-overlay div.promo-bg {
  background: var(--light);
  color: var(--dark);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 2rem;
  border-radius: 0px;
  width: 100%;
  max-width: 450px;
}

.promoted-card .text-overlay div.promo-bg-transparent {
  background: none;
  padding: 2rem;
  width: 100%;
  max-width: 450px;
}

.promoted-card h3 {
  margin: 0.8rem 0;
}

.sale-stat-card {
  /*used for archived sales only*/
  border: 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 1rem 0;
  border-radius: 0;
  box-shadow: 0 0 0 0;
  position: relative;
}

.sale-stat-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sale-stat-card p {
  margin: 0.1rem 0;
}

.sale-watch-card {
  padding: 1rem 0;
  position: relative;
}

.sale-watch-card .list-group-flush {
  margin: 0 1rem;
}

/*** tickets cards, updated 2/18 ***/
.ticket-card {
  /*padding: 0.65rem;*/
}

.ticket-card .card-img {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}

.ticket-card .card-img img {
  border-radius: 0px;
}

.ticket-card .card-img img {
  transition: transform 0.6s cubic-bezier(0.11, 0, 0.5, 0);
}

.ticket-card .card-img img:hover {
  transform: scale(1.1);
}

.ticket-card .card-details {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  color: var(--gray);
  padding: 10px 0;
  margin: 0 1rem;
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*** controls helper icon styling***/
.ticket-card .card-details img {
  max-height: 18px;
}

.ticket-card .card-details img.active-filter {
  opacity: 1;
}

.ticket-card .card-details img.inactive-filter {
  opacity: 0.35;
}

/*.ticket-card:has(.text-danger) .card-img img {
    filter: saturate(0);
    opacity: 0.8;
}*/

/***************************
LIST GROUPS - https://getbootstrap.com/docs/5.3/components/list-group/
****************************/
.list-group {
  border-color: var(--gray);
  margin: 0.5rem;
  border-radius: 0;
}

.list-group-item {
  padding: 0.75rem 0.25rem;
  border-color: var(--gray);
  transition: 0.3s all ease-in-out;
  display: flex;
  justify-content: space-between;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  text-align: left;
}

a.list-group-item::after {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

a.list-group-item:hover::after {
  margin-right: -0.5rem;
}

a.list-group-item:hover {
  color: var(--primary);
  padding: 0.75rem 0.5rem 0.75rem 0.35rem;
}

.list-group-item.active {
  color: var(--primary);
  background: var(--primary-tint-03);
  border-color: var(--gray);
  box-shadow: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: var(--gray);
  cursor: not-allowed;
}

/*general links*/
a.list-group-item.internal-link::after,
a.list-group-item.link::after {
  background-image: url(../img/svg-icons/list-group/link-arrow.svg) !important;
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
}

/*downloadable link*/
a.list-group-item.download-link::after {
  background-image: url(../img/svg-icons/list-group/link-doc.svg) !important;
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
}

/** currently obselete, but may come back in the future - external link
a.list-group-item.external-link::after
 {
	background-image: url(../img/link-external.svg)!important;
	content: '';
	width: 20px;
	height: 20px;
	display: inline-block;
}
**/


/***************************
TABLE OF CONTENTS (used in resources)
****************************/
.toc-collapse {
  background: var(--accent01);
  border-top: 3px solid var(--primary);
  border-radius: 0px;
  width: 100%;
  margin: 0 2px;
  padding: 0.5rem;
}

.toc-btn {
  padding: 0rem 1rem 0rem 0rem !important;
  display: flex !important;
  align-items: center;
  justify-content: between;
  width: 100%;
  display: block;
  text-align: left;
}

.toc-btn svg {
  fill: var(--light) !important;
  /*background: var(--primary-shade-02);*/
  padding: 14px;
  min-height: 50px;
  width: 50px;
  margin-right: 8px;
}

.toc-collapse ul.toc {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.toc-collapse ul li {
  /*top level section*/
  font-weight: bold;
  padding: 0.75rem;
}

.toc-collapse ul li ul li {
  /*second level section*/
  font-weight: normal;
  padding: 0.25rem 0;
  border: 0;
}

.toc-collapse a {
  opacity: 0.75;
  text-decoration: none;
}

.toc-collapse a.active {
  opacity: 1;
  border-bottom: 2px solid var(--dark);
}

/*can be applied to table of contents parent column. makes the toc sticky in desktop sizes*/
@media (min-width: 992px) {
  .col-toc {
    position: sticky;
    top: 6rem;
    right: 0;
    z-index: 2;
    height: calc(100vh - 7rem);
    overflow-y: auto;
  }
}

/***************************
BREADCRUMBS
****************************/
.breadcrumb {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.breadcrumb svg {
  max-height: 14px;
  margin-top: -2px;
}


/***************************
ACCORDIONS - https://getbootstrap.com/docs/5.3/components/accordion/ - updated 1/18
****************************/
.accordion-header {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  border: 1px solid var(--light);
}

.accordion-button {
  font-weight: bold;
  text-transform: none;
  letter-spacing: 0;
  background: var(--accent01);
  color: var(--dark);
  border-bottom: 1px solid var(--gray);
  border-radius: 0;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-radius: 0;
}

.accordion-button:focus {
  box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0);
}

.accordion-button:not(.collapsed) {
  background: var(--accent01) !important;
  color: var(--dark);
  border-bottom: 1px solid var(--gray);
}

.accordion-button.collapsed::after,
.accordion-button:not(.collapsed)::after {
  /*icon*/
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23262626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
  /*body*/
  border: 0;
}

.accordion-item .accordion-collapse {
  border: none;
}

/***************************
TABLES - note: these are for default tables. NOT catalog table.
*****************************/
.table-container {
  overflow: auto;
  border-radius: 0px;
  width: 100%;
}

@media (max-width: 750px) {
  .table-container {}

  .table-container table {
    font-size: 0.7rem;
  }
}

table {
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--table-border);
  table-layout: fixed;
  position: relative;
  box-sizing: border-box;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: 0px;
  min-width: 100%;
}

table thead th {
  padding: 0.75rem 0.75rem;
  position: sticky;
  top: 0;
  background: var(--dark);
  color: var(--light) !important;
  font-weight: bold;
}


table tfoot {
  position: sticky;
  bottom: 0;
}

table tfoot tr {
  padding: 0.75rem 0.75rem;
  background: var(--dark);
  border: 1px solid var(--dark);
  color: var(--light);
}

table tfoot tr td {
  text-align: center;
}

table tbody tr {
  background: var(--light);
  border-bottom: 1px solid var(--table-border);
}

table tbody tr:nth-child(odd) {
  background: var(--table-altrow);
  border-bottom: 1px solid var(--table-border);
}

table tbody tr.out-horse {
  background: var(--table-disabled);
  text-decoration: line-through;
}

table td {
  padding: 0.75rem 0.5rem;
}

table .hip {
  width: 80px;
  text-align: center;
}

table td.hip {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary);
  text-align: center;
}


.out-horse,
.out-horse td.hip {
  color: var(--gray) !important;
}

/***************************
ALERT - more styles in nld-colors
****************************/
.alert {
  margin: 0.5rem 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: start;
  column-gap: 8px;
  border-radius: 0;
}

.alert p {
  margin-bottom: 0;
}

.alert svg,
.alert img {
  min-width: 18px !important;
  max-width: 18px;
  margin-top: 3px;
}

/***************************
PAGINATION (used for views) - https://getbootstrap.com/docs/5.3/components/pagination
****************************/
.pagination .page-link {
  color: inherit;
}

.pagination .page-item.active a {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.page-link:focus {
  box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25)
}

/***************************
NAV LINKS (for tabs/pills/etc)
****************************/
.nav .nav-link {
  color: inherit;
}

.nav-pills .nav-link.active {
  background: var(--primary) !important;
}

/********************
ADDED 1/8/2025 - ADDING STYLES FOR NAV PILLS / TABS, Experience Guide + Stats
*********************/
/*** anchor navbars for long pages***/
.anchor-nav {
  background-color: var(--accent01);
  overflow: auto;
  white-space: nowrap;
  margin: 0 auto;
  display: flex;
}

.anchor-nav a {
  display: inline-block;
  color: var(--dark);
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;
}

.anchor-nav a:hover {
  color: var(--primary);
}

.anchor-nav a.active

/** current item**/
  {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
}

/*** stats and leaders toggling ***/
.nav-underline .nav-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s;
  color: var(--gray);
  padding: 1rem 0 1rem 0;
}

.nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
  border-bottom-color: var(--primary);
  color: var(--primary);
  border-radius: 0;
  border-width: 3px;
}


/***************************
PROMOTED / FEATURED BOTTOM
****************************/
.promoted-bottom {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0% 40%, var(--primary) 40% 100%);
  padding: 2rem 0;
}

.archive-sale-page .promoted-bottom {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0% 40%, #115740 40% 100%);
  padding: 2rem 0;
}

/***************************
SITEWIDE - FOOTER
****************************/
footer {
  background: var(--primary);
  color: var(--light);
  padding: 2rem 0 0 0;
  margin-bottom: 0;
  font-size: 1rem;
}

/*** main nav items**/
footer ul.footer-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer ul.footer-nav li {
  margin: 8px;
}

footer ul.footer-nav li a {
  font-size: 1rem;
  text-decoration: none;
  /*font-weight: bold;*/
}

/*subnav, terms and conditions*/
footer ul.footer-subnav {
  list-style-type: none;
  margin: 0.2rem 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

footer ul.footer-subnav li {
  margin: 5px;
}

footer ul.footer-subnav li a {
  font-size: 0.75rem;
  font-weight: normal;
  text-decoration: none;
}

footer .footer-return {
  background: var(--primary-shade-02);
  padding: 1.25rem 0;
  margin-top: 1rem;
}

footer .footer-return a {
  text-decoration: none;
  opacity: 0.8;
}

@media (max-width: 775px) {

  footer ul.footer-nav,
  footer ul.footer-subnav {
    flex-direction: column
  }
}

/*** full width galley slider - currently only on homepage ***/
.swiper.fullwidth-gallery .swiper-slide {
  transition: all 200ms linear;
  transform: scale(0.85);
}

.swiper.fullwidth-gallery .swiper-slide.swiper-slide-active {
  transform: scale(1);
}


/*** swiper arrow override ***/
.swiper-button-next,
.swiper-button-prev {
  background: var(--light);
  border-radius: 100%;
  height: 40px !important;
  width: 40px !important;
  display: block;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px !important;
  color: var(--primary);
}


/******************************
TWO COLUMN GUTENBERG LAYOUT -- OVERLAPPING IMAGES
*******************************/
/* image stacking, general styles */
.image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.image-stack img {
  width: 100%;
  display: block;
}

.has-tertiary-outline,
.image-stack-bottom img {
  outline: 1px solid var(--tertiary);
  border: 10px solid transparent;
}

/*** for image stacks focused on the bottom left ***/
.image-stack-bottomleft .image-stack-bottom {
  grid-column: 3 / -1;
  grid-row: 1;
}


.image-stack-bottomleft .image-stack-top {
  grid-row: 1;
  grid-column: 2 / span 8;
  padding-top: 50%;
  z-index: 5;
}

/*** for image stacks focused on the bottom right ***/
.image-stack-bottomright .image-stack-bottom {
  grid-column: -3 / 1;
  grid-row: 1;
}


.image-stack-bottomright .image-stack-top {
  grid-row: 1;
  grid-column: 4 / span 8;
  padding-top: 50%;
  z-index: 5;
}

/*** image stack - mobile/tablet styling so it looks less busy ***/
@media (max-width: 1023px) {
  .image-stack-bottom {
    display: none;
  }

  .image-stack-bottomright .image-stack-top {
    grid-row: 1;
    grid-column: 1 / span 12;
    padding-top: 0%;
    z-index: 5;
  }

  .image-stack-bottomleft .image-stack-top {
    grid-column: 1 / span 12;
    grid-row: 1;
    padding-top: 0%;
  }
}


/*********************
DRESSCODE SPECIFIC - 3/17
**********************/

.dresscode-header {
  background: #262626 url(./img/header.jpg) no-repeat bottom center fixed;
  background-size: cover;
}

.dresscode-header .gradient-overlay {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
}

.swiper-pagination-bullet-active {
  background: var(--accent02) !important;
}

.negative-margin {
  margin-top: -4rem;
  z-index: 6;
  position: relative;
}

.border-gray-1 {
  border: 1px solid var(--light-gray);
}

.bg-gradient-accent01 {
  background: linear-gradient(180deg, #F4F1F0 0%, #FFFFFF 100%);
}

.hotlinks-alt {
  overflow-x: auto;
  white-space: nowrap;
}

.chart-key {
  height: 4rem;
}

.table-layout-auto table {
  table-layout: auto;
}

.table-layout-auto.is-style-regular tr {
  background: transparent;
}

.table-layout-auto.is-style-regular td {
  border-width: 0 0 1px 0;
  min-width: 116px;
}

.table-layout-auto td sub {
  display: block;
  line-height: 1rem;
  vertical-align: middle;
}

.table-cell-fixed-height thead {
  border: none;
}

.table-cell-fixed-height td {
  height: 72px;
}

.table-cell-fixed-height td:first-child {
  width: 60%;
}

.wp-block-table.my-0 table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .th-xs-hidden thead {
    display: none;
  }
}

.venue-page .card-btns .wp-block-button:not(.is-style-btn-cta) {
  margin: 0;
}

.venue-page .card-btns .wp-block-button:not(.is-style-btn-cta) a {
  text-transform: none;
  letter-spacing: 0;
  margin: 0.5rem 0 0;
}

.anchor-offset {
  padding-top: 9rem;
  margin-top: -9rem;
}
