/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--blue:		 #1355a6;
	--orange:    #EE6C23;
	--yellow:	 #fdff00;
	--red:       #ff0000;
	--black: 	 #000000;
	--white: 	 #FFFFFF;
	--offwhite:  #F2F2F2;
	--offwhite2: #F5F5F5;
	
	--section-padding-y-lg: 125px;
}

html, body {
	font-family: 'Poppins', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600 !important;
}

h2 {
	font-size: 30px !important;
	color: var(--blue);
}

h3 {
	font-size: 26px !important;
	color: var(--blue);
}

p {
	font-size: 15px;
	font-weight: 400;
}

a {
	color: var(--blue);
}

strong {
	font-weight: 600 !important;
}

.btn-cta {
	padding: 10px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	border: 1px solid transparent;
}

.btn-cta-blue {
	background-color: var(--blue);
	color: var(--white);
}

.btn-cta-orange {
	background-color: var(--orange);
	color: var(--white);
}

.btn-cta-outline {
	border-color: #a7a7a7;
}

.text-yellow,
.text-yellow a {
	color: var(--yellow) !important;
}

.text-blue {
	color: var(--blue);
}

.text-red {
	color: var(--red);
}

.text-orange {
	color: var(--orange) !important;
}

.mw-800 {
	max-width: 800px;
}

.pt-y-lg {
	padding-top: var(--section-padding-y-lg);
}

.pb-y-lg {
	padding-bottom: var(--section-padding-y-lg);
}

/* ********** NAVIGATION ********** */

header.site-header {
	position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 1000;
}

header.sticky {
	background-color: rgb(19 85 166 / 97%);
    border-bottom: 1px solid rgb(255 255 255 / 25%);
}

header .container {
	max-width: 100% !important;
}

.nav-top-bar {
	padding-top: 15px;
}

.announcement-bar {
	margin-left: 20px;
    font-size: 13px;
    position: relative;
    top: -1px;
	width: calc(100% - 470px);
}

.announcement-bar a {
	color: var(--yellow);
	text-decoration: none;
}

.top-bar-right {
	display: flex;
    align-items: center;
	width: 405px;
}

.header-actions {
	justify-content: space-between !important;
	align-items: center;
}

.nav-top-bar .btn {
	border: none;
	padding: 0;
}

button.btn.btn-outline-secondary.ms-1.ms-md-2.position-relative.cart-toggler {
	position: relative;
	top: 2px;
	margin: 0;
}

.nav-top-bar i {
	color: var(--white);
}

.top-bar-info,
.top-bar-info p {
	font-size: 12px !important;
	font-weight: 400 !important;
}

.top-bar-info a {
	text-decoration: none;
}

.nav-top-bar .cart-toggler {
	margin-right: 20px;
}

.navbar-brand {
	padding-top: 0;
}

.navbar-brand img {
	height: 75px;
	margin-left: 20px;
}

#bootscore-navbar li {
    margin-right: 25px;
}

#bootscore-navbar li:last-of-type {
	margin-right: 0;
}

#nav-main {
	padding-top: 0;
	margin-top: 5px;
}

#bootscore-navbar li a {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
}

#bootscore-navbar li a.active {
/* 	color: var(--yellow); */
	font-weight: 600;
}

/* Offcanvas mobile/tablet menu has a white panel, so the white nav text
   from the desktop navbar is invisible there — force a dark color.
   .nav-cta (WIOA Eligibility button) and .text-yellow (Before Your Course)
   items are excluded since they carry their own intentional styling. */
@media (max-width: 991.98px) {
	#offcanvas-navbar #bootscore-navbar li:not(.nav-cta):not(.text-yellow) a {
		color: var(--black);
	}

	#offcanvas-navbar #bootscore-navbar li a.active {
		color: var(--blue);
	}

	#offcanvas-navbar #bootscore-navbar li.text-yellow {
		margin-bottom: 10px;
	}

	#offcanvas-navbar #bootscore-navbar li.text-yellow a {
		color: var(--black) !important;
	}

	#offcanvas-navbar #bootscore-navbar li.nav-cta a {
		color: var(--white) !important;
	}
}

.dropdown-menu {
	border-radius: 5px !important;
	padding: 0;
	background-color: transparent !important;
}

.dropdown-menu li:first-of-type,
.dropdown-menu li:first-of-type a {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.dropdown-menu li:last-of-type,
.dropdown-menu li:last-of-type a {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.dropdown-menu li {
    margin: 0 !important;
}

.dropdown-menu li a {
	padding: 10px 16px;
    color: var(--black) !important;
	background-color: var(--white);
}

.dropdown-menu li.current-menu-item a {
    color: var(--white) !important;
}

.nav-cta a {
	padding: 8px 20px !important;
	font-size: 14px;
	font-weight: 600;
	border-radius: 20px;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	background-color: var(--orange);
	border: 1px solid transparent;
	color: var(--white);
}

.announcement-bar {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    min-width: 0;
	margin-right: 20px;
    white-space: nowrap;
}

.announcement-bar__track {
    display: flex;
    width: max-content;
    animation: announcementTicker 20s linear infinite;
}

.announcement-bar__group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-right: 4rem;
}

.announcement-bar__group a {
    display: inline-block;
    color: #ffff00;
    text-decoration: none;
    font-weight: 500;
}

.announcement-bar__group a:hover {
    text-decoration: underline;
}

@keyframes announcementTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 1280px;
    }
}

.announcement-bar {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.announcement-bar__viewport {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.announcement-bar__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: announcement-marquee var(--ticker-duration, 20s) linear infinite;
}

.announcement-bar__group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-right: 4rem;
}

.announcement-bar__group a {
    display: inline-block;
    color: #ffff00;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.announcement-bar__group a:hover {
    text-decoration: underline;
}

.announcement-bar:hover .announcement-bar__track {
    animation-play-state: paused;
}

.announcement-bar {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.announcement-bar::before,
.announcement-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.announcement-bar::before {
    left: 0;
    background: linear-gradient(to right, #1f5fd1 0%, rgba(31, 95, 209, 0) 100%);
}

.announcement-bar::after {
    right: 0;
    background: linear-gradient(to left, #1f5fd1 0%, rgba(31, 95, 209, 0) 100%);
}

@keyframes announcement-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--ticker-distance, 0px)));
    }
}

/* ***** HOME ***** */

.home-section-subtitle {
	color: var(--red);
    font-weight: 600 !important;
    font-size: 24px;
}

.home-check-list {
	list-style: none;
	padding-left: 0;
}

.home-check-list li {
	padding-left: 1.6rem;
	position: relative;
	margin-bottom: .5rem;
	font-size: 15px;
}

.home-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--orange);
	font-weight: 700;
}

/* HERO */
.home-hero {
	background-image: url('/wp-content/uploads/2026/03/cdc-home-hero-bg-02.webp');
	background-size: cover;
	padding-top: 175px !important;
    padding-bottom: 100px !important;
}

.home-hero .container {
	position: relative;
}

.home-hero__content {
	padding: 4rem 2rem 4rem 0;
	color: #fff;
}

.home-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	opacity: .8;
	margin-bottom: .5rem;
}

.home-hero__heading {
	font-size: 2rem;
	font-weight: 700 !important;
	color: #fff !important;
	line-height: 1.25;
	margin-bottom: 1.25rem;
}

.home-hero .text-decoration-underline {
	color: var(--yellow);
}

.home-hero__highlight {
	color: var(--orange);
}

.home-hero__list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.home-hero__list li {
	display: flex;
	align-items: flex-start;
	padding-left: 0;
	margin-bottom: 5px;
	font-size: 17px;
	color: rgba(255,255,255,.9);
	font-weight: 500;
}

.home-hero__list li i {
    font-size: 27px;
    line-height: 1;
    flex: 0 0 auto;
    position: relative;
    top: 3px;
    margin-right: 8px;
}

.home-hero__img-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.home-hero__img {
	border-radius: 20px;
    border: 3px solid var(--yellow);
}

.btn-cta-outline-white {
	border-color: #fff !important;
	color: #fff !important;
	background: transparent;
}

.btn-cta-outline-white:hover {
	background: rgba(255,255,255,.15);
}

/* AWARDS */

.award-winning-expertise {
	padding-top: var(--section-padding-y-lg) !important;
}

.award-winning-expertise img {
	max-width: 50%;
}

h3.award-text {
	font-size: 15px !important;
    margin-top: 1.5rem;
    color: var(--black);
	max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* BEFORE YOUR COURSE */

.before-your-course {
	padding-bottom: var(--section-padding-y-lg) !important;
}

.img-rounded,
.video-rounded {
	border-radius: 20px;
	border: 3px solid var(--yellow);
}

.before-course-video-trigger {
    display: inline-block;
    text-decoration: none;
}

.before-course-video-trigger img {
    display: block;
    width: 100%;
    height: auto;
}

.before-course-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.before-course-play-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #ffffff;
    transform: translate(-35%, -50%);
}

/* Before Your Course FAQ */
.before-your-course-faq .accordion-item {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 12px;
}

.before-your-course-faq .accordion-button {
	padding: 14px 18px;
	font-weight: 700;
	color: var(--blue);
	background: #fff;
}

.before-your-course-faq .accordion-button:not(.collapsed) {
	color: var(--blue);
	background: rgba(19, 85, 166, 0.06);
	box-shadow: none;
}

.before-your-course-faq .accordion-body {
	padding: 14px 18px 18px;
	color: #2b2b2b;
	line-height: 1.75;
	font-size: 15px;
}

/* PROMO */
.home-promo-section {
    background-color: var(--blue);
	padding-top: var(--section-padding-y-lg) !important;
	padding-bottom: var(--section-padding-y-lg) !important;
}

.home-promo-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.home-promo-section li {
	color: var(--white);
	padding-left: 0;
	position: relative;
	margin-bottom: .45rem;
	font-size: 17px;
	font-weight: 500;
    margin-bottom: 5px;
}

.home-promo-section li i {
    font-size: 27px;
    position: relative;
    top: 7px;
    margin-right: 5px;
}

/* COURSES */

.additional-courses {
	padding-top: var(--section-padding-y-lg) !important;
	padding-bottom: var(--section-padding-y-lg) !important;
}

.home-course-card {
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .2s;
}

.home-course-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.12) !important;
}

h3.card-title {
	font-size: 1rem !important;
	font-weight: 500 !important;
}

/* HOME TESTIMONIALS */

.home-testimonials {
	padding-top: var(--section-padding-y-lg) !important;
}

/* WHY CHOOSE CDC */
.home-why-section {
	background-color: var(--blue);
	color: var(--white);
	padding-top: var(--section-padding-y-lg) !important;
	padding-bottom: var(--section-padding-y-lg) !important;
}

.home-why-section h3 {
	font-size: 22px !important;
}

/* HOME MYCAA */

.home-mycaa {
	padding-bottom: var(--section-padding-y-lg) !important;
}

/* HOME */

body.home .hero h1 {
	text-align: center;
    color: var(--blue) !important;
}

.hero img {
	border-radius: 5px;
}

.row-search {
	border-top: 1px solid #c5c5c5 !important;
	border-bottom: 1px solid #c5c5c5 !important;
	background-color: #f5f5f5 !important;
	background-color: #eff2ff !important;
}

.row-search h2 {
	text-align: center;
    color: var(--blue);
}

.single-ce_course .col-lg-4 span.woocommerce-Price-amount.amount {
	color: #ff6e00;
	font-weight: 500;
}

.sticky-top {
	z-index: 10;
}

.single-ce_course .ce-course h2,
.single-ce_course .sticky-top h2 {
	font-size: 22px !important;
    margin-top: 20px;
}

.single-ce_course p {
	font-weight: 400 !important;
}

.video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.form-label.small.fw-semibold {
	visibility: hidden;
}

#sib-email {
	position: relative;
    top: -0.75rem;
}

.sib-alert-message {
	margin-bottom: 0 !important;
	position: relative;
    top: 0.75rem;
}

.single-ce_course .ce-course h3 {
	font-size: 20px !important;
    margin-top: 20px;
	font-weight: 500;
}

/* .ce-course ul {
	padding-left: 20px;
} */

.ce-course ul li p {
	margin-bottom: 5px;
}

.ce-course header ul {
	padding-left: initial;
}

.card-title a,
.link-course-overview {
	color: var(--blue);
}

.card.border-warning {
	border: 1px solid #cccccc !important;
	border-radius: 10px !important;
}

.card.border-warning a.btn-primary {
	background-color: var(--blue) !important;
}

.course-card-media {
    position: relative;
    display: block;
}

.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;

    display: inline-block;

    padding: 6px 10px;

    background: var(--orange);
    color: var(--white);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.course-card-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.course-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: bottom;
	border-bottom: 1px solid #d8d8d8;
}

/* “More online courses” CTA card (archive + courses section) */
.cdc-more-online-courses-card__title {
	color: var(--orange);
	font-weight: 700;
}

.cdc-more-online-courses-card:hover .card,
.cdc-more-online-courses-card:focus-visible .card {
	box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12) !important;
}

.cdc-more-online-courses-card:focus-visible {
	outline: 2px solid var(--blue, #0d6efd);
	outline-offset: 2px;
}

.page-numbers {
	text-align: center;
}

.page-numbers li {
    width: initial;
    display: inline-block;
    margin: 0 5px;
    font-family: 'Poppins', sans-serif;
}

.page-numbers li span {
	color: var(--black);
}

.page-numbers li a {
	color: var(--blue);
	text-decoration: none;
}

/* MODAL */

.modal-content {
	padding: 1rem;
}

.modal-content p,
.modal-content ul li {
	font-size: 14px !important;
}

.modal-content h3 {
	font-weight: 500 !important;
}

/* VIDEO MODAL */

#ceHeroVideoModal .modal-body {
	padding: 0;
}

#ceHeroVideoModal .modal-content {
	padding: 0;
	background-color: transparent;
}

#ceHeroVideoModal  .btn-close {
	opacity: 1;
}

#ceHeroVideoModal .modal-header {
	position: relative;
    top: 65px;
    z-index: 100;
}

#ceHeroVideoModal .btn-close {
	background-color: #000;
    border-radius: 100%;
    padding: 14.5px;
}

#ceHeroVideoModal span {
	filter: invert(1);
    font-family: 'FontAwesome';
    font-weight: bold;
    position: relative;
    top: -3px;
    right: 1px;
}

/* QUIZ */

.form-check-input {
	border-color: #b6b6b6;
}

.gated-content {
	font-family: 'Poppins', sans-serif !important;
}

.gated-content table {
	margin-bottom: 15px;
}

.gated-content table th,
.gated-content table td {
	border: 1px solid #d5d5d5;
    padding: 10px;	
}

.row-references ol {
	font-size: 12.5px;
}

/* ********** SINGLE COURSE PAGE ********** */

body.single-ce_course header.site-header {
	background-color: var(--blue);
}

body.single-ce_course main {
	margin-top: 125px;
}

.view-more-btn {
	position: relative;
	top: -10px;
}

.ce-specials-signup {
	background-color: #f6f6f6;
}

.sib-default-btn {
	border: none !important;
    background-color: #459282 !important;
    color: #fff !important;
}

/* ********** COURSES PAGE ********** */

body.page-template-courses header.site-header {
	background-color: var(--blue);
}

.page-template-courses .before-your-course {
	margin-top: 150px;
}

.page-template-courses .before-your-course {
	padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.page-template-courses .additional-courses {
	padding-top: 3rem !important;
}

/* ********** RDA CERTIFICATIONS ********** */

body.page-template-rda-certifications header.site-header {
	background-color: var(--blue);
}

body.page-template-rda-certifications #one {
	margin-top: 150px;
}

body.page-template-rda-certifications .additional-courses {
	padding-top: 3rem !important;
}

/* ********** BIANNUAL MANDATED ********** */

body.page-template-biannual-mandated header.site-header {
	background-color: var(--blue);
}

body.page-template-biannual-mandated #one {
	margin-top: 150px;
}

.hero-biennial-mandated ul li i {
    position: relative;
    top: 4px;
    font-size: 20px;
}

body.page-template-biannual-mandated .additional-courses {
	padding-top: 3rem !important;
}

/* ********** DENTAL TECHNICIAN ********** */

body.page-template-dental-technician header.site-header {
	background-color: var(--blue);
}

body.page-template-dental-technician #one {
	margin-top: 150px;
}

body.page-template-dental-technician .additional-courses {
	padding-top: 3rem !important;
}

/* ********** PRODUCT PAGE ********** */

body.single-product header.site-header {
	background-color: var(--blue);
}

body.single-product .type-product {
	margin-top: 100px;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	float: right;
}

.woocommerce-product-gallery {
	width: 33% !important;
	margin-left: 20px;
}

.summary.entry-summary {
	width: 64% !important;
}

body.single-product h1.product_title.entry-title {
	margin-bottom: 0 !important;
}

.cdc-title-price-above-gallery {
	width: 100%;
	margin-bottom: 2rem;
}

.cdc-title-price-above-gallery .product_title {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.cdc-title-price-above-gallery .price {
	margin-bottom: 0;
}

/* WooCommerce single product top layout.
 * We wrap images + summary (and our title/price + homework notice) into `.cdc-single-product-top`
 * in `woocommerce/content-single-product.php` to avoid fighting Woo's internal markup.
 */
body.single-product .cdc-single-product-top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
}

/* Gallery column */
body.single-product .cdc-single-product-top .woocommerce-product-gallery,
body.single-product .cdc-single-product-top .images {
	order: 2;
	float: none !important;
	margin-left: 0 !important;
	flex: 0 0 33%;
	width: 33% !important;
}

/* Summary column */
body.single-product .cdc-single-product-top .summary.entry-summary {
	order: 1;
	float: none !important;
	width: auto !important;
	flex: 1 1 64%;
}

/* Rescheduling fee product: class + date fields */
.cdc-reschedule-fee-fields label.required::after {
  content: " *";
  color: var(--bs-danger, #dc3545);
}

.cdc-reschedule-fee-fields .form-row input.input-text,
.cdc-reschedule-fee-fields .form-row input[type="date"],
.cdc-reschedule-fee-fields .form-row select {
  width: 100%;
  max-width: 100%;
}

.cdc-reschedule-fee-fields .form-row-first,
.cdc-reschedule-fee-fields .form-row-last {
  float: none;
  width: 100%;
}

.cdc-homework-notice {
	font-size: 14px;
	font-weight: 600;
}

/* Full-width row above floated gallery + summary on single product */
body.single-product div.product > .cdc-homework-notice-alert {
	width: 100% !important;
	max-width: 100%;
	clear: both;
	float: none;
	box-sizing: border-box;
}

/* ce_course: full-width alert above main + sidebar columns */
body.single-ce_course .site-main .container > .cdc-homework-notice-alert {
	width: 100% !important;
	max-width: 100%;
	box-sizing: border-box;
}

.single-product .lni-arrow-downward {
    position: relative;
    top: 3px;
    font-weight: 800;
}

span.woocommerce-Price-amount.amount {
	font-weight: 600;
    color: var(--orange);
}

.offcanvas span.woocommerce-Price-amount.amount {
	font-weight: initial;
	color: var(--black);
}

.cdc-booking-calendar-heading {
	text-align: center;
	color: var(--red);
}

/* Sits right after #wc-bookings-booking-form (the calendar + booking cost
 * card) closes, so its own border + negative margin-top make it read as a
 * continuous extension of that card rather than a separate floating note. */
.cdc-booking-multi-seat-note {
	border: 1px solid #ddd;
	border-top: none;
	margin-top: -1px !important;
	padding: 12px 14px;
	color: #411b1f;
	background: var(--bs-danger-bg-subtle);
	text-align: center;
	font-size: 13px;
}

.woocommerce-product-details__short-description h3 {
	color: var(--black);
}

.single-product .col-lg-3.order-first.order-lg-2 {
	display: none;
}

.single-product .col-lg-9 {
	width: 100%;
}

.single-product .related-products {
	clear: both;
}

.single-product .row.row-cols-1.row-cols-md-2.row-cols-lg-3.g-4 {
	width: 100%;
}

.single-product .ratio::before {
	padding: 0 !important;
}

.single-product .row.row-cols-1.row-cols-md-2.row-cols-lg-3.g-4 .woocommerce img, .woocommerce-page img {
	position: initial;
}

.woocommerce-product-details__short-description a.d-inline-block.mt-2.small {
	margin-bottom: 40px !important;
    margin-top: -15px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--blue) !important;
}

.summary.entry-summary h3 {
	font-size: 20px !important;
}

button.single_add_to_cart_button.button.alt {
	background-color: var(--blue) !important;
}

.single-product .product_meta,
.woocommerce-tabs.wc-tabs-wrapper,
section.up-sells.upsells.products {
	display: none;
}

.tab-content.border {
	border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.tab-content h3 {
	font-size: 22px !important;
	color: var(--black) !important;
}

button.cdc-readmore-btn {
	margin-bottom: 20px;
}

.woocommerce div.product form.cart div.quantity {
	float: left;
}

.woocommerce div.product form.cart {
	display: block;
	margin-top: 0;
}

.woocommerce-product-details__short-description.cdc-clamp {
	--cdc-lines: 18;
	--cdc-line-height: 1.6;

	line-height: var(--cdc-line-height);
	max-height: calc(var(--cdc-lines) * 1em * var(--cdc-line-height));
	overflow: hidden;
	position: relative;
}

.woocommerce-product-details__short-description.cdc-clamp.is-expanded {
	max-height: none;
}

.woocommerce-product-details__short-description.cdc-clamp::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 64px;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.woocommerce-product-details__short-description.cdc-clamp.is-expanded::after {
	display: none;
}

.cdc-readmore-btn {
	margin-top: 12px;
	background: none;
	border: 0;
	padding: 0;
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
}

.cdc-product-videos {
	background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
}

.cdc-product-videos h2 {
	font-size: 30px !important;
	text-decoration: underline;
	text-align: center;
}


.cdc-product-videos__stack .before-course-play-icon {
	width: 50px;
	height: 50px;
}

.cdc-product-videos__stack .cdc-product-videos__thumb {
	flex: 1 1 200px;
	max-width: 100%;
}

body.single-product .modal .ratio.ratio-16x9 {
	height: 500px;
}

@media (min-width: 992px) {
body.single-product .modal-dialog.modal-lg, body.single-product .modal-dialog.modal-xl {
        --bs-modal-width: 800px;
    }
}
	
/* TABS */

.cdc-course-info-tabs {
	display: flex;
	width: 100%;
}

.nav-tabs .nav-link {
	color: #8d8d8d;
}

/* BOOKINGS */

form.cart {
	display: block !important;
}

#wc-bookings-booking-form,
fieldset.wc-bookings-date-picker.wc-bookings-date-picker-booking.wc_bookings_field_start_date {
	padding: 0;
}

.wc-bookings-date-picker .ui-datepicker-header {
	background-color: var(--blue);
	background-image: none;
}

.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
	text-indent: 0 !important;
	overflow: visible !important;
	background: none !important;
	width: auto !important;
	height: auto !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.ui-datepicker .ui-datepicker-prev .ui-icon i,
.ui-datepicker .ui-datepicker-next .ui-icon i {
	font-size: 22px;
	line-height: 1;
	color: #fff;
}

.ui-datepicker-prev,
.ui-datepicker-next {
	opacity: 1 !important;
    background: none !important;
    height: 100% !important;
}

.ui-datepicker .ui-datepicker-prev span.ui-icon,
.ui-datepicker .ui-datepicker-next span.ui-icon {
	text-indent: 0 !important;
	overflow: visible !important;
	background: none !important;
	width: auto !important;
	height: auto !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.ui-datepicker .ui-datepicker-prev span.ui-icon i,
.ui-datepicker .ui-datepicker-next span.ui-icon i {
	font-size: 22px;
	line-height: 1;
	color: #fff;
}

/* Mirror the left chevron for the "next" button */
.cdc-mirror-x {
	transform: scaleX(-1);
	display: inline-block;
}

.wc-bookings-booking-form .ui-state-disabled, .wc-bookings-booking-form .ui-widget-content .ui-state-disabled, .wc-bookings-booking-form .ui-widget-header .ui-state-disabled {
	opacity: .4;
}

.wc-bookings-booking-cost.price {
	padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    padding-bottom: 20px;
}

/* button.wc-bookings-booking-form-button.single_add_to_cart_button.button.alt.disabled {
	display: none !important;
} */

/* button.wc-bookings-booking-form-button.single_add_to_cart_button.button.alt.disabled {
	background-color: grey !important;
}

.wc-bookings-booking-form-button.alt {
	background-color: var(--orange);
} */

button.wc-bookings-booking-form-button.single_add_to_cart_button.button.alt {
	display: block !important;
	width: 100%;
    background-color: var(--orange) !important;
    border: none !important;
    padding: 10px 20px 9px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ********** WHO WE ARE ********** */

body.page-template-who-we-are header.site-header {
	background-color: var(--blue);
}

body.page-template-who-we-are main {
	margin-top: 125px;
}

/* ********** LOCATION ********** */

body.page-template-location header.site-header {
	background-color: var(--blue);
}

body.page-template-location main {
	margin-top: 125px;
}

/* ********** GALLERY ********** */

body.page-template-gallery header.site-header {
	background-color: var(--blue);
}

body.page-template-gallery main {
	margin-top: 125px;
}

#cdcLightboxModal.modal {
	background-color: rgba(0, 0, 0, .75) !important;
}

#cdcLightboxModal .modal-dialog {
	max-width: 700px !important;
	margin: 0 auto;
}

.cdc-gallery__img {
	border-radius: 16px;
	display: block;
	height: 180px;
	object-fit: cover;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	width: 100%;
}

.cdc-lightbox-trigger:focus-visible .cdc-gallery__img,
.cdc-lightbox-trigger:hover .cdc-gallery__img {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Lightbox nav buttons */
.cdc-lightbox-nav {
	align-items: center;
	background: rgba(0, 0, 0, 0.35);
	border: 0;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	z-index: 5;
}

.cdc-lightbox-prev {
	left: 16px;
}

.cdc-lightbox-next {
	right: 16px;
}

/* Mirror helper (you already use this elsewhere) */
.cdc-mirror-x {
	display: inline-block;
	transform: scaleX(-1);
}

/* ********** TESTIMONIALS ********** */

body.page-template-testimonials header.site-header {
	background-color: var(--blue);
}

body.page-template-testimonials main {
	margin-top: 125px;
}

.cdc-testimonials__intro h1 {
	color: #1557b0;
	font-weight: 700;
}

.cdc-video-carousel-wrap {
	position: relative;
}

.cdc-video-slide {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
}

.cdc-video-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.cdc-video-slide__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	border: 3px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	transform: translate(-50%, -50%);
	backdrop-filter: blur(2px);
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.cdc-video-slide:hover .cdc-video-slide__play {
	transform: translate(-50%, -50%) scale(1.05);
	background-color: rgba(255, 255, 255, 0.16);
}

.cdc-video-slide__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 24px solid #ffffff;
}

#cdcVideoCarousel {
	border-radius: 0;
	overflow: hidden;
}

#cdcVideoCarousel .carousel-control-prev,
#cdcVideoCarousel .carousel-control-next {
	width: 54px;
	opacity: 1;
}

#cdcVideoCarousel .carousel-control-prev-icon,
#cdcVideoCarousel .carousel-control-next-icon {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.cdc-video-thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-behavior: smooth;
}

.cdc-video-thumbs::-webkit-scrollbar {
	height: 8px;
}

.cdc-video-thumbs::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 999px;
}

.cdc-video-thumb {
	flex: 0 0 150px;
	padding: 0;
	border: 2px solid transparent;
	background: transparent;
	opacity: 0.75;
	transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cdc-video-thumb:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.cdc-video-thumb.is-active {
	border-color: #1557b0;
	opacity: 1;
}

.cdc-video-thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.cdc-video-modal .modal-content {
	background-color: #000000;
	color: #ffffff;
}

.cdc-video-modal .btn-close {
	filter: brightness(0) invert(1);
}

.cdc-video-embed {
	background-color: #000000;
}

.cdc-video-embed > #cdcVideoModalFrameWrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.cdc-video-embed > #cdcVideoModalFrameWrap iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

#cdcVideoModalFrameWrap,
#cdcVideoModalFrameWrap iframe {
	width: 100%;
	height: 100%;
}

@media (max-width: 991.98px) {
	.cdc-testimonials__intro {
		text-align: center;
	}

	.cdc-video-slide__play {
		width: 74px;
		height: 74px;
	}

	.cdc-video-slide__play-icon {
		border-top-width: 13px;
		border-bottom-width: 13px;
		border-left-width: 20px;
	}
}

@media (max-width: 575.98px) {
	.cdc-video-thumb {
		flex: 0 0 110px;
	}

	#cdcVideoCarousel .carousel-control-prev,
	#cdcVideoCarousel .carousel-control-next {
		width: 42px;
	}
}

/* ********** WIOA ********** */

body.page-template-wioa header.site-header {
	background-color: var(--blue);
}

body.page-template-wioa main {
	margin-top: 125px;
}

.wioa-sticky-logo {
	position: sticky;
	top: 250px;
}

/* ********** MyCAA ********** */

body.page-template-mycaa header.site-header {
	background-color: var(--blue);
}

body.page-template-mycaa main {
	margin-top: 150px;
}

/* ********** WHY CHOOSE US ********** */

body.page-template-why-choose-us header.site-header {
	background-color: var(--blue);
}

body.page-template-why-choose-us main {
	margin-top: 150px;
}

.why-choose-us-tables-page {
	background: #f3f3f3;
}

.why-choose-us-summary-table-wrap,
.comparison-table-wrap {
	overflow-x: auto;
}

.why-choose-us-summary-table,
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: transparent;
}

.why-choose-us-summary-table th,
.why-choose-us-summary-table td,
.comparison-table th,
.comparison-table td {
	border: 1px solid rgba(0, 0, 0, 0.18);
	padding: 18px 18px;
	vertical-align: top;
}

.why-choose-us-summary-table th {
	width: 25%;
	font-size: 18px;
	font-weight: 700;
	color: #6f6f6f;
	background: transparent;
	text-align: left;
}

.why-choose-us-summary-table td {
	font-size: 18px;
	color: #7a6d63;
}

.summary-cost {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--blue);
	margin-bottom: 10px;
}

.summary-note {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
}

.summary-note-red {
	color: #ff2a1f;
}

.why-choose-us-feature-list {
	margin: 0;
	padding-left: 28px;
}

.why-choose-us-feature-list li {
	font-size: 18px;
	line-height: 1.6;
	color: #7a6d63;
	margin-bottom: 6px;
}

.why-choose-us-feature-list li.feature-red {
	color: #ff2a1f;
	font-weight: 700;
}

.why-choose-us-inline-link {
	font-size: 18px;
	font-weight: 700;
	color: #ff6d0c;
	text-decoration: underline;
}

.comparison-title {
	font-size: 62px;
	line-height: 1.05;
	font-weight: 700;
	color: var(--blue);
}

.comparison-table thead th {
	background: #252c3b;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	white-space: nowrap;
}

.comparison-table tbody td {
	font-size: 18px;
	color: #6f6f6f;
	background: transparent;
}

.comparison-table tbody tr.highlight-row td {
	background: #35a7dc;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
}

.comparison-table tbody tr.highlight-row td:first-child {
	font-weight: 800;
}

.comparison-table tbody td:last-child,
.comparison-table thead th:last-child {
	text-align: center;
}

@media (max-width: 991.98px) {
	.summary-cost {
		font-size: 28px;
	}

	.summary-note,
	.why-choose-us-summary-table th,
	.why-choose-us-summary-table td,
	.why-choose-us-feature-list li,
	.why-choose-us-inline-link,
	.comparison-table thead th,
	.comparison-table tbody td {
		font-size: 16px;
	}

	.comparison-title {
		font-size: 42px;
	}
}

@media (max-width: 767.98px) {
	.why-choose-us-summary-table th,
	.why-choose-us-summary-table td,
	.comparison-table th,
	.comparison-table td {
		padding: 14px 14px;
	}

	.comparison-title {
		font-size: 34px;
	}

	.comparison-table {
		min-width: 900px;
	}
}

/* ********** HELPFUL LINKS ********** */

body.page-template-helpful-links header.site-header {
	background-color: var(--blue);
}

body.page-template-helpful-links main {
	margin-top: 150px;
}

.section-title {
	color: var(--blue);
}

.helpful-links-directory .directory-item {
	padding: 0 0 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.helpful-links-directory .directory-item:last-child {
	margin-bottom: 0;
}

.helpful-links-directory h3 {
	margin-bottom: 18px;
	color: var(--blue);
}

.helpful-links-directory .directory-content p,
.helpful-links-directory .directory-links p {
	margin-bottom: 12px;
}

.helpful-links-directory a {
	color: #ff6d0c;
	text-decoration: underline;
	word-break: break-word;
}

.staffing-accordion .accordion-item {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 18px;
	background: #ffffff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.staffing-accordion .accordion-button {
	background: #ffffff;
	color: var(--blue);
	font-size: 20px;
	font-weight: 700;
	padding: 24px 28px;
	box-shadow: none;
}

.staffing-accordion .accordion-button:not(.collapsed) {
	background: #ffffff;
	color: var(--blue);
	box-shadow: none;
}

.staffing-accordion .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.staffing-accordion .accordion-button::after {
	background-size: 1.2rem;
}

.staffing-accordion .accordion-body {
	padding: 0 28px 28px;
}

.staffing-accordion .accordion-body p {
	margin-bottom: 14px;
}

.staffing-accordion .accordion-body a {
	color: #ff6d0c;
	text-decoration: underline;
	word-break: break-word;
}

@media (max-width: 991.98px) {
	.staffing-accordion .accordion-button {
		font-size: 26px;
		padding: 20px 22px;
	}

	.staffing-accordion .accordion-body {
		padding: 0 22px 22px;
	}
}

@media (max-width: 767.98px) {
	.staffing-accordion .accordion-button {
		font-size: 22px;
		padding: 18px 18px;
	}

	.staffing-accordion .accordion-body {
		padding: 0 18px 18px;
	}
}

/* ********** STEPS TO RDA ********** */

body.page-template-rda header.site-header {
	background-color: var(--blue);
}

body.page-template-rda main {
	margin-top: 150px;
}

.steps-rda-page {
	background: #f5f5f5;
}

.steps-rda-wrap {
	max-width: 980px;
	margin: 0 auto;
}

.steps-rda-title {
	color: var(--blue);
	line-height: 1.15;
}

.steps-rda-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.rda-step-panel {
	background: #ffffff;
	border-radius: 18px;
	padding: 30px 32px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
	border-left: 8px solid var(--blue);
}

.rda-step-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}

.rda-step-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--blue);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.rda-step-header h2 {
	margin-bottom: 0;
	color: var(--blue);
	font-size: 46px;
	line-height: 1;
}

.rda-step-content p,
.rda-step-content li {
	font-size: 18px;
	line-height: 1.7;
	color: #2f2f2f;
}

.rda-step-content p {
	margin-bottom: 16px;
}

.rda-step-content a {
	color: #ff6d0c;
	text-decoration: underline;
	font-weight: 700;
}

.rda-icon-list {
	list-style: none;
	padding-left: 0;
	margin: 0 0 20px;
}

.rda-icon-list li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 10px;
	font-weight: 600;
}

.rda-icon-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 1px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: var(--blue);
}

.rda-congrats {
	color: var(--blue);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
}

.rda-step-panel {
	background: #ffffff;
	border-radius: 20px;
	padding: 34px 36px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--blue);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.rda-step-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 26px;
}

.rda-step-badge {
	width: 46px;
	height: 46px;
	font-size: 20px;
}

.rda-step-header h2 {
	font-size: 24px;
	line-height: 1.1;
}

.rda-step-content p,
.rda-step-content li {
	font-size: 17px;
	line-height: 1.75;
}

.rda-icon-list {
	margin: 0 0 24px;
}

.rda-icon-list li {
	padding-left: 30px;
	margin-bottom: 12px;
	font-weight: 600;
}

.rda-icon-list li::before {
	top: 3px;
	font-size: 15px;
}

.rda-congrats {
	color: var(--blue);
	font-size: 28px;
	font-weight: 700;
}

@media (max-width: 991.98px) {
	.rda-step-panel {
		padding: 24px 24px;
	}

	.rda-step-header h2 {
		font-size: 36px;
	}

	.rda-step-content p,
	.rda-step-content li {
		font-size: 16px;
	}
}

@media (max-width: 767.98px) {
	.steps-rda-list {
		gap: 20px;
	}

	.rda-step-panel {
		padding: 20px 18px;
		border-left-width: 6px;
	}

	.rda-step-header {
		gap: 12px;
		margin-bottom: 18px;
	}

	.rda-step-badge {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.rda-step-header h2 {
		font-size: 28px;
	}

	.rda-icon-list li {
		padding-left: 28px;
	}

	.rda-congrats {
		font-size: 26px;
	}
}

/* ********** CART ********** */

.cart-list .item-image.col-3 {
	display: none !important;
}

.cart-list .item-name.col-6 {
	width: 75% !important;
}

.cart-list .remove.col-3 {
	width: 25% !important;
}

.cart-list .bootscore-custom-render-total.h6.mb-4 {
	margin-bottom: 5px !important;
}

.cart-list a.remove.remove_from_cart_button.link-danger {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

dt.variation-BookingDate,
dd.variation-BookingDate p {
	font-size: 12px !important;
}

.cart-list .cart-badge.mb-2,
.cart-list p.cart-product-excerpt.small.text-body-secondary.text-truncate.mb-0 {
	display: none !important;
}

.cart-list .item-quantity {
	font-size: 14px !important;
}

header .btn .cart-total {
	display: none !important;
}

.woocommerce-mini-cart__total.total.h5.d-flex.justify-content-between {
	font-size: 14px;
}

.woocommerce-mini-cart__buttons.buttons a {
	font-size: 16px;
	background-color: var(--blue);
}

.offcanvas .btn-close {
	height: 10px;
    padding: 2px;
    position: relative;
    top: -2px;
}

/* ********** ADDITIONAL ITEMS ********** */

body.page-template-additional-items header.site-header {
	background-color: var(--blue);
}

body.page-template-additional-items main {
	margin-top: 200px;
}

/* ********** CONTACT ********** */

body.page-template-contact header.site-header {
	background-color: var(--blue);
}

body.page-template-contact main {
	margin-top: 200px;
}

.contact-row-one .ff-btn {
	width: 100%;
    background-color: var(--blue) !important;
}

.contact-testimonials {
	padding-bottom: var(--section-padding-y-lg) !important;
}

/* ********** HELP CENTER ********** */

.list-group-item.active {
	background-color: var(--blue);
	border-color: var(--blue);
}

.accordion-button:not(.collapsed) {
	background-color: var(--blue);
	color: var(--white);
}

/* ********** POLICY PAGES ********** */

.hero-policy .container {
	max-width: 850px !important;
}

.hero-policy h3 strong {
	font-weight: 700 !important;
	font-size: 20px !important;
}

/* ********** ACCOUNT / CART / CHECKOUT ********** */

.page-id-15 .col-lg-3.order-first.order-lg-2,
.page-id-16 .col-lg-3.order-first.order-lg-2,
.page-id-17 .col-lg-3.order-first.order-lg-2 {
    display: none !important;
}

.page-id-15 .col-lg-9,
.page-id-16 .col-lg-9,
.page-id-17 .col-lg-9 {
	width: 100% !important;
}

#wc-memberships-members-area .woocommerce {
	display: flex;
	margin-top: 50px;
}

#wc-memberships-members-area nav.woocommerce-MyAccount-navigation.wc-memberships-members-area-navigation {
	width: 33.333%;
}

#wc-memberships-members-area .col-md-8 {
	width: 66.667%;
}

/* Hide extra product metadata on the Cart block for this page only — do not target checkout
   order summary (same wrapper class), or rescheduling/refresher line item fields disappear there. */
.page-id-16 .wp-block-woocommerce-cart .wc-block-components-product-metadata,
.page-id-16 .wc-block-cart .wc-block-components-product-metadata {
	display: none;
}

/* Checkout order summary: always show line-item meta (class dates, refresher choice, etc.) */
.wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-product-metadata {
	display: block;
}

/* Blocks insert " / " between meta rows (aria-hidden); hide in order summary for cleaner layout */
.wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-product-details span[aria-hidden="true"] {
	display: none;
}

.page-id-17 .site-content.container {
	max-width: 90%;
}

#content .woocommerce .col-md-4 {
	width: 25%;
}

#content .woocommerce .col-md-8 {
	width: 75%;
}

.page-id-17 .shop_table tr th:first-of-type,
.page-id-17 .shop_table tr td:first-of-type {
	max-width: 200px;
}

nav.woocommerce-MyAccount-navigation.wc-memberships-members-area-navigation {
	padding-right: 20px;
}

nav.woocommerce-MyAccount-navigation.wc-memberships-members-area-navigation ul {
	list-style: none;
	padding-left: 0;
}

nav.woocommerce-MyAccount-navigation.wc-memberships-members-area-navigation ul li a {
	padding: 8px 16px !important;
    border: 1px solid #dee2e6;
    width: 100%;
    display: block;
    text-decoration: none;
    font-size: 16px !important;
    color: #212529bf;
}

.membership-content-title a {
/* 	font-size: 16px !important; */
    color: #212529bf;
	text-decoration: none;
}

.membership-content-excerpt {
	display: none;
}

/* Hide Memberships auto-message on the order received page */
.woocommerce-order .custom-ce-message + p,
.after-order-message {
    display: none !important;
}

/* Hide Cancel button in My Memberships area */
.woocommerce-account .membership-actions .cancel {
    display: none !important;
}

div#order-notes {
    display: none;
}

.checkout-policy {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid #f5c2c0;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
    background: #fdecea;
    color: #7a1f1f;
}

.checkout-policy p {
    margin: 0 0 8px 0;
}

.checkout-policy p:first-child {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}

.checkout-policy p:last-child {
    margin-bottom: 0;
}

.checkout-policy a {
    color: #7a1f1f;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-policy-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* The moved-in checkbox brings its own "I have read and agree to..."
   label along with it — redundant next to the linked policy name right
   beside it, so hide just the text and keep the checkbox control itself. */
.checkout-policy-row .wc-block-components-checkbox__label {
    display: none;
}

.checkout-policy-row .wc-block-components-checkbox {
    margin: 0;
}

.checkout-policy p {
    font-size: var(--wp--preset--font-size--small, 14px);
    line-height: 20px;
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wp-block-woocommerce-checkout-terms-block .wc-block-components-checkbox__label {
    display: none;
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wp-block-woocommerce-checkout-terms-block {
    padding-top: 0;
	border: none;
}

.wc-block-components-address-form__cdc-agd-number::after {
    content: "If you do not have an AGD (Academy of General Dentistry) number, you may leave this blank.";
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.ppcp-place-order-description {
	text-align: left !important;
	font-size: 14px;
}

.small.bootscore-copyright {
	font-size: 0.75em !important;
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wp-block-woocommerce-checkout-terms-block {
	display: block !important;
}

:root :where(.wp-element-button, .wp-block-button__link) {
	background-color: #0070ba !important;
}

.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	border: 1px solid hsla(0, 0%, 7%, .11);
    outline: none;
    box-shadow: none;
}


@media (max-width: 991px) {
	
	#content .woocommerce .col-md-4,
	#content .woocommerce .col-md-8 {
		width: 100%;
	}
	
	.page-id-17 .shop_table tr th::before,
	.page-id-17 .shop_table tr td::before {
		display: none;
	}
	
}

/* ********** JOB PAGES ********** */

body.page-template-post-a-job header.site-header {
	background-color: var(--blue);
}

body.page-template-post-a-job main {
	margin-top: 150px;
}

/* Force full-width on My Job Listings page (no sidebar) */
body.page-my-job-listings #content .row > .col-lg-3.order-first.order-lg-2,
body.page-my-job-listings #content .row > .col-lg-3.order-last.order-lg-2,
body.page-my-job-listings #content .row > .col-lg-3 {
	display: none !important;
}

body.page-my-job-listings #content .row > .col-lg-9,
body.page-my-job-listings #content .row > .col {
	flex: 0 0 100% !important;
	max-width: 100% !important;
	width: 100% !important;
}

.cdc-post-job-form {
	max-width: 100%;
    margin: 0 !important;
    padding: 0;
}

.cdc-job-form-section {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	padding: 28px;
	margin-bottom: 28px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
}

.cdc-job-form-section h2 {
	margin-bottom: 20px;
	color: var(--blue);
	font-size: 20px !important;
}

.cdc-job-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
}

.cdc-job-form-field-full {
	grid-column: 1 / -1;
}

.cdc-job-form-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
}

.cdc-job-form-field input,
.cdc-job-form-field select,
.cdc-job-form-field textarea {
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #ffffff;
	font-size: 14px;
}

.cdc-job-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
}

.cdc-job-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cdc-job-checkbox input {
	width: auto;
}

.cdc-job-form-actions {
	text-align: center;
	margin-top: 30px;
}

.cdc-job-notice {
	max-width: 100%;
	margin: 0 0 20px 0 !important;
	padding: 14px 18px;
	border-radius: 5px;
	font-weight: 600;
}

.cdc-job-notice-success {
	background: #eaf8ef;
	color: #1f6b3b;
	border: 1px solid #b9e2c7;
}

.cdc-job-notice-error {
	background: #fff0f0;
	color: #a12828;
	border: 1px solid #efc2c2;
}

.required {
	color: #d33;
}

.field-help {
	font-size: 14px;
	margin-top: 6px;
	color: #666;
}

@media (max-width: 767.98px) {
	.cdc-job-form-grid,
	.cdc-job-checkbox-grid {
		grid-template-columns: 1fr;
	}

	.cdc-job-form-section {
		padding: 20px;
	}
}

/* Dashboard */

.cdc-job-dashboard {
	max-width: 1100px;
	margin: 0 auto;
}

.cdc-job-dashboard-title {
	margin-bottom: 24px;
	color: var(--blue);
}

.cdc-job-dashboard-table-wrap {
	overflow-x: auto;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
}

.cdc-job-dashboard-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 900px;
}

.cdc-job-dashboard-table th,
.cdc-job-dashboard-table td {
	padding: 16px 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	text-align: left;
	vertical-align: top;
	font-size: 14px;
}

.cdc-job-dashboard-table th {
	background: #f8f8f8;
	font-weight: 700;
	color: var(--blue);
}

.cdc-job-dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cdc-job-dashboard-actions a {
	color: var(--blue);
	text-decoration: none;
}

.cdc-job-edit-panel {
	max-width: 1100px;
	margin: 0 auto 32px;
	padding: 24px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
}

.cdc-job-edit-panel h3 {
	margin-bottom: 20px;
	color: var(--blue);
}

/* Single Job */

body.job-template-default header.site-header {
	background-color: var(--blue);
}

body.job-template-default main {
	margin-top: 150px;
}

.single-job #content.site-content {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.cdc-job-single {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
	padding: 28px;
}

.cdc-job-single__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.cdc-job-single__title {
	margin: 0;
	font-size: 44px;
	line-height: 1.05;
	color: #111;
}

.cdc-job-single__subhead {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 10px 0 16px;
}

.cdc-job-single__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 5px;
	background: #eaf1ff;
	color: var(--blue);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.cdc-job-single__posted {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.55);
}

.cdc-job-single__meta-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 16px;
}

.cdc-job-single__meta-table th,
.cdc-job-single__meta-table td {
	padding: 6px 0;
	vertical-align: top;
	font-size: 14px;
}

.cdc-job-single__meta-table th {
	width: 280px;
	padding-right: 16px;
	font-weight: 700;
	color: #2b2b2b;
	white-space: nowrap;
	font-size: 14px;
}

.cdc-job-single__meta-table td {
	color: #2b2b2b;
}

.cdc-job-single__status {
	padding: 10px 12px;
	border-radius: 12px;
	font-weight: 700;
}

.cdc-job-single__status--filled {
	background: #eaf8ef;
	border: 1px solid #b9e2c7;
	color: #1f6b3b;
}

.cdc-job-single__status--expired {
	background: #fff0f0;
	border: 1px solid #efc2c2;
	color: #a12828;
}

.cdc-job-single__body-grid {
	margin-top: 22px;
}

.cdc-job-single__section-title {
	font-size: 22px !important;
	margin: 0 0 14px;
	color: var(--blue);
}

.cdc-job-single__section-title--card {
	font-size: 18px !important;
	margin-bottom: 12px;
}

.cdc-job-single__content {
	color: #2b2b2b;
	font-size: 16px;
	line-height: 1.75;
}

.cdc-job-single__cards-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.cdc-job-single__card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
	padding: 25px;
}

.cdc-job-single__list {
	margin: 0;
	padding-left: 18px;
	font-size: 14px;
}

.cdc-job-single__list--tight {
	padding-left: 18px;
}

.cdc-job-single__list li {
	margin-bottom: 8px;
}

.cdc-job-single__list li:last-child {
	margin-bottom: 0;
}

.cdc-job-single__card a {
	color: #ff6d0c;
	text-decoration: underline;
	font-weight: 700;
	word-break: break-word;
}

@media (max-width: 991.98px) {
	.cdc-job-single__title {
		font-size: 34px;
	}

	.cdc-job-single__meta-table th {
		width: 200px;
	}

	.cdc-job-single__cards-row {
		grid-template-columns: 1fr;
	}
}

/* Jobs Archive /jobs */

body.post-type-archive-job header.site-header {
	background-color: var(--blue);
}

body.post-type-archive-job main {
	margin-top: 150px;
}

/* Employer */

.cdc-employer-account-wrap {
	max-width: 1100px;
	margin: 0 auto;
}

.cdc-employer-account-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.cdc-employer-account-title {
	margin-bottom: 0;
	color: var(--blue);
}

.cdc-employer-account-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.cdc-employer-register-form .btn-cta {
	width: 100%;
}

.page-id-17 header.site-header {
	background-color: var(--blue);
}

.page-id-17 main {
	margin-top: 150px;
}

.page-template-post-a-job .why-choose-us-summary h1 {
	padding-left: 0 !important;
}

.page-template-post-a-job .why-choose-us-summary .cdc-job-notice-error {
	margin-left: 0 !important;
	background-color: transparent !important;
	color: #000 !important;
	border: none !important;
	padding-left: 0 !important;
}

/* Jobs archive (Find a Dental Position) */

.cdc-jobs-archive__layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.cdc-jobs-filter-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
	padding: 18px 18px;
	position: sticky;
	top: 140px;
}

.cdc-jobs-filter-title {
	margin: 0 0 14px;
	font-size: 20px !important;
	color: var(--blue);
}

.cdc-jobs-filter-field {
	margin-bottom: 14px;
}

.cdc-jobs-filter-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 14px;
}

.cdc-jobs-filter-field input,
.cdc-jobs-filter-field select {
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #ffffff;
	font-size: 14px;
}

section.py-4.cdc-jobs-archive {
	padding-top: 0 !important;
}

.cdc-jobs-filter-details {
	margin-top: 10px;
}

.cdc-jobs-filter-details summary {
	cursor: pointer;
	font-weight: 500;
	color: var(--blue);
	margin-bottom: 10px;
	font-size: 14px;
}

.cdc-jobs-filter-checkboxes {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 8px;
}

.cdc-jobs-filter-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cdc-jobs-filter-checkbox input {
	width: auto;
}

.cdc-jobs-filter-actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.cdc-jobs-filter-actions .btn-cta {
	flex: 1 1 0;
}

.cdc-jobs-results-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.cdc-jobs-results-count,
.cdc-jobs-results-title {
	margin: 0;
	color: var(--black);
    font-weight: 400 !important;
    font-size: 14px !important;
}

.cdc-jobs-results-list {
	display: grid;
	gap: 14px;
}

.cdc-job-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	/* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
	padding: 18px 18px;
}

.cdc-job-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.cdc-job-card__title {
	margin: 0;
	font-size: 20px !important;
	line-height: 1.15;
}

.cdc-job-card__title a {
	color: var(--blue);
	text-decoration: none;
}

.cdc-job-card__title a:hover {
	text-decoration: underline;
}

.cdc-job-card__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 5px;
	background: #eaf1ff;
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.cdc-job-card__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px 14px;
	color: #2b2b2b;
	font-size: 14px;
	margin-bottom: 10px;
}

.cdc-job-card__excerpt {
	color: #2b2b2b;
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 12px;
}

.cdc-job-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.cdc-job-card__posted {
	color: rgba(0, 0, 0, 0.55);
	font-size: 13px;
	font-weight: 600;
}

.cdc-job-card__cta {
	color: #ff6d0c;
	font-size: 14px;
	text-decoration: underline;
}

.cdc-jobs-pagination .page-numbers {
	margin-top: 18px;
}

.cdc-jobs-empty {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	padding: 18px 18px;
}

.cdc-jobs-empty a {
	color: #ff6d0c;
	font-weight: 800;
	text-decoration: underline;
}

@media (max-width: 991.98px) {
	.cdc-jobs-archive__layout {
		grid-template-columns: 1fr;
	}

	.cdc-jobs-filter-card {
		position: static;
		top: auto;
	}

	.cdc-job-card__meta {
		grid-template-columns: 1fr;
	}
}

/* Manage Job Listings */

body.page-id-384348 header.site-header {
	background-color: var(--blue);
}

body.page-id-384348 main {
	margin-top: 150px;
}

/* Post a Job - login + register (two columns) */

.cdc-job-auth-columns {
	max-width: 100%;
	margin: 0 auto 32px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	align-items: stretch;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.cdc-job-auth-column {
	padding: 28px 32px 32px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.cdc-job-auth-heading {
	font-size: 22px !important;
	margin-bottom: 8px !important;
	color: var(--blue) !important;
}

.cdc-job-auth-intro {
	font-size: 14px;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.45;
}

.cdc-job-auth-divider {
	width: 1px;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.08) 12%,
		rgba(0, 0, 0, 0.08) 88%,
		rgba(0, 0, 0, 0)
	);
	min-height: 100%;
}

/* WP login form - flex so submit sits at bottom (aligned with register column) */
.cdc-job-auth-column--login #loginform {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	margin: 0;
}

/* WP login form - match job form field styling */
.cdc-job-auth-column--login #loginform p {
	margin-bottom: 16px;
}

.cdc-job-auth-column--login #loginform label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 15px;
}

.cdc-job-auth-column--login #loginform input[type="text"],
.cdc-job-auth-column--login #loginform input[type="password"] {
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #ffffff;
	font-size: 15px;
}

.cdc-job-auth-column--login #loginform .forgetmenot {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 0;
	font-weight: 500;
}

.cdc-job-auth-column--login #loginform .forgetmenot input {
	width: auto;
}

.cdc-job-auth-column--login #loginform .submit {
	margin-top: auto;
	margin-bottom: 0;
	padding-top: 8px;
}

.cdc-job-auth-column--login #loginform input[type="submit"] {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	background: var(--blue);
	color: #fff;
	cursor: pointer;
	transition: opacity 0.15s ease;
	width: 100%;
}

.cdc-job-auth-column--login #loginform input[type="submit"]:hover {
	opacity: 0.92;
}

.cdc-employer-register-form {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	margin: 0;
}

.cdc-job-auth-register-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 0 0 auto;
	margin-bottom: 20px;
}

.login-submit {
	margin-top: auto;
	margin-bottom: 0 !important;
}

.cdc-job-auth-column--register .cdc-job-form-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
}

.cdc-job-auth-column--register .cdc-job-form-field input {
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #ffffff;
	font-size: 15px;
}

.cdc-job-auth-column--register .cdc-job-form-actions {
	margin-top: auto;
	margin-bottom: 0;
	padding-top: 8px;
	text-align: left;
}

@media (max-width: 991.98px) {
	.cdc-job-auth-columns {
		grid-template-columns: 1fr;
	}

	.cdc-job-auth-divider {
		display: none;
	}

	.cdc-job-auth-column--register {
		border-top: 1px solid rgba(0, 0, 0, 0.08);
		padding-top: 28px;
	}
}

@media (max-width: 575.98px) {
	.cdc-job-auth-column {
		padding: 22px 20px 26px;
	}
}

/* ********** BEFORE YOUR COURSE ********** */

body.page-template-before-your-course header.site-header {
	background-color: var(--blue);
}

body.page-template-before-your-course main {
	margin-top: 150px;
}

/* ********** DENTAL ASSISTING / WIOA STEPS ********** */

body.page-template-dental-assisting header.site-header {
	background-color: var(--blue);
}

body.page-template-dental-assisting main {
	margin-top: 150px;
}

body.page-template-dental-assisting video {
	width: 100%;
}

body.page-template-dental-assisting h1 {
	font-size: 30px !important;
}

body.page-template-dental-assisting h2 {
	font-size: 17px !important;
}

body.page-template-dental-assisting h3 {
	font-size: 20px !important;
}

body.page-template-dental-assisting ol {
	padding-left: 19px;
}

body.page-template-dental-assisting .wioa-logo {
	max-width: 175px;
}

.gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
	background-color: var(--orange) !important;
	color: var(--white) !important;
	border: none !important;
}

.gform_previous_button,
.gform_next_button,
.gform_button {
	margin-top: 0.5em !important;
    position: relative !important;
    min-width: 125px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-family: "Inter", Sans-serif;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.4em;
    color: #fff !important;
    background-color: #1355a6 !important;
    border-width: 0;
    border-radius: 0;
    box-shadow: 0px 0px 9px 2px rgba(2.999999999999992, 77.99999999999989, 177, 0.34);
    padding: 1em 1.8em 1em 1.8em !important;
    min-height: 3em !important;
}

.gform_button {
	background-color: var(--orange) !important;
}

@media (min-width: 992px) {

	#field_3_6 video {
		position: sticky;
		top: 200px;
	}

}

/* ********** POLICY PAGES (Terms, Privacy, Refund, Accessibility, Course Completion) ********** */

.page-template-terms-and-conditions header.site-header,
.page-template-privacy-policy header.site-header,
.page-template-accessibility-statement header.site-header,
.page-template-refund-policy header.site-header,
.page-template-course-completion-certification-policy header.site-header,
.page-template-rda-review-manual header.site-header {
	background-color: var(--blue);
}

.page-template-terms-and-conditions .hero-policy.py-5,
.page-template-privacy-policy .hero-policy.py-5,
.page-template-accessibility-statement .hero-policy.py-5,
.page-template-refund-policy .hero-policy.py-5,
.page-template-course-completion-certification-policy .hero-policy.py-5,
.page-template-rda-review-manual .hero-policy.py-5 {
	margin-top: 125px;
}

/* ********** FOOTER ********** */
footer {
	font-family: 'Poppins', sans-serif !important;
	background-color: var(--blue);
	color: var(--white);
}
.footer-logo {
	max-width: 150px !important;
}

footer h6 {
	font-weight: 600 !important;
	font-size: 18px !important;
}

.footer-desc p,
footer nav li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 400 !important;
	font-size: 13px !important;
}

footer address,
footer .support-email {
	font-size: 14px;
}

.support-email  {
	color: #393939;
}

.subfooter {
	opacity: .67;
}

a.btn.btn-primary.shadow.position-fixed.zi-1000.top-button.visible {
	background-color: var(--blue);
}

.top-button {
	display: none;
}

.small.bootscore-copyright a {
	color: var(--white);
}

.footer-social i {
	font-size: 24px;
}

@media (max-width: 767px) {
	
	.subfooter,
	.subfooter .text-end {
		text-align: center !important;
		font-size: 13px !important;
	}
	
}

/* HOME PAGE MODAL */

.ce-course-announcement {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.ce-course-announcement span {
    font-size: 22px;
    line-height: 1.2;
	color: var(--blue);
}

.ce-course-announcement .pace-text p {
    margin-bottom: 0.75rem;
    color: #222222;
}

#ceAnnouncementModal .modal-content {
    border: 0;
    border-radius: 16px;
    padding: 1rem 1.25rem 1.5rem;
}

#ceAnnouncementModal .modal-dialog {
    max-width: 520px;
}

/* ********** MEDIA QUERIES ********** */

@media (max-width: 991px) {
	
	.container {
		max-width: 95% !important;
	}
	
	.hero .col-lg-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x) * .5) !important;
	}
	
}

@media (max-width: 767px) {
	
	#wc-memberships-members-area .woocommerce {
		display: block;
	}

	#wc-memberships-members-area nav.woocommerce-MyAccount-navigation.wc-memberships-members-area-navigation {
		width: 100%;
	}

	#wc-memberships-members-area .col-md-8 {
		width: 100%;
	}
	
	.membership-content td {
		display: flex !important;
		flex-direction: column !important;
    	text-align: left !important;
	}
	
	.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
		text-align: left !important;
	}
	
	td.membership-content-excerpt,
	td.membership-content-actions.order-actions {
		display: none !important;
	}
	
	/* NAVIGATION */
	.navbar-brand {
		max-width: 45%;
    	margin-right: 0;
	}

	.navbar-brand img {
		height: initial;
		max-width: 115px;
	}

	.header-actions.d-flex.align-items-center {
		max-width: 50%;
	}

	/* Mobile header restructure: announcement bar becomes the top row,
	   phone/address are dropped, and the account/cart/hamburger icons
	   move down next to the logo via .mobile-nav-actions in header.php. */
	.header-actions.d-flex {
		display: block !important;
	}

	.announcement-bar {
		width: 100%;
		margin-left: 0;
	}

	.announcement-bar::before, .announcement-bar::after {
		background: initial !important;
	}

	.top-bar-info {
		display: none;
	}

}

/* Tablet (992px and below, matching the d-lg-none breakpoint that reveals
   .mobile-nav-actions): the address/phone stay on the top bar here, but the
   account/cart/hamburger icons move down next to the logo like on mobile,
   so they need the same white/bordered styling. */
@media (max-width: 991.98px) {

	.navbar-brand img {
		margin-left: 0;
	}

	.top-bar-right {
		width: auto;
		justify-content: flex-end;
	}

	.mobile-nav-actions i {
		color: var(--white);
	}

	.mobile-nav-actions .btn {
		border: 1px solid rgba(255, 255, 255, 0.6);
		border-radius: 6px;
		padding: 6px 10px;
	}

	.mobile-nav-actions .cart-toggler {
		top: 0 !important;
	}

}

@media (max-width: 525px) {
	
	.list-inline-item,
	.list-inline-item.ms-3 {
		display: block;
		margin-left: 0 !important;
	}
	
}

@media (max-width: 445px) {
	
	.wc-block-components-checkbox.wc-block-components-validated-checkbox-control.wc-block-components-address-form__cdc-policy_agreement {
		margin-top: 15px;
	}
	
}

/* =============================================
   HOME PAGE RESPONSIVE
   ============================================= */

@media (max-width: 991px) {

	.home-hero__content {
		padding: 3rem 0 2rem;
	}

	.home-hero__heading {
		font-size: 1.6rem;
	}

	.home-hero__img-wrap {
		justify-content: center;
	}

	.home-hero__img {
		max-height: 340px;
	}

	.home-before-badge {
		position: static;
		display: inline-block;
		margin-top: 1rem;
	}

}

@media (max-width: 767px) {

	.home-hero {
		text-align: center;
	}

	.home-hero__content {
		order: 2;
		padding: 2rem 0;
	}

	.home-hero__img-wrap {
		order: 1;
	}

	.home-hero__list li {
		text-align: left;
		font-size: 15px;
	}

	.home-check-list li {
		text-align: left;
	}

	.home-section-title {
		font-size: 1.4rem;
	}

	.before-your-course .col-lg-6,
	.home-cad-cam .col-lg-6,
	.home-da .col-lg-6 {
		text-align: center;
	}

}

/* -------------------------------------------------------------------------
   CE package course (single-ce_course + package-courses partial)
   ------------------------------------------------------------------------- */
/* Tab triggers stay in DOM for Bootstrap; strip is not shown */
.ce-package-tabs {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ce-package-tabs .nav-link {
	font-size: 0.9rem;
}

.ce-package-checklist__item .ce-package-jump-tab {
	flex-shrink: 0;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Currently open module (matches visible tab pane) */
.ce-package-checklist__item.is-active-module {
	background-color: rgba(13, 110, 253, 0.1);
	border-color: rgba(13, 110, 253, 0.45);
	box-shadow: inset 3px 0 0 0 var(--bs-primary, #0d6efd);
}

.ce-package-checklist__item.is-active-module .ce-package-jump-tab {
	background-color: var(--bs-primary, #0d6efd);
	border-color: var(--bs-primary, #0d6efd);
	color: #fff;
}

.ce-package-checklist__item.is-active-module .ce-package-jump-tab:hover,
.ce-package-checklist__item.is-active-module .ce-package-jump-tab:focus {
	background-color: var(--bs-primary, #0d6efd);
	filter: brightness(0.92);
	color: #fff;
}

.ce-package-checklist__item.ce-package-checklist__item--locked {
	cursor: default;
}

.ce-package-checklist__item.is-complete {
	border-left: 4px solid var(--bs-success, #198754);
	background-color: rgba(25, 135, 84, 0.06);
}

.ce-package-checklist__item.is-complete.is-active-module {
	background-color: rgba(13, 110, 253, 0.08);
	box-shadow: inset 3px 0 0 0 var(--bs-primary, #0d6efd), inset 6px 0 0 0 var(--bs-success, #198754);
}

.ce-package-checklist__item .ce-package-done-badge {
	font-weight: 600;
	font-size: 0.7rem;
	vertical-align: middle;
}

.ce-package-tab-panels .content img,
.ce-package-reading .content img {
	max-width: 100%;
	height: auto;
}

.ce-package-checklist .list-group-item {
	border-radius: 0 !important;
}

/* 16:9 embed wrapper (Course Content / ACF HTML with iframe) */
.responsive-video {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

/* Fallback when aspect-ratio is unsupported */
@supports not (aspect-ratio: 16 / 9) {
	.responsive-video {
		height: 0;
		padding-bottom: 56.25%;
		aspect-ratio: unset;
	}
}

.responsive-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.wonderplugin-pdf-iframe {
	width: 100%;
    height: 80vh;
	border: 1px solid #000;
}

.offcanvas .item-quantity .variation {
	flex-direction: column;
	margin: 10px 0 !important;
}

.wp-block-woocommerce-checkout-order-summary-cart-items-block h3.wc-block-components-product-name {
    font-size: 16px !important;
}

body.woocommerce-cart header.site-header {
	background-color: var(--blue);
}

body.woocommerce-cart main {
	margin-top: 150px;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	text-align: center;
}

body.woocommerce-checkout header.site-header {
	background-color: var(--blue);
}

body.woocommerce-checkout main {
	margin-top: 150px;
}

body.woocommerce-checkout h2.wc-block-components-title.wc-block-components-checkout-step__title {
    font-size: 20px !important;
}

.wc-block-components-product-metadata span {
	display: block;
}

body.woocommerce-checkout span.wc-block-components-product-details__name {
    font-weight: 600;
    color: #484848;
	margin-top: 5px;
}

body.woocommerce-checkout .wc-block-components-product-metadata__description,
body.woocommerce-checkout .wc-block-cart-item__prices {
    display: none !important;
}

.youtube-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

/* ---------- WIOA eligibility step wizard (/dental-assisting) ----------
 * Informational multi-page walkthrough, not a real form — plain JS shows
 * one .wioa-step panel at a time. No submission, no field validation. */

.wioa-wizard-nav {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.wioa-wizard-nav-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
}

.wioa-wizard-nav-dot {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	background: #e9ecef;
	color: #6c757d;
	transition: background-color 150ms ease, color 150ms ease;
}

.wioa-wizard-nav-item.is-active .wioa-wizard-nav-dot {
	background: var(--orange);
	color: #fff;
}

.wioa-wizard-nav-item.is-done .wioa-wizard-nav-dot {
	background: var(--blue);
	color: #fff;
}

.wioa-wizard-nav-label {
	font-size: 15px;
	color: #495057;
}

.wioa-wizard-nav-item.is-active .wioa-wizard-nav-label {
	color: var(--orange);
	font-weight: 600;
}

.wioa-wizard-nav-item.is-done .wioa-wizard-nav-label {
	color: var(--blue);
}

.wioa-wizard-nav-rule {
	flex: 1 1 40px;
	height: 1px;
	background: #dee2e6;
	margin: 0 1rem;
	min-width: 24px;
}

.wioa-step {
	display: none;
}

.wioa-step.is-active {
	display: block;
}

.wioa-step video {
	width: 100%;
}

.wioa-step .orange-box {
	background: var(--orange);
	color: #fff;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin: 1.25rem 0;
}

.wioa-step .orange-box strong {
	color: #fff;
}

.wioa-step .popup-a {
	color: var(--orange);
	text-decoration: underline;
}

.wioa-wizard-controls {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}

.wioa-wizard-controls .btn-prev {
	visibility: hidden;
}

.wioa-wizard-controls .btn-prev.is-visible {
	visibility: visible;
}

.wioa-wizard-controls .btn-next {
	display: none;
}

.wioa-wizard-controls .btn-next.is-visible {
	display: inline-block;
}

/* Below ~992px, five full labels don't fit in one row — rather than lose
 * the labels (dot-only) or let flex-wrap break it into an uneven layout,
 * switch to a grid: 2 per row on tablet, 1 per row on phones. Connecting
 * rules only make sense in the single horizontal row, so they're dropped
 * here in favor of row spacing. */
@media (max-width: 991.98px) {
	.wioa-wizard-nav {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.6rem 1rem;
	}
	.wioa-wizard-nav-label {
		display: inline;
	}
	.wioa-wizard-nav-rule {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.wioa-wizard-nav {
		grid-template-columns: 1fr;
	}
}

.youtube-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Assign Seats (My Account) */
.cdc-seats-order {
	margin-bottom: 2rem;
}
.cdc-seats-order h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.cdc-seats-table td {
	vertical-align: middle;
}
.cdc-seat-assign-form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.4rem;
	min-width: 200px;
}
.cdc-seat-assign-form input[type="text"],
.cdc-seat-assign-form input[type="email"] {
	max-width: none;
	width: 100%;
}
.cdc-seat-assigned-badge {
	display: inline-block;
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
	background: #e6f4ea;
	color: #1e7e34;
	font-size: 0.85rem;
	font-weight: 600;
}


/* Hide the "Additional information" block (checkout consent checkboxes +
   marketing questions) from customer-facing order views — thank-you page
   and My Account > Orders. Nothing lost: the data still saves to order
   meta and stays fully visible to staff in wp-admin, which renders order
   details through a separate path this stylesheet doesn't touch. */
.wc-block-order-confirmation-additional-fields-wrapper {
	display: none;
}

.cdc-device-notice {
	font-size: 13px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* "Browse More Courses" mini-cart button — on-brand blue outline
 * (var(--blue), #1355a6) rather than Bootstrap's default --bs-primary
 * (#0d6efd), which reads as generic/off-brand next to the site's own blue. */
.cdc-btn-outline-brand {
	background: #fff !important;
	border: 1px solid var(--blue, #1355a6) !important;
	color: var(--blue, #1355a6) !important;
}
.cdc-btn-outline-brand:hover,
.cdc-btn-outline-brand:focus {
	background: var(--blue, #1355a6) !important;
	border-color: var(--blue, #1355a6) !important;
	color: #fff !important;
}