.hero-bg{
  position: relative;                         /* anchor for absolute overlay */
  min-height: clamp(460px, 60vh, 880px);      /* gives the photo a height to center against */
  background: url('../img/hero11.jpg') center top 30%/cover no-repeat; /* or your path */
}
.knsPracticeSelectTitle{
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.8px;
  color: #1E293B;
}

.knsSolidBanner{
    background:#61A2F9;
    margin-top: -1.5rem;
}

.practice-bg {
  position: relative;
  min-height: clamp(460px, 80vh, 980px); /* keeps a nice hero height */
  background: url('../img/practice2.jpg') center / cover no-repeat;
}

.practice-bg {
  margin-top: -1rem; /* cancels mb-3 for mobile */
}

.seminars-bg {
  margin-top: -1rem; /* cancels mb-3 for mobile */
}


.seminars-bg {
  position: relative;
  min-height: clamp(460px, 60vh, 680px); /* keeps a nice hero height */
  background: url('../img/seminarsHero.jpg') center top 25%/ cover no-repeat;
}


@media (min-width: 992px) {
  .practice-bg {
    margin-top: -1.5rem; /* cancels mb-lg-4 for large screens */
  }
  .seminars-bg {
    margin-top: -1.5rem; /* cancels mb-lg-4 for large screens */
  }
}

.practice-svg {
  width: 30%;
  height: auto;
  max-height: 160px;
  padding: 2rem; /* adjust this padding as needed */
  object-fit: contain; /* keeps aspect ratio without cropping */
}


/* Optional: dark overlay for readability */
/* .practice-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); 
} */


@media (height > 1080px) {
  min-height: clamp(460px, 70vh, 880px);      
}

@media (height > 1080px) {
  .hero-bg{
    min-height: clamp(460px, 70vh, 880px);      /* gives the photo a height to center against */
  }
  .hero-ribbon{
    margin-top: 3rem !important;
  }
}

@media (height < 880px) and (min-width: 992px) and (orientation: landscape) {
  #logo{
    width: 180px !important;
    height: 116px !important;
  }
}

/* adjusts tagline on landscape mobile */
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .hero-overlay{
    transform: translateY(-80%) !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .seminarFinderWrapper{
      padding: 3rem !important;
  }
}

@media (max-width: 767.98px) { 
  .hero-bg{
    background: url('../img/hero11.jpg') right 40% top 30%/cover no-repeat; 
  }  
}

/* iPad landscape override */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .hero-bg {
    min-height: clamp(360px, 50vh, 880px);
  }
  .heroCallout {
    font-size: 54px !important;
    line-height: 65px !important;
}
}


@media (max-width: 991.98px) {

  :root {
      --ribbon-overlap: 20%; /* change this to tweak the overlap */
  }
  .practice-bg{
    background: url('../img/practiceMobile4.jpg') 50% 110px / cover no-repeat;
  }
  .seminars-bg{
    background: url('../img/seminarsHeroMobile.jpg') 50% 110px / cover no-repeat;
  }
}

@media (min-width: 992px) {

  :root {
      --ribbon-overlap: 10%; /* change this to tweak the overlap */
  }
  .practiceHighlight {
    color: #ffffff !important; /* or your desired color */
  }

}

/* border line in bottom hero ribbon */
@media (min-width: 992px) {
  .border-lg-end {
    border-inline-end: var(--bs-border-width) solid var(--bs-border-color) !important;
  }
}


@media (max-width: 991.98px) {
  .hero-bg {
    position: relative;
    /* add bottom padding so the ribbon overlap doesn't hide hero content */
    padding-bottom: var(--ribbon-overlap);
    z-index: 0; /* sits behind the ribbon */
  }

  /* ensures the overlay stays on top */
  .hero-bg .hero-overlay {
    position: absolute;
    z-index: 1;
  }

  /* pull the ribbon upward and place it above the hero */
  .hero-ribbon {
    position: relative;
    margin-top: calc(-1 * var(--ribbon-overlap));
    z-index: 3; /* in front of the hero/overlay */
  }
}

@media (min-width: 992px) {
  .hero-ribbon {
    /* between -32px and -96px, prefers -6vh */
    margin-top: clamp(-96px, -6vh, -32px);
  }
}


/* overlay that fills the hero and vertically centers its contents */
.hero-overlay{
  position: absolute;
  inset: 0;                                   
  display: flex;
  align-items: center;                        
  z-index: 3;                                 
  pointer-events: none;                      
}
.hero-overlay .container{ pointer-events: auto; } 

/* If you have a dark gradient via ::before, keep it *under* the overlay */
.hero-bg::before{ z-index:1; }
.hero-overlay{ z-index:2; }

/* Override container widths */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1600px; /* adjust this widen overall layout at xxl and above*/
}

/* Global modal width override */
.modal-dialog {
  max-width: 900px; /* Default is 500–600px depending on breakpoint */
}


html, body {
    /*height 100 on body conflicts with sticky-top so removing for now*/
    /*height: 100%;*/
    margin: 0;
    display: flex;
    flex-direction: column;
}

main{
    flex: 1;
}

form{
    display: contents;
}
/* Force equal width buttons */
.equal-btn {
  flex: 1 1 0;
  text-align: center;
}
/*
 * Ovveride Bootstrap success class with orange
 */

 :root {
  --bs-success: #FB9516 !important;
  --bs-success-rgb: 251, 149, 22 !important;
}

.knsThin {
    font-family:Montserrat,Arial,sans-serif !important;
    letter-spacing:-1px !important;
    font-weight: 500;
    color:#555555 !important
}

/*grey color that matches logo*/
.knsGrey{
    color: #6d6d6d !important;
}

/*to help support buttons from the previous design*/
.btn-primary-kns{   
    background: #FB9516 !important;
    border-radius: 8px !important;
    color: white !important;
    /*height: 54px;*/
}
.btn-primary-kns:hover{   
    background: #FB9516 !important;
    border-radius: 8px !important;
    color: white !important;
    filter: brightness(110%);
}

.btn-secondary{
    border-radius: 8px !important;
    color: white !important;
    /*height: 54px;*/
}



.formBorder {
    padding:10px !important;
    border:solid 1px #dddddd !important;
    border-radius:5px !important;
}

.smallLabel {
    font-size: 8pt;
    color: Gray;
}

/*place div around asp:CheckBox with class='cbWrap' to fix checkbox wrapping*/
.cbWrap input {    
    float: left;
}

.cbWrap label {    
    display:block;
    margin-left:20px;
    position:relative;
    top:-6px;
}


.text-success {
  color: var(--bs-success) !important;
}

.bg-success {
  background-color: var(--bs-success) !important;
}


.bg-success {
  background-color: var(--bs-success) !important;
}

.btn-success {
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background-color: #e68414 !important; /* Slightly darker for interaction */
  border-color: #d77a12 !important;
}


/*
 * Custom CSS
 */

body {
  font-family: 'Inter', sans-serif;
  overflow-anchor: none;
}


.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
  transition: opacity 1s ease-out;
}

:root {
  --bs-body-bg: var(--bs-gray-100);
}

#logo {
  width: 180px;
  height: 116px;
  transition: width 0.2s ease, height 0.2s ease;
}

/* 
#logo {
  transition: 0.2s ease;
} */

.navbar{
  background: #FFFFFF !important;
  box-shadow: 0px 4px 8px 2px rgba(29, 58, 83, 0.1) !important;
}

.navbar-toggler-icon{
  width: 2.5rem;
  height: 2.5rem;
}

@media (max-width: 1199.98px) { 
  #logo {
    width: 115px;
    height: 78px;
  }
}

@media (max-width: 991.98px) { 
  #logo {
    width: 68px;
    height: 46px;
  }
}

.heroIMG{
  border-radius: 32px;
  /*border: white solid 1px;*/
}

@media (max-width: 1199.98px) { 
  .heroIMG {
    width: 90%;
  }
}

[data-bs-theme=dark] .heroIMG {
  border: rgba(255, 255, 255, 0.20) solid 1px;
}

[data-bs-theme=dark] .modal-content {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .form-control {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .form-select {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .seminarInput {
  background-color: #fff !important;
}

[data-bs-theme=dark] .offcanvas-header {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .offcanvas-body {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .cartContainer {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .list-group-item {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .heroCallout {
  color: white !important;
}

[data-bs-theme=dark] .knsProgramsTitle {
  color: white !important;
}

[data-bs-theme=dark] .knsCardTitle {
  color: white !important;
}

[data-bs-theme=dark] .heroCalloutContext {
  color: rgb(248, 249, 250) !important;
}

[data-bs-theme=dark] .knsProgramTitleContext {
  color: rgb(248, 249, 250) !important;
}

[data-bs-theme=dark] .seminarFinderTitle {
  color: rgb(248, 249, 250) !important;
}

[data-bs-theme=dark] body {
  background-color: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .knsCard {
  background-color: rgb(43, 48, 53) !important;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.20);
}

[data-bs-theme=dark] .knsProductCard {
  background-color: rgb(43, 48, 53) !important;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.20);
}

[data-bs-theme=dark] .pricingCard {
  background-color: rgb(43, 48, 53) !important;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.20);
}

[data-bs-theme=dark] .knsCatalogPrice {
  color: white !important;
}

[data-bs-theme=dark] .knsProductSection {
  color: white !important;
}

[data-bs-theme=dark] .custom-overlay {
  background: rgb(43, 48, 53, 0.85) !important;
}

[data-bs-theme=dark] .knsExamCardTitle {
  color: white !important;
}

[data-bs-theme=dark] .knsExamCardSecondaryTitle {
  color: white !important;
}

[data-bs-theme=dark] .knsInfoCardTitle {
  color: white !important;
}

[data-bs-theme=dark] .knsInfoCardBody {
  color: white !important;
}

[data-bs-theme=dark] .navItem {
  color: white !important;
}

[data-bs-theme=dark] .practice {
  color: rgb(248, 249, 250) !important;
}

[data-bs-theme=dark] .knsToggler.navbar-toggler {
  border-color: rgb(248, 249, 250) !important;
  background: none;
}

[data-bs-theme=dark] .knsToggler.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

[data-bs-theme=dark] .knsFooter {
  background-color: rgb(43, 48, 53) !important;
}
[data-bs-theme=dark] .knsFooterTitle {
  color: white !important;
}
[data-bs-theme=dark] .knsMenuLabel {
  color: white;
}
[data-bs-theme=dark] .knsThin {
  color: white !important;
}
[data-bs-theme=dark] knsMenuLabel:hover {
    color: #64A7F5 !important;
}
[data-bs-theme=dark] .knsFooterLink {
  color: white ;
}
[data-bs-theme=dark] .knsCopyright {
  color: white !important;
}

[data-bs-theme=dark] .card {
    --bs-card-bg: unset;
}

[data-bs-theme=dark] .text-dark {
    color:white !important;
}

[data-bs-theme=dark] a.knsFooterLink:hover{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #64A7F5;
  cursor: pointer;
}

[data-bs-theme=dark] .knsFooterIcons {
  fill: white !important;
}


[data-bs-theme=dark] .knsAccordion {
  --bs-accordion-bg: rgb(43, 48, 53) !important;
}

[data-bs-theme=dark] .knsTable {
  --bs-table-bg:rgb(43, 48, 53) !important;
  color: #ffffff !important;
  border-color: #333;
}
[data-bs-theme=dark] .practiceIcon {
  fill: white !important;
}

[data-bs-theme=dark] .knsHeroLink{
  color: white !important;
}


[data-bs-theme=dark] .knsMenuCard{
  background-color: rgb(43, 48, 53) !important;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.20);
}


[data-bs-theme=dark] .knsMenuCard .knsAccountLink{
  color: white !important;
}
[data-bs-theme=dark] .btn-outline-dark{
  color: white !important;
  border-color: white !important;
}

/*
 * Nav KNS 2K24
 */

.fixedNotification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  border-radius: 0;
}

/* Push the page content down */
.pageContent {
  margin-top: 60px; /* Adjust based on alert height */
}

.knsInput{
  background-color: white !important;
}

.navItem {
  display: inline-block;
  position: relative;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #1E293B !important;
  margin-right: 48px;
}

.navItem:hover{
  color: #FB9516 !important;
}

.navItem::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 5px;
  bottom: 0;
  left: 0;
  border-bottom: 5px solid #FB9516 !important;
  transform-origin: bottom center;
  transition: transform 0.00s ease-out;
}

.navItem:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

.heroHighlight {
  display: inline-block;
  background-image: url("../img/highlight.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px 0;
  margin: -10px 0;
  background-position: center bottom;
  text-shadow:none !important;
}


/* We help you pass the national exams */
.heroCallout{
  font-weight: 700;
  font-size: 62px;
  line-height: 75px;
  letter-spacing: -0.8px;
}
@media (max-width: 1399.98px) { 
  .heroCallout {
    /* font-size: 52px; */
  }
  .heroHighlight{
    /* padding: 2px 0 !important; */
  }
 }
@media (max-width: 1199.98px) { 
  .heroCallout {
    /* font-size: 40px; */
    line-height: normal;
  }
  .heroHighlight{
    padding: 9px 0 !important;
  }
  .navItem{
    font-size: 16px !important;
  }
  .buttonText{
    font-size: 16px !important;
  }
}

@media (max-width: 991.98px) { 
  .heroCallout {
    font-size: 48px;
  }
  .navItem{
    font-size: 20px !important;
  }
  .buttonText{
    font-size: 20px !important;
  }
}

.seminarSwoosh{  
  display: inline-block;
  background-image: url("../img/highlight.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: -10px 0;
  background-position: center bottom;
  padding-bottom: 3px !important;
}
@media (max-width: 991.98px) { 
  .seminarSwoosh{
    padding-bottom: 0px !important;
  }
}

@media (max-width: 576px) {
  .knsInfoCardTitle{
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .knsInfoCardBody{
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .heroCallout {
    font-size: 33px;
    line-height: 40px;
    letter-spacing: -0.8px;
  }
  .heroCalloutContext{
    font-weight: 500;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: -0.48px;
    color: #64748B;
  }
  .heroHighlight{
    padding: 5px 0 !important;
  }
  .knsHeroBanner {
      height: 180px !important;
  }
  .practice-bg{
    background: url('../img/practiceMobile6.jpg') 50% 90px / cover no-repeat;
  }
  .seminars-bg{
    background: url('../img/seminarsHeroMobile.jpg') 50% 90px / cover no-repeat;
  }
  .buttonText{
    font-weight: 600;
    font-size: 14px !important;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.48px;
    color: #FFFFFF;
  }
  .practice{
    font-size: 14px !important;
  }
  .practiceButton{
    /*height: 42px !important;
    width: 42px !important;*/
  }
  .practiceIcon{
    height: 16px !important;
    width: 16px !important;
  }
  .productButton{
    height: auto !important;
  }
  .knsProgramsTitle{
    font-size: 36px !important;
    line-height: 40px !important;
    padding-bottom: 20px;
  }
}
.heroCalloutContext{
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #64748B;
}

br.responsiveBR {
  display: inline; 
}

  
@media (max-width: 768px) { 
  .knsPracticeTitle{
    font-size: 36px !important;
    line-height: 40px !important;
    padding-bottom: 20px;
  }
}

@media (max-width: 576px) { 
  br.responsiveBR {
    /* display: none;  */
  }
}

.knsHeroLink{
  text-decoration: none;
  color: #1E293B;
}

.buttonText{
  font-weight: 600;
  font-size: 17.5px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #FFFFFF;
}


.btnCatalogText{
  font-weight: 600;
  font-size: 17px;
  line-height: 32px;
  letter-spacing: -0.8px;
  color: #FFFFFF;
}


.btnCatalogTextOutline{
  font-weight: 600;
  font-size: 17px;
  line-height: 32px;
  letter-spacing: -0.48px;
  /* color: #04BD00; */
  color: #FB9516;
}

.btnCartTextOutline{
  font-weight: 600;
  font-size: 17.5px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color:#FB9516;
}


.btn-catalog{
  /* background: #04BD00 !important; */
  background: #FB9516 !important;
  border-radius: 8px;
}

.btn-catalog:disabled{
  color: white !important;
}

.btn-blocked{
    opacity: 0.5;
    pointer-events: none;
}

.btn-blocked.show-modal{
    pointer-events: auto;
    cursor: not-allowed;
}

.btn-catalog:hover{
  color: #fff !important;
  text-decoration: none;
}

.btn-catalog-outline{
  background: #FFFFFF;
  /* border: 1px solid #04BD00; */
  border: 1px solid #FB9516;
  border-radius: 8px;
}

.btn-cart-outline{
  background: #FFFFFF;
  border: 1px solid #FB9516;
  border-radius: 8px;
  /*height: 54px;*/
}

.btn-cart-outline:hover{
  color: #FB9516 !important;
  text-decoration: none;
  border: 1px solid #FB9516;
  border-radius: 8px;
}

.btn-catalog-outline:hover{
  color: #FB9516 !important;
  text-decoration: none;
  border: 1px solid #FB9516;
  border-radius: 8px;
}

.knsCatalogPrice{
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  /* or 115% */
  text-align: center;
  letter-spacing: -0.8px;
  color: #333333;
}

.knsCatalogSalePrice{
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  /* or 115% */
  text-align: center;
  letter-spacing: -0.8px;
  color: #FF0000;
}

.knsCatalogRegularPrice{
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  /* or 115% */
  text-align: center;
  letter-spacing: -0.8px;
  color: #333;
}

.buyButton{
  background-color: #111922!important;
  border-color: #111922 !important;
  color: white;
}
.buyButton:hover{
  color: white;
  background-color: #444444!important;
  border-color: #444444 !important;
}



.productButton{
  background-color: #111922!important;
  border-color: #111922 !important;
  /*height: 54px;*/
}
.productButton:hover{
  color: white;
  background-color: #444444!important;
  border-color: #444444 !important;
  /*height: 54px;*/
}


.btn{
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

}
.btn-finder{
  background-color: #FB9516!important;
  border-color: #FB9516 !important;
  height: 54px;

  border-radius: 12px;
}


.btn-primary{
  background-color: #64A7F5 !important;
  border-color: #64A7F5 !important;
  /*height: 54px;*/
  border-radius: 8px;
}

.btn-dark{
  height: 54px;
  border-radius: 8px;
}

.btn-primary:hover{   
    background-color: #4D8FE0 !important;
    border-color: #4D8FE0 !important;
    /*filter: brightness(110%);*/
}

.btn-primary-orange{
  background-color: #FB9516 !important;
  border-color: #FB9516 !important;
  /*height: 54px;*/
}

/*.heroHighlight {
  display: inline-block;
  background-image: url("../img/highlight.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px 0;
  margin: -10px 0;
  background-position: center bottom
}*/

.practice
{
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #111922;
}

.practiceButton {
  /*height: 54px;*/
  /*width: 54px;*/
    animation-duration: 1500ms;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: button-shadow-throb-blue;
    animation-timing-function: linear;
}

@keyframes button-shadow-throb-blue {
  0% {
    box-shadow:
      0px 0px 0px 0px #007bff57;
  }
  15% {
    box-shadow:
      0px 0px 0px 0px #007bff57;
  }
  30% {
    box-shadow:
      0px 0px 0px 0px #007cff80
    ;
  }
  45% {
    box-shadow:
      0px 0px 0px 5px #007cff80;
  }
  60% {
    box-shadow:
      0px 0px 0px 8px #007cff40;
  }
  75% {
    box-shadow:
      0px 0px 0px 12px #007cff20;
  }
  90% {
    box-shadow:
      0px 0px 12px 12px #007cff00;
  }
  100% {
    box-shadow:
      0px 0px 12px 12px #007cff00;
  }
}

@keyframes button-shadow-throb {
  0% {
    box-shadow:
      0px 0px 0px 0px #fb951657; /* 34% opacity */
  }
  15% {
    box-shadow:
      0px 0px 0px 0px #fb951657;
  }
  30% {
    box-shadow:
      0px 0px 0px 0px #fb951680; /* 50% opacity */
  }
  45% {
    box-shadow:
      0px 0px 0px 5px #fb951680;
  }
  60% {
    box-shadow:
      0px 0px 0px 8px #fb951640; /* 25% opacity */
  }
  75% {
    box-shadow:
      0px 0px 0px 12px #fb951620; /* 12% opacity */
  }
  90% {
    box-shadow:
      0px 0px 12px 12px #fb951600; /* fade out */
  }
  100% {
    box-shadow:
      0px 0px 12px 12px #fb951600;
  }
}


.seminarFinder
{
  background: #FFFFFF;
  /* box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.1); this looks better on mac but doesnt work on windows :( */
  box-shadow: 0px 4px 16px rgba(29, 58, 83, 0.2);
  border-radius: 16px;
  width: 100%;
  border: none !important;
}

.seminarFinderTitle{
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;

  color: #1E293B;
}

.searchIcon{
  margin-top: 38px;
  margin-right: -25px;
}

.seminarGroup{
  margin-top: -25px;
  padding: 15px;
}

.seminarInput{
  border-color: #D9D9D9;
  border-radius: 8px;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  height: 54px;
  color: #85878A;
}

.seminarInput::placeholder{
  color: #85878A;
}

.btnSeminarSeach{
    height: 50px;
}

.btnSeminarBeacon{
    height: 50px;
    animation-duration: 1500ms ;
    animation-fill-mode: both ;
    animation-iteration-count: infinite ;
    animation-name: button-shadow-throb ;
    animation-timing-function: linear ;
}

/* Exam Type */
.seminarLabel{
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1e293b;
  letter-spacing: -0.8px;
  position: relative;
  top: 16px;
  left: 56px;
  /* left: 16px; use this if we go no icons*/

  padding-right: 6px;
  padding-left: 5px;
  /* padding: 0 5px 0 5px; */
  /*z-index: 1;*/
  background-color: white;
}

.seminarLabel:before {
  z-index: -1;
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}


/* Using the :before pseudo-element to add SVG content */
.seminarInput::before {
  display: inline-flex;
  content: '';

  /* Using the background-image and
      its related properties to add
      the SVG content */
  background-image: url("../img/book.png");
  background-size: 40px 40px;
  height: 40px;
  width: 40px; 
}


/* Using the :before pseudo-element to add the SVG content */
.label::before {
  display: inline-flex;
  content: '';

  /* Using the background-image and
      its related properties to add
      the SVG content */
  background-image: url('../img/book.png');
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
  }

  /* Using the :after pseudo-element
  to add the SVG content */
  .label::after {
  display: inline-flex;
  content: '';

  /* Using the background-image and
      its related properties to add
      the SVG content */
  background-image: url('../img/book.png');
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
}


/* Hamburger customization */
.knsToggler.navbar-toggler {
  border-color: #64A7F5;
  padding: 6px;
  background: #FFFFFF;
}

.knsToggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(100, 167, 245, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* Medium devices (tablets, 768px and up) */ 
@media (min-width: 768px) {
  .verticalSearch{
    visibility: hidden;
  }
}

@media (max-width: 767.98px) {
  .horizontalSearch{
    display: none;
  }
  .seminarLocationInput{
    display: none;
  }
}

/* Replaces above CSS to prevent duplicating ASP controls */ 

@media (max-width: 767.98px) {
  .seminarSearch{
    top: 100% !important;
    left: 50% !important;
  }
}


/* Medium devices (tablets, 768px and up) */ 
@media (min-width: 992px) {
  .knsNotifMobile{
    visibility: hidden;
  }

}

@media (max-width: 991.98px) {
  .knsNotifDesktop{
    visibility: hidden;
  }
  .knsCartButton{
    display: none;    
    height: 10px;
  }
}

.knsNotif{
  /* width: 54px;
  height: 54px; */
  background: #F5F5F5;
  border-radius: 8px;
  /*height: 54px;*/
  
}

.knsNotif:hover{
  /* width: 54px;
  height: 54px; */
  background: #F5F5F5;
  
}

.knsNotifDropdown{
  padding: 0 !important;
}

.knsNotifDropdown::after{
  border: none;
}

.knsBell{
  color: #1E293B;
}

.knsBellNotice{
  width: 12px;
  height: 12px;
  background: #D6293E;
  border-radius:50%;
  border: 1px solid white;
  position:absolute;
  top: -3px;
  right: 5px;
  z-index:1;
}

.knsProgramsTitle{
  font-weight: 700;
  font-size: 42px;
  line-height: 67px;
  letter-spacing: -0.8px;
  color: #1E293B;
}

.knsPracticeTitle{
  font-weight: 700;
  font-size: 42px;
  line-height: 67px;
  letter-spacing: -0.8px;
  color: #1E293B;
}


.knsProgramsTitleHighlight{
  color: #FB9516;
}

.knsProgramTitleContext{
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #64748B;
}


.knsCard{
  background: #FFFFFF;
  box-shadow: 29px 58px 83px 10px rgba(29, 58, 83, 0.1);
  border-radius: 16px;
  border: none;
  --bs-card-border-color: none !important;
}

.knsHomeImg{
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}

.knsProductCard{
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.1);
  border-radius: 16px;
  --bs-card-border-color: none !important;
}

.knsProductTypeCard{
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.1);
  border-radius: 16px;
  --bs-card-border-color: none !important;
}


.knsExamTypeCard {
  position: relative;
  overflow: hidden;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  box-shadow: 29px 58px 83px 10px rgba(29, 58, 83, 0.1);
  background: #dedede !important;
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.knsMenuCard{
    background-color: white;
    border-radius: 16px;
}

/* Overlay */
.custom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0px 0px 16px 16px;
  padding: 15px;
}

.knsCatalogBackground{
  /*background: #F1F5F9;*/
}



.knsCardTitle{
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.8px;
  color: #1E293B;
}

.knsExamCardTitle{
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  /* or 100% */
  letter-spacing: -0.8px;
  color: #1E293B;
}

.knsExamCardSecondaryTitle{
  font-weight: 400;
  font-size: 18px;
  /* or 373% */
  letter-spacing: -0.8px;
  color: #475569;
}

.knsCardLink{
  font-weight: 400;
  font-size: 20px;
  line-height: 67px;
  letter-spacing: -0.8px;
  color: #64A7F5;
  text-decoration: none;
}

.knsCardLink:hover{
  text-decoration: underline;
}

.knsCardBody{
  font-weight: 600;
  font-size: 18px;
  line-height: 67px;
  letter-spacing: -0.8px;
  color: #1E293B;
}

.knsCardCredits{
  font-weight: 400;
  font-size: 18px;
  line-height: 48px;
  letter-spacing: -0.8px;
  color: #74758B;
}

.knsPageBanner{
  background: #64A7F5;
}

.knsPageBannerTitle{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 64px;
  letter-spacing: -0.8px;
  /*color: #F5F5F5;*/
}

@media (max-width: 991.98px) {
  .knsPageBannerTitle{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 64px;
    letter-spacing: -0.8px;
    color: #F5F5F5;
  }
}

/* Incrementor CSS */ 

icon-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
 }

 .icon-sm {
    width: 2rem;
    height: 2rem;
    
 }

 /* Chrome, Safari, Edge, Opera */
 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
 }

 /* Firefox */
 input[type=number] {
 -moz-appearance: textfield;
 }

.modal-content{
  background-color: white !important;
}

.list-group-item{
  background-color: white !important;
}


.cartContainer{
  background-color: white !important;
}


@media (min-width: 768px) and (max-width: 1400px) { 
  .btnCartTextOutline{
    font-size:16px;
  }

 }

 .qty-input {
  color: #000;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.qty-input .product-qty, .qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-weight: bold;
  font-size: inherit;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 2.5rem;
  line-height: 1;
}
.qty-input .product-qty:focus, .qty-input .qty-count:focus {
  outline: none;
}
.qty-input .product-qty {
  width: 50px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  appearance: textfield;
}
.qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 2.5rem;
  font-size: 1.25em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}
.qty-input .qty-count:before, .qty-input .qty-count:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  display: block;
  background: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.qty-input .qty-count--minus {
  border-right: 1px solid #e2e2e2;
}
.qty-input .qty-count--add {
  border-left: 1px solid #e2e2e2;
}
.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}
.qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}
.qty-input .qty-count:disabled:before, .qty-input .qty-count:disabled:after {
  background: #ccc;
}

.qty-input {
  border-radius: 4px;
  border: 1px solid;
  /* box-shadow: 0 1em 2em -0.9em rgba(0, 0, 0, 0.7); */
  /* transform: scale(1.5); */
}


/* need this css for hidden checkbox */
.check1 {
  display: none;
}


/* Footer CSS*/

.knsFooter{
  background-color: #fff;
}

.knsFooterTitle{
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #1E293B;
}

a.knsFooterLink {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #475569;
  text-decoration: none;
}

a.knsFooterLink:hover{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #64A7F5;
  cursor: pointer;
}

.knsFooterHr{
  /* Line 10 */
  border: 1px solid #EAEDF3;  
}

.knsCopyright{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #475569;
}

/* Filter Panel */
.knsFilterPanel{
  background: #FFFFFF !important;
  box-shadow: 0px 1px 3px rgba(17, 21, 39, 0.25) !important;
  border-radius: 8px !important;
  background: #FFFFFF !important;
}

.knsFilterPanelHeader{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* or 150% */
  letter-spacing: 1px;
  color: #74758B;
}

.knsFilterTitle{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  /* or 144% */
  letter-spacing: 0.2px;
  color: #1E293B;
}

.knsFilterHr{
  border: 1px solid #D9D9D9;
  transform: rotate(0deg);
}

.knsFilterIcon{
  width: 25.85px;
  height: 26px;
}

.knsFilterPanelOptions{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  /* or 129% */
  letter-spacing: 0.4px;
  color: #74758B;
}

.knsFilterPanelCheckbox:checked{
  background-color: #E7692D !important;
  border-color: #E7692D !important;
  border-radius: 3.5px;
}

.knsAccordionItem{
  background-color: white;
}

.knsAccordion{
  /* Example of a major override  */
  --bs-accordion-bg: white !important;
}

input::placeholder{
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height, or 129% */
  letter-spacing: 0.2px;
  color: #BDBDBD;
}

.knsProductCount{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  /* or 200% */
  letter-spacing: -0.8px;
  color: #1E293B;
}

.knsProductSection{
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
  /* or 128% */
  letter-spacing: 0.2px;
  color: #1E293B;
}


.knsProductSectionHR{
  border: 1px solid #D9D9D9;
}


.knsProductCode{
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 6px;

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height, or 129% */
  letter-spacing: 0.2px;
  color: #BDBDBD;
}

.knsProductCodeBtn{
  background: #FE7F43;
  border-radius: 0px 6px 6px 0px;
  color: white;
}

.knsProductCodeBtn:hover{
  background: #FE7F43;
  border-radius: 0px 6px 6px 0px;
  color: white;
}

/* New Style Dropdowns  */
.knsDropdown {
    background: #FFFFFF;
    box-shadow: 29px 58px 83px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: none !important;
    min-width: 278px;
    font-weight: 600 !important;
    font-size: 16px;
}
.knsDropdown .dropdown-item {
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 32px;
    letter-spacing: -0.48px;
    color: #1E293B !important;
}

.knsDropdown .dropdown-item:active{
    color: white !important;
}


/* My Account Dropdown  */
.knsAccountPanel {
    background: #FFFFFF;
    box-shadow: 29px 58px 83px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: none !important;
    min-width: 278px;
    font-weight: 600 !important;
    font-size: 16px;
}
.knsAccountPanel .dropdown-item {
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 32px;
    letter-spacing: -0.48px;
    color: #1E293B !important;
}

.knsAccountPanel .dropdown-item:active{
    color: white !important;
}

/* Notifation panel  */
.knsNotifPanel {
    background: #FFFFFF;
    box-shadow: 29px 58px 83px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: none !important;
    min-width: 378px;
}

.knsNotifPanelTitle{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  /* or 200% */
  letter-spacing: -0.48px;
  color: #000000;
}

.knsNotifPanelBody{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  /* or 150% */
  letter-spacing: -0.48px;
  color: #000000;
}


.knsNotifPanelUnreadItem{
  background: #F5F5F5;
  border-radius: 8px;
}

.knsNotifPanelDate{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  /* or 175% */
  letter-spacing: -0.48px;
  color: #000000;
}

.knsNotifPanelLink{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  /* or 229% */
  letter-spacing: -0.48px;
  color: #64A7F5;
}

/* FAQs */
.knsInfoCardTitle{
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
  /* or 94% */
  letter-spacing: -0.8px;
  color: #1E2945;
}

/* Get answers to the most frequently asked questions. */
.knsInfoCardBody{
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  /* or 160% */
  letter-spacing: -0.48px;
  color: #64748B;
}

/* Make modal fullscreen on mobile */
@media (max-width: 768px) {
  .modal.knsFullscreenModal .modal-dialog {
      margin: 0;
      width: 100%;
      max-width: none;
      height: 100%;
  }
  .modal.knsFullscreenModal .modal-content {
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  .modal.knsFullscreenModal .modal-body {
      overflow-y: auto;
      flex-grow: 1;
  }knsFullscreenModal .modal-header,
  .modal.knsFullscreenModal .modal-footer {
      flex-shrink: 0;
  }
}

/* Card Hover Effect */
.knsProductCard {
  transition: all 0.3s ease-in-out;
}

.knsProductCard:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: unset;
}

.knsProductCard:hover .knsExamCardTitle {
  color: #64A7F5;
}

.knsProductCard:hover .knsCardLink {
  text-decoration: underline;
}


.knsShareButton {
    z-index: 2;
  position: absolute;
  top: 10px;
  right: 10px;
  /* border: none; */
  background-color: rgba(255, 255, 255, 0.758);
  /* padding: 5px; */
  border-radius: 0.5rem;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.knsShareButton:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.knsProductCardLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

.imgProductDetails{
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    object-fit: cover;
}

.knsDiscountImages{
    object-fit: contain !important;
}

.knsProductCard{
    overflow: hidden;
    border-radius: 16px;
}

.modal-content{
  border-radius: 16px !important;
}

.knsSocialLink{
  cursor: pointer;
}

@media (min-width: 992px) {
    .sticky-lg-top {
        top: 100px;
    }
}



.knsMenuItem {
    /* padding: 2rem; */
    transition: all 0.1s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 0;
    text-decoration: none !important;
  }

  .knsMenuItem::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: white;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.1s ease;
    z-index: -1;
  }

  .knsMenuItem:hover::before {
    opacity: 1;
  }

  .knsMenuItem img {
    width: 60px;
    height: 60px;
    z-index: 1;
    transition: filter 0.1s ease;
  }

  .knsMenuLabel {
    margin-top: 0.5rem;
    font-weight: 500;
    color: #333;
    z-index: 1;
    transition: color 0.1s ease, text-decoration 0.1s ease;
  }

  .knsMenuItem:hover .knsMenuIcon{
    filter: brightness(0) saturate(100%) 
            invert(61%) sepia(10%) saturate(3363%) 
            hue-rotate(184deg) brightness(96%) contrast(93%);
  }

  .knsMenuItem:hover .knsMenuLabel {
    color: #4D8FE0;
    /* text-decoration: underline; */
  }

  .modal-body iframe,
  .modal-body video {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      max-height: 80vh !important;
      aspect-ratio: 16 / 9;
      display: block;
      object-fit: contain;
  }

/*make radio button list items wrap properly - kju*/
 table.rblWrap input
 {    
      float: left;
      position:relative;
      top:5px;
 }

 table.rblWrap label
 {    
      margin-left: 20px;
      display: block;
 }
 
 /*place div around asp:CheckBox with class='cbWrap' to fix checkbox wrapping - kju*/
div.cbWrap input
 {    
      float: left;
 }
 div.cbWrap label
 {    
      display:block;
      margin-left:20px;
      position:relative;
      top:-6px;
 }

/*use to center a table on screen - kju*/ 
.center-table {
    margin: 0 auto;
}

/*style input field placeholder*/
.form-control::placeholder{
    color: #BDBDBD !important;
}

.form-control {
    background-color: white !important;
}

.form-select {
    background-color: white !important;
}

.knsWarningRibbonMsg{
    position: absolute;
    left: 0;
    background-color: #dc3545;
    color: white !important;
    font-size: 0.75rem;
    /*padding: 0.3rem 0.6rem;*/
    border-top-right-radius: 0.5rem;
    font-weight: 600;
    z-index: 1;
}


.knsInfoRibbonMsg{
    position: absolute;
    left: 0;
    background-color: #198754;
    color: white !important;
    font-size: 0.75rem;
    /*padding: 0.3rem 0.6rem;*/
    border-top-right-radius: 0.5rem;
    font-weight: 600;
    z-index: 1;
}



/*this ovverides the inline styles from the admin side*/
.knsInfoRibbonMsg span{
     /*padding: 0.3rem 0.6rem;*/
    color: white !important;
}
.knsInfoRibbonMsg span:not(:empty){
    padding: 0.3rem 0.6rem;
    display: inline-block;
    word-break: break-word;
}

/*this ovverides the inline styles from the admin side*/
.knsWarningRibbonMsg span{
     /*padding: 0.3rem 0.6rem;*/
    color: white !important;
}
.knsWarningRibbonMsg span:not(:empty){
     padding: 0.3rem 0.6rem;
}

.position-relative .knsWarningRibbonMsg:last-child,
.position-relative .knsInfoRibbonMsg:last-child{
    bottom: 0.5rem;
}

.position-relative :is(.knsWarningRibbonMsg, .knsInfoRibbonMsg):not(:empty):not(:last-child){
    bottom: 1.5rem;
}

.text-green{
    color: green;
}

.knsInvalidInput{
    background-color: #fbe9ec !important;
}

.knsInvalidHighlight{
    background-color: #FFF8F8 !important;
}

.knsReceipt {
  background: #fff;
  border: 1px solid #dee2e6;
  margin: 2rem auto;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/*.img.opacity-0{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.img.opacity-100{
    opacity: 1;
}*/

.knsPlaceholderBg{
   background: #dcdede;
}

.knsHeroBanner {
    width: 100%;
    height: 240px;
    background-image: url('/new/img/info.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -1.5rem;
}

.knsHeroBanner + .container {
    margin-top: -90px;
}

.knsHeroTitle {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0px 1px 4px rgba(0,0,0,0.30);
}

/* ===== Learning Format Cards ===== */
.format-card {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

/* Big grayscale background icon */
.format-bg-icon {
  position: absolute;
  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 18rem;           /* Bigger = more coverage */
  color: #000;
  opacity: 0.025;             /* True grayscale, very subtle */
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Content above the icon */
.format-content {
  position: relative;
  z-index: 1;
}

.format-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

/*.format-card:hover .format-bg-icon {
  opacity: 0.04;
}*/

/* ===== Common Features Band ===== */
.common-features {
  background-color: #0f172a; /* placeholder dark background */
  color: #ffffff;
}

.common-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.common-feature i {
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.85;
}

.common-feature span {
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Responsive spacing tweak */
@media (max-width: 767px) {
  .common-feature {
    justify-content: center;
    text-align: center;
  }
}

nav.navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  isolation: isolate;
}
