:root {
	--nasp-red: #af1531;
	--nasp-red-bright: #c91829;
	--nasp-red-light: #feeef1;
	--nasp-blue: #1C2769;
	--nasp-blue-bright: #0D22A4;
	--nasp-blue-light: #E9F1FB;
	--nasp-gray: #CDCBCB;
	--nasp-gray-dark: #222222;
	--nasp-gray-light: #ededed;
	
	--fc-page-bg-color: transparent;
	--fc-button-bg-color: #af1531;
    --fc-button-border-color: #af1531;
    --fc-button-hover-bg-color: #c91829;
    --fc-button-hover-border-color: #c91829;
    --fc-button-active-bg-color: #c91829;
    --fc-button-active-border-color: #c91829;
}

::selection {
    background: var(--nasp-gray-light);
}
::-moz-selection {
    background: var(--nasp-gray-light);
}
input::selection {
    background: var(--nasp-gray);
}
input::-moz-selection {
    background: var(--nasp-gray);
}

/*
 * General
 */

.wp-block-button__link {
	font-family: "Gotham HTF", sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
	padding: 13px 40px;
	border-radius: 0;
	color: #ffffff;
	background-color: var(--nasp-red);
	box-shadow: none !important;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-block-button__link:active {
	color: #ffffff;
	background: var(--nasp-red-bright);
}

button,
input[type=button],
input[type=submit] {
	font-family: "Gotham HTF", sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
	padding: 13px 40px;
	border-radius: 0;
	border: 3px solid var(--nasp-red);
	box-shadow: none !important;
}

button:hover,
input[type=button]:hover,
input[type=submit]:hover,
button:focus,
input[type=button]:focus,
input[type=submit]:focus {
	background: var(--nasp-red-bright);
	border: 3px solid var(--nasp-red-bright);
}

label {
	line-height: 1.2;
	margin-bottom: 5px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=number],
input[type=search],
input[type=url],
select {
	background-color: var(--nasp-gray-light);
	border-radius: 6px;
	padding: 10px;
	font-size: 15px;
	height: 35px;
	color: #3e3e3e;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=url]:focus {
	background-color: var(--nasp-gray-light);
}

textarea {
	background-color: var(--nasp-gray-light);
	border-radius: 6px;
	padding: 10px;
	font-size: 15px;
	color: #3e3e3e;
}

.custom-control {
	padding-left: 1.75rem;
}

.custom-control-label::before,
.custom-control-label::after {
	border: none;
	top: 0;
	left: -1.75rem;
	width: 19px;
	height: 19px;
}

.custom-control-input:checked~.custom-control-label::before {
	border-color: var(--nasp-gray-dark);
	background-color: var(--nasp-gray-dark);
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
	border-color: var(--nasp-gray);
	background-color: var(--nasp-gray);
}

.custom-control-input:focus~.custom-control-label::before {
	box-shadow: 0 0 0 .2rem rgba(0,0,0,.25)
}

.dropdown-menu {
	border-radius: 0;
	border: none;
	box-shadow: 0 1px 20px rgba(0,0,0,0.1);
	padding: 10px;
}

.dropdown-item {
	color: var(--nasp-red);
}

.dropdown-item:hover,
.dropdown-item:focus {
	color: #ffffff;
	background-color: var(--nasp-red);
}

.page-link {
	color: var(--nasp-red);
	border-color: var(--nasp-gray-light);
	box-shadow: none !important;
}

.page-link:hover {
	color: var(--nasp-red);
	background-color: var(--nasp-gray-light);
}

.page-item.active .page-link {
	background-color: var(--nasp-red);
	border-color: var(--nasp-red);
}

.fl-module-fl-post-content h2 {
	font-size: 30px;
}

.fl-module-fl-post-content h3 {
	font-size: 24px;
}

.fl-module-fl-post-content h4 {
	font-size: 18px;
}

.fl-module-fl-post-content h5 {
	font-size: 16px;
}

.fl-module-fl-post-content h6 {
	font-size: 14px;
}

.sticky-module,
.sticky-col,
.fl-node-edc8yg594mak {
	position: sticky;
	top: 68px;
}

.admin-bar .sticky-module,
.admin-bar .sticky-col,
.admin-bar .fl-node-edc8yg594mak {
	top: 100px;
}

@media (min-width:768px) {
	.sticky-module--appear {
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 200ms linear;
		-moz-transition: all 200ms linear;
		-ms-transition: all 200ms linear;
		-o-transition: all 200ms linear;
		transition: all 200ms linear;
	}

	.sticky-module--appear.is-stuck {
		opacity: 1;
		visibility: visible;
	}

	.fl-builder-edit .sticky-module--appear {
		opacity: 1;
		visibility: visible;
	}
}

.sidebar-navigation .fl-builder-module-template,
.sidebar-ad .fl-builder-module-template {
	padding: 0;
}

.is-active-page .fl-button,
.is-active-page .fl-button .fl-button-text {
	color: var(--nasp-red) !important;
}

.hero-video .uabb-video__outer-wrap {
	border-radius: 20px;
	box-shadow: 0 0 10px 5px rgba(30,29,29,0.15);
}

/*
 * Header
 */

.site-search {
	
}

.site-search .form-control {
	border-radius: 20px;
	padding-top: 2px;
	padding-bottom: 0;
	width: 80px;
	height: auto;
	line-height: 1;
	border-color: #ffffff;
	background-color: #ffffff;
}

.site-search .form-control:focus {
	border-color: #ffffff;
	background-color: #ffffff;
	width: 200px;
}

.site-search-submit {
	border-radius: 0 20px 20px 0;
	padding: 2px 6px;
	line-height: 1;
	border-color: #ffffff;
	background-color: #ffffff;
	color: var(--nasp-red);
	font-size: 14px;
}

.site-search-submit:hover,
.site-search-submit:focus,
.site-search-submit:active {
	color: #ffffff;
	border-color: var(--nasp-gray-dark);
	background-color: var(--nasp-gray-dark);
}

.header-btns .fl-button-group-button:nth-child(2) .fl-button-wrap.is-active-page .fl-button,
.header-btns .fl-button-group-button:nth-child(2) .fl-button-wrap.is-active-page .fl-button .fl-button-text {
	color: #ffffff !important;
}

.topbar-btns .dropdown-toggle::after {
	vertical-align: middle;
}

@media (max-width:767px) {
	.header-btns .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: center;
	}
	
	.header-btns .fl-button-group .fl-button-group-buttons .fl-button-group-button {
		padding: 0 5px !important;
	}
	
	.header-btns .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
		width: auto;
	}
}

/*
 * Footer
 */

/*
 * Live Courses
 */

/*Live Course - Card*/

.live-course-card.card {
	border-radius: 20px;
	font-weight: 600;
	border: none;
	overflow: hidden;
	position: relative;
}

.live-course-card.card.inactive {
	opacity: 0.5;
}

.live-course-card--img {
	aspect-ratio: 2;
	object-fit: cover;
}

.live-course-card--overlay {
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.live-course-card--overlay::after {
	content: '';
	position: absolute;
	opacity: 0.9;
	background-image: linear-gradient(198deg, #EFF2F1 25%, #A4A4A4 52.5%, #222222 77%);
	background-position: -200px;
	mix-blend-mode: multiply;
	top: 0;
	left: 0;
	right: -200px;
	bottom: 0;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;


	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.live-course-card:hover .live-course-card--overlay::after {
	background-position: 0;
}

.live-course-card--body {
	color: #ffffff;
	z-index: 2;
}

.live-course-card--short-date {
	display: inline-block;
	background: var(--nasp-red);
	margin-left: -1.25em;
	margin-bottom: 0.5em;
	padding: 4px 1.25em;
	font-size: 18px;
	text-transform: uppercase;
	border-radius: 0 50px 50px 0;
}

.live-course-card--title {
	color: inherit;
	font-family: inherit;
	font-size: 20px;
	line-height: 1.45;
}

.live-course-card--link,
.live-course-card--link:hover,
.live-course-card--link:focus,
.live-course-card--link:active {
	color: inherit;
}

.live-course-card--full-date {
	display: block;
	line-height: 1.2;
}

.live-course-card--location {
	display: block;
	line-height: 1.2;
}

.live-course-card--button {
	font-size: 22px;
	padding: 10px 0 0;
	display: inline-block;
}

.live-course-card--button .fl-button-icon {
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.live-course-card:hover .live-course-card--button .fl-button-icon {
	transform: translateX(8px);
}


/*Live Course - Table */


.live-course-price-box {
	background: #fff;
	padding: 2rem;
	max-width: 100%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	margin: 0 auto;
}

.live-course-price-box__header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.live-course-price-box__price {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.live-course-price-box__price-amount {
	text-align: center;
	font-size: 42px !important;
	line-height: 45px !important;
	font-weight: 900 !important;
	font-family: 'Gotham HTF', sans-serif !important;
	margin-top: 2rem;
}

.live-course-price-box__discount {
	font-size: 0.95rem;
	color: #666;
	margin-top: 0.3rem;
}

.live-course-price-box__icon {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}

.live-course-price-box__icon img {
	width: 150px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	background: #fff;
	padding: 5px;
}

.live-course-price-box__section-title {
	font-size: 2rem !important;
	margin-bottom: 1rem !important;
	font-weight: 600;
	color: var(--nasp-gray-dark);
	text-align: center;
}

.live-course-price-box__table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.live-course-price-box__table th {
	padding: 0.75rem;
	border-bottom: 1px solid #eee;
	text-align: center;
	font-weight: 700 !important;
}

.live-course-price-box__table td {
	padding: 0.75rem;
	border-bottom: 1px solid #eee;
	text-align: center;
	font-weight: 600;
}

.live-course-price-box__register-btn {
	display: inline-block;
	border: 2px solid var(--nasp-red);
	color: var(--nasp-red);
	padding: 0.6rem 1.3rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700 !important;
	transition: all 0.2s ease-in-out;
	text-align: center;
}

.live-course-price-box__register-btn:hover {
	background: var(--nasp-red);
	color: #fff;
}

.live-course-price-box__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	align-items: stretch;
	margin-top: 2rem;
}

.live-course-price-box__col {
	flex: 1 1 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	padding: 1rem 0;
}

.live-course-price-box__col-header {
	font-size: 2rem !important;
	font-weight: 700 !important;
	color: var(--nasp-gray-dark);
	margin-bottom: 0.25rem !important;
}

.live-course-price-box__col-text {
	font-size: 1rem;
	font-weight: 700;
	color: var(--nasp-gray-dark);
	margin-bottom: 1.25rem;
}

.live-course-price-box__col-btn {
	display: inline-block;
	border: 2px solid var(--nasp-red);
	color: var(--nasp-red);
	background: transparent;
	padding: 0.6rem 1.3rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700 !important;
	font-size: 1rem;
	transition: all 0.2s ease-in-out;
}

.live-course-price-box__col-btn:hover {
	background: var(--nasp-red);
	color: #fff;
}

@media (max-width: 600px) {
	.live-course-price-box__bottom {
		flex-direction: column;
		align-items: center;
	}
}

.live-course-price-box__divider {
	width: 50%;
	margin: 1.5rem auto;
	border-top: 2px solid #ccc;
}

/* FC */

.fc .fc-view-harness {
	background: #ededed;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
	padding: 1.5em;
}

.fc .fc-toolbar.fc-header-toolbar {
	flex-wrap: wrap;
	background: var(--nasp-gray-light);
	margin-bottom: 0;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	padding: 0 1.5em;
}

.fc .fc-toolbar.fc-header-toolbar .fc-dayGridMonth-button,
.fc .fc-toolbar.fc-header-toolbar .fc-multiMonthYear-button {
	background: var(--nasp-gray-light);
	color: #222222;
	border: none;
	position: relative;
}

.fc .fc-toolbar.fc-header-toolbar .fc-dayGridMonth-button.fc-button-active,
.fc .fc-toolbar.fc-header-toolbar .fc-multiMonthYear-button.fc-button-active {
	color: var(--nasp-red);
}

.fc .fc-toolbar.fc-header-toolbar .fc-dayGridMonth-button.fc-button-active::before,
.fc .fc-toolbar.fc-header-toolbar .fc-multiMonthYear-button.fc-button-active::before {
	content: '\f06e';
	font-family: "Font Awesome 5 Free";
	line-height: 1;
	margin-right: 5px;
	transform: translateY(2px);
	display: inline-block;
}

.fc .fc-toolbar.fc-header-toolbar .fc-dayGridMonth-button::after {
	content: '';
	width: 2px;
	height: 40%;
	top: 30%;
	background: #222;
	position: absolute;
	right: 0;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child {
	flex: 0 0 100%;
	background: #fff;
	padding-bottom: 1em;
	margin-bottom: 1em;
	position: relative;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child::before,
.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child::after {
	content: '';
	width: 1.5em;
	background: #ffffff;
	top: 0;
	height: 100%;
	left: -1.5em;
	position: absolute;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child::after {
	left: auto;
	right: -1.5em;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child .fc-button-group {
	transform: translateX(-1.5em);
	border-radius: 50px;
	overflow: hidden;
}

.fc .fc-toolbar-title {
	color: var(--nasp-red);
}

.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td,
.fc-theme-standard th {
	border: none;
	line-height: 1.2;
}

.fc .fc-daygrid-day-events,
.fc .fc-day-other .fc-daygrid-day-top {
	display: none;
}

.fc .fc-daygrid-day-top {
	justify-content: center;
}

.fc .fc-col-header-cell-cushion,
.fc .fc-daygrid-day-number {
	color: #222222;
}

.fc .fc-col-header-cell-cushion {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 2;
}

.fc .fc-scrollgrid-section-sticky > * {
	background: none;
}

.fc .fc-day.fc-day-has-event .fc-daygrid-day-number {
	color: #ffffff;
	cursor: pointer;
}

.fc .fc-daygrid-day-bg .fc-bg-event {
	cursor: pointer;
	border-radius: 20px;
	opacity: 1;
}

.fc .fc-multimonth-daygrid-table {
	height: auto !important;
}

.fc .fc-day-disabled {
	background: none;
}

.fc .fc-multimonth {
	border: none;
}

.fc .fc-multimonth-multicol .fc-multimonth-month {
	padding: 0 0.5em;
}

.fc-multimonth-multicol .fc-day .fc-col-header-cell-cushion {
	padding: 0;
	position: relative;
	text-indent: -999px;
}

.fc .fc-multimonth-title {
	padding: 0;
}

.fc-multimonth-multicol .fc-day .fc-col-header-cell-cushion::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -5px;
	display: inline-block;
}

.fc-multimonth-multicol .fc-day-sun .fc-col-header-cell-cushion::after,
.fc-multimonth-multicol .fc-day-sat .fc-col-header-cell-cushion::after {
	content: 'S';
}

.fc-multimonth-multicol .fc-day-mon .fc-col-header-cell-cushion::after {
	content: 'M';
}

.fc-multimonth-multicol .fc-day-tue .fc-col-header-cell-cushion::after,
.fc-multimonth-multicol .fc-day-thu .fc-col-header-cell-cushion::after {
	content: 'T';
}

.fc-multimonth-multicol .fc-day-wed .fc-col-header-cell-cushion::after {
	content: 'W';
}

.fc-multimonth-multicol .fc-day-fri .fc-col-header-cell-cushion::after {
	content: 'F';
}

button.fc-prev-button.fc-button.fc-button-primary,
button.fc-next-button.fc-button.fc-button-primary {
    border-radius: 100% !important;
    padding: 0;
    width: 36px;
    height: 36px;
    line-height: 10px;
}

button.fc-prev-button.fc-button.fc-button-primary {
	margin-right: 5px;
}

.fc .fc-multimonth-compact .fc-multimonth-daygrid-table,
.fc .fc-multimonth-compact .fc-multimonth-header-table {
	font-size: 13px;
}

.fc .fc-button.fc-prev-button .fc-icon,
.fc .fc-button.fc-next-button .fc-icon {
	font-size: 1em;
}

.fc .fc-day-other.fc-day-has-event {
    position: relative;
}

.fc .fc-day-other.fc-day-has-event::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ededed;
    z-index: 2;
}

/*
 * Online Courses
 */

.course-feed .fl-post-feed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-left: -15px;
	margin-right: -15px;
}

.course-feed .fl-post-feed-post {
	border: none;
	width: 100%;
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.course-feed .fl-post-feed-post:last-child {
	margin-bottom: 30px !important;
}

.course-feed-carousel .uabb-blog-posts .uabb-blog-post-inner-wrap,
.course-feed-carousel .uabb-blog-posts .uabb-blog-post-inner-wrap .uabb-blog-post-content {
	height: inherit;
}

@media (min-width: 576px) {
	.course-feed .fl-post-feed-post {
		width: 50%;
	}
}

@media (min-width: 768px) {
	.course-feed .fl-post-feed-post {
		width: 50%;
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.course-feed .fl-post-feed-post {
		width: 100%;
	}
}

.course-card.card {
	border: none;
	padding: 40px 25px 10px;
	height: 100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px 5px rgba(75,75,75,0.15);
}

.uabb-blog-posts-carousel .course-card.card {
	margin: 20px 0;
}

.course-card--img,
.uabb-blog-posts .course-card--img {
	width: 100px;
	margin-right: 1em;
}

.course-card--title {
	font-size: 22px;
}

.course-card--duration,
.course-card--availability {
	font-family: "Sofia Pro", sans-serif;
	font-weight: 900;
	font-size: 18px;
	color: var(--nasp-red);
	line-height: 1.1;
	margin-bottom: 5px;
	vertical-align: middle;
	display: inline-block;
	padding: 8px 20px;
	background-color: var(--nasp-gray-light);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.course-card--availability {
	position: relative;
	z-index: 2;
}

.course-card--actions {
	margin-top: 20px;
}

.course-card--button {
	font-family: 'Gotham';
	display: inline-block;
	font-size: 22px;
	font-weight: 900;
	color: var(--nasp-red);
}

.course-card--sale-banner {
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	overflow: hidden;
	z-index: 5;
	pointer-events: none;
}

.course-card--sale-banner::before {
	content: 'SALE!';
	position: absolute;
	top: 8px;
	right: -55px;
	width: 180px;
	padding: 6px 0;
	background-color: #0B0C0C;
	color: #FFCC00;
	text-align: center;
	font-weight: 900;
	font-size: 0.8rem;
	text-transform: uppercase;
	transform: rotate(45deg);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.course-card--credential-text {
	display: inline-block;
	cursor: help;
	font-weight: bold;
	color: black;
	background-color: #DAC760;
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	white-space: nowrap;
}

.course-card--credential {
	font-family: "Sofia Pro", sans-serif;
	font-weight: 900;
	font-size: 18px;
	color: var(--nasp-red);
	line-height: 1.1;
	margin-bottom: 5px;
	vertical-align: middle;
	display: inline-block;
	padding: 8px 20px;
	background-color: #DAC760;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.course-card--credential {
	position: relative;
	z-index: 2;
}


.course-card--banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--nasp-red);
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	padding: 6px 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	z-index: 5;
}

.course-card.has-banner .course-card--content {
	padding-top: 1rem;
}

.co-discount-note {
	font-size: 0.9rem;
	font-style: italic;
	color: #333;
	margin-top: -20px;
	margin-bottom: 10px;
}

.online-course-price-box {
	width: 100%;
	padding: 3rem 2rem 2rem;
	font-family: 'Gotham HTF', sans-serif;
	position: relative;
}

.online-course-price-box__icon-wrapper {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}

.online-course-price-box__icon img {
	max-width: 150px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	background: #fff;
	padding: 5px;
}

.online-course-price-box__header {
	text-align: center;
	margin-top: 1rem;
	width: auto;
	display: block;
}

.online-course-price-box__price-amount {
	font-size: 42px;
	font-weight: 900;
	line-height: 45px;
	color: var(--nasp-gray-dark);
	margin-bottom: 0.5rem;
}

.online-course-price-box__discount-line {
	font-size: 1.1rem;
	color: var(--nasp-gray-dark);
	margin-bottom: 1rem;
}

.online-course-price-box__discount-line s {
	color: var(--nasp-gray-dark);
}

.online-course-price-box__discounted-price {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--nasp-gray-dark);
}

.online-course-price-box__discount-label {
	font-size: 0.9rem;
	margin-left: 0.3rem;
	color: var(--nasp-gray-dark);
}

.online-course-price-box__button-row {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.online-course-price-box__divider {
	width: 50%;
	margin: 2rem auto;
	border-top: 2px solid var(--nasp-gray);
}

.online-course-price-box__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	align-items: stretch;
	margin-top: 2rem;
}

.online-course-price-box__col {
	flex: 1 1 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	padding: 1rem 0;
}

.online-course-price-box__col-header {
	font-size: 2rem;
	font-weight: 700;
	color: var(--nasp-gray-dark);
	margin-bottom: 0.5rem;
}

.online-course-price-box__col-text {
	flex-grow: 1;
	margin-bottom: 1.5rem;
	color: var(--nasp-gray-dark);
}

.online-course-price-box__col-btn {
	display: inline-block;
	border: 2px solid var(--nasp-red);
	color: var(--nasp-red);
	background: transparent;
	padding: 0.6rem 1.5rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.2s ease-in-out;
	margin-top: 1rem;
}

.online-course-price-box__col-btn:hover {
	background: var(--nasp-red);
	color: #fff;
}

/* If there's only one column, make the button narrower */
.online-course-price-box__bottom:has(.online-course-price-box__col:only-child) .online-course-price-box__col-btn {
	width: 50%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.credential-exams {
	display: block;
}

/* Mobile - remove flex and stack */
@media (max-width: 600px) {
	.online-course-price-box {
		padding: 1.5rem 1rem 1rem;
	}

	.online-course-price-box__icon-wrapper {
		position: absolute;
		top: -60px;
		left: 50%;
		transform: translateX(-50%);
	}

	.online-course-price-box__icon img {
		max-width: 90px;
	}

	.online-course-price-box__header {
		text-align: center;
		padding-top: 3rem;
	}

	.online-course-price-box__button-row {
		flex-direction: column;
		gap: 0.75rem;
		justify-content: center;
	}

	.online-course-price-box__discount-label {
		display: block;
		margin-top: 0.3rem;
	}

	.online-course-price-box__bottom {
		display: block;
	}

	.online-course-price-box__col {
		display: block;
		text-align: center;
		padding: 0.5rem 0;
		margin-bottom: 1.5rem;
	}

	.online-course-price-box__col:last-child {
		margin-bottom: 0;
	}

	.online-course-price-box__col-header {
		font-size: 1.25rem;
		margin-bottom: 0.3rem;
	}

	.online-course-price-box__col-text {
		margin-bottom: 0.5rem;
	}
}


/*
 * Pages
 */

@media (min-width: 1500px) {
    .modal-xl {
        max-width: 1440px;
    }
}

.certification-search-results {
	width: 100% !important;
	font-size: 14px;
	color: #3e3e3e;
}

@media (min-width:1200px) {
	.certification-search-results {
		display: table;
	}
}

.wp-block-table th,
.certification-search-results th {
	background: var(--nasp-gray-dark);
	color: #ffffff;
	text-transform: uppercase;
	border-color: rgba(255,255,255,0.3);
}

.certification-search-results .both_msp {
	display: inline-block;
}

.certification-search-results .certficate_img {
	width: 50px;
	height: 50px;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 100% auto;
	cursor: default;
	pointer-events: none;
}

.certification-search-results .certficate_img.csd {
	background-image: url('../png/csd-logo.png');
}

.certification-search-results .certficate_img.msp {
	background-image: url('../png/msp-logo.png');
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	z-index: 2000;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 20%;
	height: 5px;
	width: 200px;
	background: #fff;
	border: 1px solid var(--nasp-blue);

	overflow: hidden;
}

.pace .pace-progress {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	max-width: 200px;
	position: fixed;
	z-index: 2000;
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	background: var(--nasp-blue);
}

.pace.pace-inactive {
	display: none;
}

/*
 * FAQ
 */

input.faq-search-input {
	background: #ffffff;
	border-color: #ffffff;
	border-radius: 20px 0 0 20px;
}

input.custom-control-input-faq-category + .custom-control-label {
	color: #ffffff;
	font-weight: 700;
	font-size: 18px;
}

.faq-group {
	padding: 60px;
	background-color: var(--nasp-gray-light);
	margin-bottom: 60px;
	border-radius: 10px;
}

.faq-group--title {
	color: var(--nasp-red);
	margin-bottom: 20px;
}

.faq-item.card {
	border: none;
	border-bottom: 1px solid var(--nasp-gray) !important;
	background: none;
}

.faq-item.card:last-child {
	border-bottom: none !important;
}

.faq-item .card-header {
	padding: 0;
	background: none;
	border-bottom: none;
}

.faq-item .card-header .btn {
	display: flex;
	align-items: center;
	color: inherit;
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	text-transform: none;
	padding: 15px 0;
	border: none !important;
	background: none !important;
	text-decoration: none !important;
}

.faq-item .card-header .btn::after {
	content: "\ea0a";
	font-family: "Ultimate-Icons";
	color: var(--nasp-red);
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	margin-left: auto;
}

.faq-item .card-header .btn[aria-expanded="true"]::after {
	content: "\ea09";
}

.faq-item .card-body {
	padding: 0 0 15px;
}

/*
 * Blog
 */

.post-feed .fl-post-feed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-left: -15px;
	margin-right: -15px;
}

.post-feed .fl-post-feed-post {
	border: none;
	width: 100%;
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.post-feed .fl-post-feed-post:last-child {
	margin-bottom: 20px !important;
}

@media (min-width: 576px) {
	.post-feed .fl-post-feed-post {
		width: 50%;
	}
}

@media (min-width: 768px) {
	.post-feed .fl-post-feed-post {
		width: 33.3333%;
	}
}

.post-card.card {
	border: none;
	height: 100%;
}

.post-card--img {
	aspect-ratio: 2;
	object-fit: cover;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.post-card--body {
	margin-top: 15px;
}

.post-card--title {
	font-size: 22px;
}

.post-card--date,
.post-card--category {
	font-family: "Sofia Pro", sans-serif;
	font-weight: 900;
	font-size: 18px;
	color: var(--nasp-red);
	line-height: 1.1;
	margin-bottom: 5px;
	vertical-align: middle;
	display: inline-block;
	padding: 8px 20px;
	background-color: #EDEDED;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.post-card--excerpt {
	margin-top: 10px;
}

.post-card--actions {
	margin-top: 20px;
}

.post-card--button {
	font-family: 'Gotham', sans-serif;
	display: inline-block;
	font-size: 22px;
	font-weight: 900;
	color: var(--nasp-red);
}

.sidebar-ad {
	overflow: hidden;
	position: sticky;
	top: 68px;
}

.admin-bar .sidebar-ad {
	top: 100px;
}

.fl-builder-edit .sidebar-ad {
	position: relative;
}

.nasp-block_live-course {
	margin: 2em 0;
}

/*
 * NASPCB
 */

.naspcb-card--img {
	border-radius: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

/*
 * Reviews
 */

.nasp-block_review-list .co-reviews-wrapp {
	max-height: none;
	margin: 2em 0;
}

/* 
 * Videos 
 */

.video-tabs .uabb-tabs-nav::before {
	content: 'Select playlist';
	display: block;
	text-align: center;
	font-family: "Gotham HTF", sans-serif;
	font-weight: 900;
	font-size: 30px;
	line-height: 1.1;
	color: var(--nasp-red);
	margin-bottom: 30px;
}

.video-tabs .uabb-tabs-layout-vertical.uabb-tab-position-left .uabb-tabs-nav {
	padding: 40px 45px 60px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px 5px rgba(75,75,75,0.15);
}

.video-tabs .uabb-tabs-nav .uabb-tab-link:focus {
	border-color: transparent;
}

/* 
 * Memberships 
 */

.nasp-memberships .uabb-tabs-nav {
	padding: 40px 60px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px 5px rgba(75,75,75,0.15);
	display: block;
	width: fit-content;
	margin: 0 auto;
}

.nasp-memberships .uabb-tabs-nav li,
.nasp-memberships .uabb-tabs-nav .uabb-tab-link {
	overflow: hidden;
	border-radius: 20px;
}





/* Homepage Course Card*/
.homepage-course-card.card {
	border-radius: 20px;
	border: none;
	overflow: hidden;
	position: relative;
	color: #ffffff;
	font-family: "Sofia Pro", sans-serif;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--nasp-blue);
	background-size: cover;
	background-position: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.2s ease-in-out;
}

.homepage-course-card.card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.homepage-course-card--overlay::after {
	content: '';
	position: absolute;
	border-radius: 20px;
	opacity: 0.9;
	background-image: linear-gradient(198deg, #EFF2F1 25%, #A4A4A4 52.5%, #222222 77%);
	background-position: -200px;
	mix-blend-mode: multiply;
	top: 0;
	left: 0;
	right: -200px;
	bottom: 0;
	transition: all 200ms linear;
	z-index: 1;
}

.homepage-course-card:hover .homepage-course-card--overlay::after {
	background-position: 0;
}

.homepage-course-card--body {
	position: relative;
	z-index: 2;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}

.homepage-course-card--duration {
	display: inline-block;
	background: var(--nasp-red);
	margin: 0 0 0.75rem -1.5rem;
	padding: 4px 1.25em;
	font-size: 18px;
	text-transform: uppercase;
	font-family: "Sofia Pro", sans-serif;
	font-weight: 700;
	border-radius: 0 50px 50px 0;
	width: fit-content;
}

.homepage-course-card--title {
	color: inherit;
	font-family: inherit;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.45;
	min-height: 3.2em;
}

.homepage-course-card--link,
.homepage-course-card--link:hover,
.homepage-course-card--link:focus,
.homepage-course-card--link:active {
	color: inherit;
}

.homepage-course-card--button {
	font-family: "Sofia Pro", sans-serif;
	font-weight: 900;
	font-size: 22px;
	padding: 10px 0 0;
	display: inline-block;
}

.homepage-course-card--button .fl-button-icon {
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.homepage-course-card:hover .homepage-course-card--button .fl-button-icon {
	transform: translateX(8px);
}

.homepage-course-card:hover .homepage-course-card--title {
	text-decoration: underline;
}

.homepage-course-card a.stretched-link {
	position: absolute;
	inset: 0;
	z-index: 3;
}

/* =========================================================
   BUNDLE
   ========================================================= */

.bundle * {
	box-sizing: border-box;
}

.bundle .bundle-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--nasp-gray-dark);
	margin: 0 0 8px;
	line-height: 1.3;
}

.bundle .bundle-meta {
	display: flex;
	gap: 32px;
	margin-bottom: 24px;
}

.bundle .bundle-meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bundle .bundle-meta-label,
.bundle .bundle-card-stat-label {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
	color: var(--nasp-gray);
}

.bundle .bundle-meta-value,
.bundle .bundle-card-stat-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--nasp-gray-dark);
}

.bundle .bundle-course-list-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.bundle .bundle-course-list ol {
	margin: 0;
	padding-left: 20px;
}

.bundle .bundle-course-list li {
	margin-bottom: 6px;
}

.bundle .bundle-course-list a {
	color: var(--nasp-red);
	font-weight: 600;
	text-decoration: none;
}

.bundle .bundle-short-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--nasp-gray-dark);
    margin: 6px 0 6px;
    max-width: 750px;
}

.bundle .bundle-badge {
	background: var(--nasp-gray-light);
	color: var(--nasp-gray-dark);
	padding: 6px 12px;
	font-size: 16px;
	border-radius: 6px;
	font-weight: 600;
	display: inline-block;
}

.bundle .bundle-price-box {
	background: var(--nasp-red-light);
	padding: 14px 18px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 250px;
	border: 1px solid rgba(0,0,0,0.06);
}

.bundle .bundle-price-line {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
}

.bundle .bundle-price-label {
	color: var(--nasp-gray-dark);
	opacity: 0.8;
	font-weight: 600;
	font-size: 16px;
}

.bundle .bundle-price-value {
	font-weight: 700;
	font-size: 16px;
}

.bundle .bundle-price-bundle {
	color: var(--nasp-red);
	font-size: 18px;
}

.bundle .bundle-price-regular {
	text-decoration: line-through;
	opacity: 0.6;
}

.bundle .bundle-price-savings {
	color: #2e7d32;
	font-weight: 700;
}

.bundle .bundle-button {
	background: var(--nasp-red);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
	transition: background 0.2s ease;
}

.bundle .bundle-button::after {
	content: "\2192";
	transition: transform 0.2s ease;
}

.bundle .bundle-button:hover {
	background: var(--nasp-red-bright);
}

.bundle .bundle-button:hover::after {
	transform: translateX(4px);
}

.bundle.bundle-card {
	display: flex;
	align-items: stretch;
	gap: 24px;
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 32px;
}

.bundle .bundle-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.bundle .bundle-card-top {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 12px;
	padding-right: 220px;
}

.bundle .bundle-card-top .bundle-price-box {
	position: absolute;
	top: 0;
	right: 0;
}

.bundle .bundle-card-bottom {
	margin-top: 4px;
}

.bundle .bundle-card-stats {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bundle .bundle-card-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bundle.bundle-card .bundle-img img,
.bundle.bundle-card .bundle-img-thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 1100px) {
    .bundle .bundle-card-top {
        padding-right: 170px; /* was 220px */
    }

    .bundle .bundle-card-top .bundle-price-box {
        max-width: 160px;
    }
}

@media (max-width: 900px) {
    .bundle .bundle-card-top {
        padding-right: 140px;
    }

    .bundle .bundle-card-top .bundle-price-box {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .bundle-short-desc {
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {

    .bundle.bundle-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .bundle .bundle-card-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0 !important;
        gap: 12px;
    }

    .bundle .bundle-card-top .bundle-price-box {
        position: relative !important;
        top: auto !important;
        right: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        margin-top: 16px !important;
        order: 3;
    }

    .bundle .bundle-card-bottom {
        width: 100%;
    }
}



/* =========================================================
   SINGLE BUNDLE PAGE
   ========================================================= */

.single-bundle {
}

/* BADGE */
.single-bundle__badge {
    text-align: center;
    margin-bottom: 20px;
}
.single-bundle__badge img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

.single-bundle__inner {
    background: #fff;
    padding: 50px 80px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    max-width: 1100px;
    margin: 0 auto;
}

.single-bundle__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--nasp-gray-dark);
    margin-bottom: 24px;
}

.single-bundle__long-description {
    max-width: 900px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--nasp-gray-dark);
    text-align: left;
}

.single-bundle__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 40px auto 32px;
}

.single-bundle__meta-item {
    text-align: center;
}

.single-bundle__meta-label {
    display: block;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--nasp-gray-dark) !important;
    opacity: .7;
    margin-bottom: 6px;
}

.single-bundle__meta-value {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--nasp-gray-dark) !important;
}

.single-bundle__price-box {
    background: var(--nasp-red-light);
    padding: 20px 20px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    max-width: 300px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.single-bundle__price-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.single-bundle__price-label {
    color: var(--nasp-gray-dark);
    opacity: 0.8;
    font-weight: 600 !important;
}

.single-bundle__price-value {
    font-weight: 700 !important;
}

.single-bundle__price-value--main {
    color: var(--nasp-red) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.single-bundle__price-value--regular {
    text-decoration: line-through;
    opacity: 0.6;
}

.single-bundle__price-value--savings {
    color: #2e7d32 !important;
}

.single-bundle__button {
    background: var(--nasp-red);
    color: #fff;
    font-weight: 600 !important;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    transition: background 0.2s ease;
}

.single-bundle__button::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.single-bundle__button:hover {
    background: var(--nasp-red-bright);
    color: #fff;
}

.single-bundle__button:hover::after {
    transform: translateX(4px);
}

.single-bundle__course-breakdown {
    max-width: 1100px;
    margin: 40px auto 40px;
    text-align: left;
}

.single-bundle__courses-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.single-bundle__course-row {
    display: grid;
    grid-template-columns: 70px 1fr 150px;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--nasp-gray-light);
}

.single-bundle__course-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--nasp-gray-light);
}

.single-bundle__course-name {
    font-weight: 700 !important;
    font-size: 17px !important;
    color: var(--nasp-gray-dark) !important;
}

.single-bundle__course-meta {
    font-size: 16px !important;
    margin-top: 4px !important;
    color: var(--nasp-gray-dark) !important;
}

.single-bundle__course-link {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: var(--nasp-red) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}

.single-bundle__course-link::after {
    content: "\2192";
    margin-left: 6px;
    transition: transform .2s ease;
}

.single-bundle__course-link:hover::after {
    transform: translateX(4px);
}

.single-bundle__badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.single-bundle__badge-pill {
    background: var(--nasp-gray-light);
    color: var(--nasp-gray-dark);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 768px) {

    .single-bundle {
        overflow-x: hidden;
    }

    .single-bundle__inner {
        padding: 40px 20px 30px;
        max-width: 100%;
    }

    .single-bundle__meta {
        flex-direction: column;
        gap: 20px;
        text-align: center !important;
        width: 100%;
    }

    .single-bundle__course-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 16px;
        padding: 20px 0;
    }

    .single-bundle__course-col {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .single-bundle__course-col--thumb {
        text-align: center !important;
        margin: 0 auto !important;
    }

    .single-bundle__course-thumb {
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto !important;
        display: block;
    }

    .single-bundle__course-col--main {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .single-bundle__course-name,
    .single-bundle__course-meta {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .single-bundle__course-col--link {
        width: 100% !important;
        text-align: center !important;
        margin-top: 4px !important;
    }

    .single-bundle__course-link {
        display: inline-flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
}
