/************************
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%);
}

	.archive-sale-page .nav-darkmode.offcanvas {
		background: #115740;
	}
	
	.archive-sale-page footer {
		background: #115740;
	}
	
	.archive-sale-page .promoted-card.bg-primary {
		background: #115740;
	}

/*** 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);
}
body.bg-accent01.sign-in-background {
    background-image: url("/img/account-bg.jpg") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-color: transparent !important;
}
/*************************
HEADINGS AND FONTS
**************************/

h1,
.h1 {
  /*only use for page titles*/
  font-family: Quincy, serif;
  margin: 0;
  font-size: 3.2rem;
  line-height: 3rem;
}

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;
}

h3,
.h3 {
  font-family: Quincy, serif;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7rem;
}

h4,
.h4 {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  letter-spacing: 0.25px;
  font-size: 1.2rem;
}

h5,
.h5 {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

h6,
.h6 {
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}


.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: 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
  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 ***/
.btn,
button,
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;
}

.btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn:active,
.btn:focus {
  border-color: inherit;
}

.btn:focus-visible {
  border-color: inherit;
  box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25);
}

.btn svg,
.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
**************************/
hr {
  background-color: var(--secondary);
  border-color: var(--secondary);
  opacity: 1;
  height: 3px;
  max-width: 80px;
  margin: 1.5rem auto;
}

/*** sale tags, used on cards ***/
.sale-status-tag {
  display: inline-block;
  z-index: 10;
  border: 0px solid var(--gray);
  font-family: 'Open Sans', Open Sans, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 0.25rem 10px;
  background: rgba(0, 0, 0, 0.65);
  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);
}

.card .sale-status-tags {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 100%;
	z-index: 10;
}

.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;
}

/***************************
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 th {
  padding: 0.75rem 0.75rem;
  position: sticky;
  top: 0;
  background: var(--primary);
  color: var(--light);
  font-weight: bold;
}


table tfoot tr {
  padding: 0.75rem 0.75rem;
  background: var(--primary);
  border: 1px solid var(--primary);
  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***/
.form-figure-container {
	max-width: 100%!important;
}

.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;
}

/***************************
SITEWIDE - NAVIGATION (for sales and individual sales)
****************************/
/* main navbar, transparent before scroll */
.mainnav {
  color: var(--light);
  transition: background-color 200ms linear;
}

.mainnav .navbar-brand img {
  fill: var(--light);
}

.mainnav .nav-btn svg {
  fill: var(--light);
  max-height: 20px;
  transition: 0.3s;
}

.mainnav .search-btn {
  color: var(--tertiary-tint-01);
  border-color: var(--tertiary-tint-02) !important;
  background: rgba(0, 0, 0, 0.15);
}

/*** main navbar after it scrolls, animates to solid color state ***/
.mainnav.scrolled,
body:has(.sale-page-navbar) .mainnav {
  /*the :has selector is only relevant for the pages with sales navigation*/
  background: var(--primary);
  box-shadow: 0 0 0.8rem 0rem rgba(0, 0, 0, 0.1);
  transition: all 200ms linear;
  color: var(--light);
}

.mainnav.scrolled .navbar-brand {
  color: var(--light);
}

.mainnav.scrolled .nav-btn svg {
  fill: var(--light);
  max-height: 20px;
  transition: 0.3s;
}

.mainnav.scrolled .search-btn {
  color: var(--light);
  border-color: var(--tertiary-tint-02) !important;
  background: transparent;
}

.navbar-brand img,
.navbar-brand svg {
  max-height: 40px;
}

.nav-btn {
  border: 0;
  text-decoration: none;
  text-align: center;
  padding: 1rem 0;
}

.nav-btn svg {
  fill: color-mix(in srgb, var(--primary), white 75%);
  max-height: 20px;
  transition: 0.3s;
}

.nav-btn.show {
  background: var(--light);
  color: var(--primary);
}

.nav-btn.show svg,
.nav-btn.show:hover svg {
  fill: var(--primary);
}

.nav-btn div {
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.nav-btn:hover svg {
  fill: var(--light);
}

.btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.offcanvas {
  background: var(--primary);
  background: linear-gradient(var(--primary), var(--primary-shade-02) 100%);
  color: var(--light);
}

.offcanvas-backdrop {
  background: rgba(0, 0, 0, 0.65);
  opacity: 1 !important;
  backdrop-filter: blur(1px);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0rem 1rem;
}

.offcanvas .nav-logo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0rem 1rem;
  padding: 1rem 0 0.8rem 0;
}

.offcanvas hr {
  background: var(--light);
  border-color: var(--light);
  opacity: 0.5;
  height: 1px;
  border-width: 1px;
  width: 100%;
  max-width: 100%;
}

/*********************
OFFSCREEN NAVIGATION STYLING
**********************/
.nav-darkmode .btn-close {
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23262626'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");*/
}

.nav-darkmode.offcanvas {
  background: var(--light);
  background: var(--primary);
  color: var(--light);
}


.nav-darkmode .offcanvas-backdrop {
  background: rgba(0, 0, 0, 0.65);
  opacity: 1 !important;
  backdrop-filter: blur(1px);
}

.nav-darkmode .offcanvas-header {
  margin: 0;
  position: absolute;
  width: auto;
  right: 10px;
  top: 10px;
  border: 0;
}

.nav-darkmode .offcanvas-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 3rem 0rem rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 5;
}

.nav-darkmode.offcanvas .nav-logo {
  margin: 0;
  padding: 1rem 0 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 3rem 0 0 0rem rgba(0, 0, 0, 0.1);
}

.nav-darkmode.offcanvas hr {
  background: var(--light);
  border-color: var(--light);
  opacity: 0.5;
  height: 1px;
  border-width: 1px;
  width: 100%;
  max-width: 100%;
}

/*top level offcanvas items*/

.nav-darkmode.offcanvas ul {
  list-style-type: none;
  margin: 0.5rem 0rem;
  padding: 0;
}

.nav-darkmode.offcanvas ul.nav-items li {
  margin: 0.25rem 0;
}

.nav-darkmode.offcanvas ul.nav-items svg {
  height: 25px !important;
  margin: 0px 5px 5px 0;
  transition: 0.3s;
  fill: color-mix(in srgb, var(--light), black 25%);
}

.nav-darkmode.offcanvas ul.nav-items li a {
  font-family: Quincy, serif;
  text-decoration: none;
  font-size: 2rem;
}

.nav-darkmode.offcanvas ul.nav-items li a:hover {
  padding-left: 0.3rem;
}

.nav-darkmode.offcanvas ul.nav-items li a svg {
  fill: var(--light) !important;
}

.nav-darkmode.offcanvas ul.nav-items li a:hover svg {
  padding-right: 0.3rem;
  fill: var(--light);
}

/*collapsed top level offcanvas items*/
.nav-darkmode.offcanvas ul.collapse-items {
  margin-bottom: 1rem;
}

.nav-darkmode.offcanvas ul.collapse-items li {
  margin: 0 2rem;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.5);*/
  border-bottom: 0;
  padding: 0.1rem 0;
}

.nav-darkmode.offcanvas ul.collapse-items li a {
  font-family: 'Open Sans', open sans, helvetica, sans-serif !important;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
}

.nav-darkmode.offcanvas ul.collapse-items li a:hover {
  padding-left: 0.35rem;
}

.nav-darkmode.offcanvas ul.collapse-items li a svg {
  width: 15px;
}

.nav-darkmode.offcanvas ul.collapse-items li a:hover svg {
  padding: 0;
  margin-right: 0.3rem;
  fill: var(--light);
  width: 15px;
}

/*secondary nav in sidebar*/

ul.secondary-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.secondary-nav li {
  font-size: 0.9rem;
  margin: 0.1rem 1rem 0.1rem 0;
  display: inline-block;
}

ul.secondary-nav li a {
  text-decoration: none;
  opacity: 0.75;
}

.portal-menu {
  min-width: 360px;
  max-width: 500px;
  padding: 0;
  top: -3px !important;
  left: -150px;
  border: 0;
  border-radius: 0rem 0rem 1rem 1rem;
  z-index: 1500 !important;
}

.portal-menu a {
  height: 200px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
}

.portal-menu a:hover {
  /*background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, var(--tertiary-tint-03) 100%);*/
  text-decoration: none;
}

.portal-menu .subtitle {
  transition: 0.3s;
}


.portal-menu a:hover .subtitle {
  color: var(--accent02);
}

.portal-menu .icon-circle {
  border: 1px solid var(--primary);
  border-radius: 100%;
  height: 55px;
  width: 55px;
  margin: 5px auto;
  text-align: center;
  font-size: 2em;
  padding-top: 0px;
}

.portal-menu a:hover .icon-circle svg {
  animation: float 1.5s infinite;
  max-height: 25px;
}


/**** individual sale pages navigation ***/

.sale-page-navbar {
  transition: all 200ms linear;
  margin-top: 74px;
  padding: 0;

  background: var(--light);
  color: var(--primary);
  box-shadow: 0 0 0.8rem 0rem rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--primary-tint-03);
}

.sale-page-navbar a {
  font-weight: bold;
  opacity: 0.9;
  font-size: 0.9rem;
  transition: 0.3s;
  padding: 1rem 0 1rem 0;
  margin: 0 10px 0 10px;
  text-decoration: none;

  color: var(--primary);
}

.sale-page-navbar a:hover,
.sale-page-navbar a:focus,
.sale-page-navbar a:focus-visible {
  color: var(--primary-shade-01) !important;
  opacity: 1 !important;
  background: none;
}


.navbar-toggler {
  background: var(--primary-shade-01);
  border: 0px solid var(--light);
}

.navbar-toggler,
.navbar-toggler:focus {
  outline: 0;
  box-shadow: 0 0 0 !important;
}


.sale-page-navbar .navbar-brand,
.sale-page-navbar .navbar-text {
  /*sale name*/
  font-family: 'Open Sans', Open Sans, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 1;
}

.sale-page-navbar .navbar-text {
  /*fixes so the sale name will wrap*/
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 5px;
}

.sale-page-navbar a:hover,
.sale-page-navbar a:focus,
.sale-page-navbar a:focus-visible {
  color: var(--light);
  opacity: 1 !important;
}

.sale-page-navbar a.active {
  color: var(--light) !important;
  opacity: 1 !important;
}

/* dropdown in sales page navbar ***/

.sale-page-navbar .dropdown-menu {
  background: var(--light);
  color: var(--primary);
  border: 0;
  padding: 0.5rem;
  box-shadow: 0 0 0.8rem 0rem rgba(0, 0, 0, 0.1);
}

.sale-page-navbar .dropdown-menu li {
  /*border-bottom: 1px solid var(--gray);*/
}

.sale-page-navbar .dropdown-menu li:last-child {
  border: 0;
}

.sale-page-navbar .dropdown-menu li a,
.sale-page-navbar .dropdown-menu li a:hover {
  color: var(--primary);
}

.sale-page-navbar .dropdown-item {
  /*dropdown link in sale nav*/
  font-size: 0.85rem;
  margin: 0;
  padding: 0.5rem 0.5rem;
}


/*** mobile dropdown only***/
.sale-page-navbar .collapse.show {
  transition: 0.3s;
  background: var(--light);
  color: var(--primary);
}

.sale-page-navbar .collapse.show a {
  color: var(--primary);
}

/*** alternate nav styling with a searchbar, testing. visible for review on search.php ***/
.nav-btn-alt {
  padding: 1rem 0.35rem !important;
}

.nav-btn-alt div {
  margin-top: 0.25rem !important;
}

.mainnav .search-btn {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--primary-tint-01) !important;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  text-align: left;
  width: 100%;

  font-family: 'Open Sans', Open Sans, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.mainnav .search-btn svg {
  margin: -2px 10px 0px 5px;
  max-height: 15px;
}

/***************************
PROMOTED / FEATURED BOTTOM
****************************/
.promoted-bottom {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0% 40%, var(--primary) 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
  }
}

/***************************
SITEWIDE - HEADERS
****************************/
.home-header {
  background: url(../img/bg-img-02.jpeg) no-repeat center center;
  background-size: cover;
  padding-top: 74px;
}

.interior-header {
  background: url(../img/bg-img.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 74px;
}

/* if the page has the sale navbar, changes the padding of the header text */
body:has(.sale-page-navbar) .interior-header {
  padding-top: 124px;
}

.interior-header svg {
  fill: var(--light);
  opacity: 0.65;
  max-width: 50px;
  margin: 1rem auto;
}

.interior-header p {
  margin-top: 0.25rem;
}

.landing-header-container {
  /*margin-top: 74px;*/
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0% 40%, var(--primary) 40% 100%);
  padding: 2rem 0 0.5rem 0;
}

.landing-header {
  position: relative;
  background: url(../img/bg-img.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 8px;
}

.landing-header-textoverlay {
  border-top: 5px solid var(--primary);
  background: var(--light);
  border-radius: 0 0px 8px 0px;
  padding: 1.5rem;
  position: absolute;
  left: -12px;
}

.archive-header {
  background: url(../img/bg-img-09.jpg) no-repeat center center;
  background-size: cover;
}

.allsales-header {
  background: url(../img/bg-img-02.jpeg) no-repeat center center;
  background-size: cover;
}

.sales-header {
  /*margin-top: 120px;*/
  background: url(../img/bg-img-02.jpeg) no-repeat center center;
  background-size: cover;
}

/* fancy header on homepage, negative margins */
.home-fancy-header {
  background:
    /* bg overlay */
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%),

    /*header image*/
    url(../img/fancy/home-fancy-header.jpg) top center no-repeat fixed;
  background-size: cover;
  min-height: 600px;
}

.home-fancy-header .text-overlay {
  margin-top: 0px;
}

.sale-fancy-header {
  background:
    /* bg overlay */
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%),

    /*header image*/
    url(../img/card-img-april.jpg) center center no-repeat scroll;
  background-size: cover;
  min-height: 600px
}

.sale-fancy-header .text-overlay {
  padding-top: 0px;
}

/* sales fancy header, if a featured sale enroaches into it -- fixed the centering of the text */
body:has(.featured-item) .home-fancy-header .text-overlay {
	padding-top: 80px;
}

body:has(.featured-item) .home-fancy-header .text-overlay {
  margin-top: -80px;
}

@media (max-width: 1023px) {

  /*tablet and mobile, changed background attachment so it works on ios*/
  .sale-fancy-header,
  .home-fancy-header {
    background-attachment: scroll !important;
  }
}

@media (max-width: 600px) {

  /*mobile fixes, makes header shorter and overlapping block less prominent */
  .sale-fancy-header,
  .home-fancy-header {
    min-height: 400px;
  }

  .home-fancy-header .text-overlay,
  .sale-fancy-header .text-overlay {
    margin-top: -20px;
  }

  .home-fancy-header .vh-75 {
    min-height: 50vh;
  }

  body .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*** featured item - overlaps header. used on homepage and sales homepages. ***/
.featured-item {
  margin-top: -110px;
  z-index: 10;
  position: relative;
  border-radius: 0;
}

.fancy-promoted-card {
  min-height: 500px;
  border-radius: 0;
  border-radius: 0px;
}

.fancy-promoted-card .outline-overlay {
  outline: 1px solid var(--light);
  outline-offset: -10px;
  outline-radius: 0;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.seeking-entries {
  background: url(../img/fancy/presalebg-seekingentries.jpg) no-repeat center center / cover;
}

.catalog-available {
  background: url(../img/fancy/presalebg-catalogsavailable.jpg) no-repeat center center / cover;
}

.sale-live {
	background: url(../img/bg-img-02.jpeg) no-repeat center center / cover;
}


/*********************
HOMEPAGE SPECIFIC (keeneland.com/sales)
**********************/
/*** past sales section on homepage ***/
.home-results {
  background: #000;
  transition: 0.3s;
}

.home-results img {
  filter: saturate(0);
  opacity: 0.8;
  transition: 0.6s;
}

.home-results:hover img {
  filter: saturate(1);
  opacity: 1;
}

/*** styling for homepage rotating text. ***/
.vertical-hr {
  background: var(--gray);
  border: 1px solid var(--gray);
  height: 100px;
  width: 1px;
}

.swiper.vertical-text-spin {
  display: inline-block !important;
  width: auto;
  height: calc(1lh + 4px);
  align-items: baseline;
  margin: 0.25rem auto !important;
  font-size: 3rem;
}

.swiper.vertical-text-spin .swiper-slide {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 25px solid;
  border-image: url(../img/fancy/underline.jpg) 100 stretch;
}

@media (max-width: 600px) {
  .swiper.vertical-text-spin {
    font-size: 2rem;
  }
}

/*** 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);
}


/***************************
BASIC PAGES / ARTICLES
****************************/
.article-header {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding-top: 74px;
}

.article-header-imgbg {
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0% 65%, var(--primary) 65% 100%);
}

.weathervane-bg {
  /*used behind news sections on homepage and individual sales pages */
  position: relative;
  background:
    var(--light) /*url(../img/fancy/weathervane-whitebg.jpg) no-repeat bottom left*/;
  background-size: 600px;
  min-height: 650px;
}

/***************************
SEARCH / FILTER BOXES (creates overlap, currently only used on archive, may be used on catalog one day)
****************************/
.search-filter {
  margin-top: -2.5vh;
  background: var(--accent01);
  border-radius: 10px;
  position: relative;
  z-index: 10;
  padding: 1rem;
  box-shadow: var(--bs-box-shadow);
}

/***************************
SALES HOMEPAGE
****************************/
.home-archives {
  background: var(--primary);
  padding: 8vh 0;
}

.sale-quote {
  padding: 5.5rem 0;
}

.sale-quote blockquote {
  max-width: 100%;
}

.sale-quote blockquote p {
  font-size: 1.8rem;
  line-height: 2.3rem;
}

.sale-quote blockquote:before {
  margin-top: -2rem;
}

/*styles cobranded sales logos - see cobrandsale-index.php. concept only.*/
.cobrand-logo {
  border-radius: 100%;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  outline: 5px solid var(--primary-tint-35);
  outline-offset: -5px;
}

.cobrand-logo img {
  height: auto;
  width: 100%;
  max-width: 80px;
}

.cobrand-info {
  margin-top: -2.5vh;
  background: var(--primary);
  border-radius: 10px;
  position: relative;
  z-index: 10;
  padding: 1rem;
  box-shadow: var(--bs-box-shadow);
}

/***************************
INDIVIDUAL SALE - ARCHIVED SALES HOME
****************************/
.archive-sale-page .mainnav {
	background: #115740!important;
}

.archive-sale-page .promoted-bottom {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0% 40%, #115740 40% 100%);
	padding: 2rem 0;
}

/*****
THE FOLLOWING FIXES APPLY FOR THE PATTERNS ON ARCHIVE STATE SALES:
*****/

.archive-sale-page .promoted-bottom .bg-pattern-accent-01 {
  /* diamonds */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpolygon fill-rule='evenodd' points='8 4 12 6 8 8 6 12 4 8 0 6 4 4 6 0 8 4'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.archive-sale-page .promoted-bottom .bg-pattern-accent-02 {
  /* horse heads */
  background-image: url("../img/svg-patterns/pattern-02.svg") !important;
  background-size: 60px !important;
}

.archive-sale-page .promoted-bottom .bg-pattern-accent-03 {
  /*circle diamonds, louis v style*/
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0C6.716 0 0 6.716 0 15c8.284 0 15-6.716 15-15zM0 15c0 8.284 6.716 15 15 15 0-8.284-6.716-15-15-15zm30 0c0-8.284-6.716-15-15-15 0 8.284 6.716 15 15 15zm0 0c0 8.284-6.716 15-15 15 0-8.284 6.716-15 15-15z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E") !important;
}

.archive-sale-page .promoted-bottom .bg-pattern-accent-04 {
  /*vertical stripe*/
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='1' viewBox='0 0 40 1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v1H0z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E") !important;
}

.archive-sale-page .promoted-bottom .bg-pattern-accent-05 {
  /*gavels*/
  background-image: url("../img/svg-patterns/pattern-05.svg") !important;
  background-size: 60px !important;
}

.archive-sale-page .promoted-bottom .bg-pattern-accent-06 {
  /* scalloped boxes */
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='84' viewBox='0 0 84 84' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M84 23c-4.417 0-8-3.584-8-7.998V8h-7.002C64.58 8 61 4.42 61 0H23c0 4.417-3.584 8-7.998 8H8v7.002C8 19.42 4.42 23 0 23v38c4.417 0 8 3.584 8 7.998V76h7.002C19.42 76 23 79.58 23 84h38c0-4.417 3.584-8 7.998-8H76v-7.002C76 64.58 79.58 61 84 61V23zM59.05 83H43V66.95c5.054-.5 9-4.764 9-9.948V52h5.002c5.18 0 9.446-3.947 9.95-9H83v16.05c-5.054.5-9 4.764-9 9.948V74h-5.002c-5.18 0-9.446 3.947-9.95 9zm-34.1 0H41V66.95c-5.053-.502-9-4.768-9-9.948V52h-5.002c-5.184 0-9.447-3.946-9.95-9H1v16.05c5.053.502 9 4.768 9 9.948V74h5.002c5.184 0 9.447 3.946 9.95 9zm0-82H41v16.05c-5.054.5-9 4.764-9 9.948V32h-5.002c-5.18 0-9.446 3.947-9.95 9H1V24.95c5.054-.5 9-4.764 9-9.948V10h5.002c5.18 0 9.446-3.947 9.95-9zm34.1 0H43v16.05c5.053.502 9 4.768 9 9.948V32h5.002c5.184 0 9.447 3.946 9.95 9H83V24.95c-5.053-.502-9-4.768-9-9.948V10h-5.002c-5.184 0-9.447-3.946-9.95-9zM50 50v7.002C50 61.42 46.42 65 42 65c-4.417 0-8-3.584-8-7.998V50h-7.002C22.58 50 19 46.42 19 42c0-4.417 3.584-8 7.998-8H34v-7.002C34 22.58 37.58 19 42 19c4.417 0 8 3.584 8 7.998V34h7.002C61.42 34 65 37.58 65 42c0 4.417-3.584 8-7.998 8H50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

/***************************
INDIVIDUAL SALE - ABOUT THIS SALE
****************************/
.sale-schedule-container {
  max-width: 800px;
}

.sale-schedule-row {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  max-width: 800px;
}

.sale-schedule-row.dark-day {
  background: color-mix(in srgb, var(--dark), white 85%)
}

/**************
INDIVIDUAL SALE - WATCH LIVE
***************/
/*** teaser on sales homepage styling ***/
.watch-live-teaser .hip-in-ring {
  font-size: 2.5rem;
  font-family: Quincy, serif;
  width: 150px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: 100%;
  margin: 1rem auto;
}

.watch-live.now-live {
  padding-top: 124px;
  min-height: 100vh;
  background: linear-gradient(var(--primary-shade-02), black 90%);
  color: var(--light);
}

.watch-live.off-air {
  padding-top: 124px;
  min-height: 100vh;
  background: linear-gradient(var(--dark), black 90%);
  color: var(--gray);
}

.watch-live .alert {
  background: var(--primary) !important;
  color: var(--light);
}

.watch-live .alert svg {
  fill: var(--light) !important;
}

.watch-live .outs-marquee {
  background: var(--dark);
  border-radius: 10px;
  padding: 0.5rem 0;
}

.watch-live .outs-marquee strong {
  margin: 0 15px;
}

/*** WATCH LIVE UPDATES, REMOVING SCROLLS, 3/5 ***/
.watch-live .watchlive-outs {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
	margin: 15px auto;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.watch-live .watchlive-outs span {
	display: block;
	margin: 10px 25px 10px 0;
	min-width: 40px;
}

.watch-live .vertical-scroll {
	max-height: 180px;
	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: var(--tertiary) var(--dark);
	margin: 10px 0;
	background: rgba(255,255,255,0.035);
}

/*** end watch live updates 3/5 ***/

.watch-live .list-group-item {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.2);
}

.watch-live .list-group-item span {
  text-align: right;
}

.watch-live .horse-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0.25rem;
}

.watch-live .vertical-marquee {
  /*used for outs and updates, can be removed when react-ified*/
  max-height: 250px;
  overflow: auto;
}


.now-live .video {
  /*adds glow effect to video when sale is live*/
  box-shadow: 0 0 1rem 0.5rem color-mix(in srgb, var(--primary), black 60%);
  animation: live-glow 15s infinite;
  border-radius: 10px;
}

/*** not live styling ***/
.off-air .video {
  background: color-mix(in srgb, var(--dark), black 15%);
  border-radius: 0rem;
  color: var(--gray);
}

.off-air .video>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.off-air .alert {
  background: var(--info);
}

.off-air .live-icon {
  fill: var(--gray) !important;
}

/*** ADDED STYLE ELEMENTS, 1/30/2025 ***/
/*.sale-graduates {
	position: relative;
}

.absolute-grads-logo {
	width: 150px;
  background: yellow;
  position: absolute;
  bottom: -15%;
}*/

.grads-logo {
  position: relative;
  max-width: 150px;
  z-index: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.grads-logo .outer {
  opacity: 0.5;
}

.grads-logo .outer img {
  /**spinny bit**/
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.grads-logo .inner {
  /**grads image**/
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.grads-logo .inner img {
  max-width: 75px;
}

/******************************
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%;
  }
}

/*************************
STATS AND LEADERS UPDATES, 5/13
**************************/
.stats-leaders {
	background: var(--accent01) url(../img/bg-img-02.jpeg) no-repeat center center;
	background-size: cover;
	position: relative;
}

.stats-leader-gradient-overlay {
	background: linear-gradient(159deg,rgba(244, 241, 240, 1) 50%, rgba(244, 241, 240, 0.5) 100%);
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.stats-leaders .nav {
	border-bottom: 1px solid var(--table-border);
}