  /*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS, USE WITH CAUTION.
*/

@media (min-width: 1200px) {
.site-navigation.modal .modal-dialog .modal-content {
border: none;
background-color: none;
}
}

/* Circular text background with stroke */
.text-highlight {
  display: inline-block;           /* keeps it from stretching full-width */
  background-color: #5EB4E5;       /* light blue background */
  border-radius: 50%;              /* 50% makes it fully circular when height ≈ width */
  padding: 0.35em 0.7em;           /* padding — adjust as needed */
  line-height: 1.4;                /* helps with vertical centering */
  font-weight: 900;
  color: #25245B;
  outline: 2px solid #25245B;      
  outline-offset: 3px;             
  transition: all 0.3s ease;       /* for hover effects */
}

.text-highlight:hover {
  background-color: #83d2ff;           /* slightly brighter blue */
  outline: 3px solid #25245B;          /* thicker outline */
  outline-offset: 5px;                 /* push it further out */
  box-shadow: 0 0 15px rgba(30, 64, 175, 0.5);  /* soft blue glow around everything */
}

/* Circular text background with stroke - 2nd go */
.custom-numbered-list {
  display: inline-block;           /* keeps it from stretching full-width */
  background-color: #5EB4E5;       /* light blue background */
  border-radius: 50%;              /* 50% makes it fully circular when height ≈ width */
  padding: 0.35em 0.7em;           /* padding — adjust as needed */
  line-height: 1.4;                /* helps with vertical centering */
  font-weight: 900;
  color: #25245B;
  outline: 2px solid #25245B;      
  outline-offset: 3px;             
  transition: all 0.3s ease;       /* for hover effects */
  float: left;
  margin: 0 1.2em 0.6em 0;	   /* right and bottom margins */
}

.custom-numbered-list:hover {
  transform: scale(1.06);
  background-color: #83d2ff;           /* slightly brighter blue */
  outline: 3px solid #25245B;          /* thicker outline */
  outline-offset: 5px;                 /* push it further out */
  box-shadow: 0 0 15px rgba(30, 64, 175, 0.5);  /* soft blue glow around everything */
}

/* Image display options */
/* ---------------------------------------------------------------------------------------------- */

.image-row {
  display: flex;
  width: 100%;
  gap: 10px;
}

.img-wrap {
  flex: 1 1 0;
  display: flex;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-style: solid;
  border-radius: 12px;
  border-color: #25245B;
  border-width: 3px;
}

.img-wrap:first-child {
  flex: 2;
}
.img-wrap:last-child {
  flex: 1;
}

/* Mobile / small screens */
@media (max-width: 768px) {
  .img-wrap:last-child {
    display:none;
  }
}

/* Sticky Container */
/* ---------------------------------------------------------------------------------------------- */

.sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 4;
  margin-top: -280px; /* match or approximate header height */
  padding-top: 280px; /* preserves readable spacing */
}

/* Mobile / small screens */
@media (max-width: 768px) {
  .sticky-container {
    margin-top: 15px;    /* remove negative margin */
    padding-top: 15px;   /* remove extra padding */
  }
}

/* Percentage Bar */
/* ---------------------------------------------------------------------------------------------- */

.percentage-bar {
  width: 100%;
  height: 16px;
  background: #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.percentage-bar-fill {
  width: calc(var(--progress) * 1%);
  height: 100%;
  background: var(--color, #4a90e2);
  border-radius: 8px;
}