/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-e2wicr4va3yx .fl-row-content {
	max-width: 1320px;
}




.fl-node-z3xfdoebvwha {
	width: 100%;
}
/*!*******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./bb-modules/group-leader-portal/css/frontend.scss ***!
  \*******************************************************************************************************************************************/
@charset "UTF-8";
/**
 * CSS applied to all Group Leader Portal module instances.
 *
 * Styles are split across partials in ./partials/. Each partial declares its
 * own variable dependency via @use — variables don't cross module boundaries
 * in modern Sass.
 */
/* ── Group status pill ── */
.glp-status-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.6;
  vertical-align: middle;
}
.glp-status-badge--pending {
  background: #fef3c7;
  color: #92400e;
}
.glp-status-badge--active {
  background: #dcfce7;
  color: #166534;
}
.glp-status-badge--inactive {
  background: #e5e7eb;
  color: #4b5563;
}

/* ── Base ── */
.group-leader-portal {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: #424242;
  line-height: 1.7;
  font-size: 16px;
}
.group-leader-portal *, .group-leader-portal *::before, .group-leader-portal *::after {
  box-sizing: border-box;
}

/* ── Tab Navigation ── */
.glp-tabs {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #eaeaea;
  margin-bottom: 0;
  gap: 0;
}
.glp-tabs__tab {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #606060;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.glp-tabs__tab:hover {
  color: #003b75;
  text-decoration: none;
}
.glp-tabs__tab--active {
  color: #003b75;
  border-bottom-color: #003b75;
}
.glp-tabs__my-account {
  margin-left: auto;
  align-self: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #606060;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.glp-tabs__my-account:hover {
  color: #003b75;
  text-decoration: none;
  background-color: rgba(0, 59, 117, 0.06);
}
.glp-tabs__my-account--active {
  color: #003b75;
  background-color: rgba(0, 59, 117, 0.06);
}
.glp-tabs__logout {
  align-self: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #606060;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.glp-tabs__logout:hover {
  color: #e41e2e;
  text-decoration: none;
  background-color: rgba(228, 30, 46, 0.06);
}

/* ── Tab Content ── */
.glp-content {
  padding: 40px 0;
}

/* ── Page Base ── */
.glp-page__title {
  font-size: 26px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 16px;
}
.glp-page__intro {
  font-size: 17px;
  color: #606060;
  margin: 0 0 32px;
}

/* ── Auth Screens ── */
.glp-auth {
  display: flex;
  justify-content: center;
  padding: 48px 16px;
}
.glp-auth__card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 40px 32px;
}
.glp-auth__title {
  font-size: 24px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 8px;
}
.glp-auth__subtitle {
  font-size: 15px;
  color: #606060;
  margin: 0 0 24px;
  line-height: 1.5;
}
.glp-auth__error {
  background: rgba(228, 30, 46, 0.08);
  border: 1px solid rgba(228, 30, 46, 0.2);
  border-radius: 6px;
  color: #e41e2e;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.glp-auth__notice {
  background: rgba(0, 163, 42, 0.08);
  border: 1px solid rgba(0, 163, 42, 0.2);
  border-radius: 6px;
  color: #00a32a;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.glp-auth__form {
  margin: 0 0 20px;
}
.glp-auth__field {
  margin-bottom: 16px;
}
.glp-auth__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #003b75;
  margin-bottom: 6px;
}
.glp-auth__field input[type=text],
.glp-auth__field input[type=email],
.glp-auth__field input[type=password] {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background: #ffffff;
  color: #424242;
  transition: border-color 0.15s ease;
}
.glp-auth__field input[type=text]:focus,
.glp-auth__field input[type=email]:focus,
.glp-auth__field input[type=password]:focus {
  outline: none;
  border-color: #005499;
}
.glp-auth__field--checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: #424242;
  font-size: 14px;
  margin-bottom: 0;
}
.glp-auth__field--checkbox input[type=checkbox] {
  width: auto;
  margin: 0;
}
.glp-auth__submit {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #003b75;
  border: 1px solid #003b75;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.glp-auth__submit:hover {
  background-color: #005499;
  border-color: #005499;
}
.glp-auth__submit--secondary {
  background-color: transparent;
  color: #003b75;
  border-color: #eaeaea;
}
.glp-auth__submit--secondary:hover {
  background-color: rgba(0, 59, 117, 0.04);
  color: #003b75;
  border-color: #003b75;
}
.glp-auth__code-input {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 22px !important;
  letter-spacing: 8px;
  font-weight: 700;
}
.glp-auth__links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
.glp-auth__links a {
  color: #005499;
  text-decoration: none;
}
.glp-auth__links a:hover {
  color: #003b75;
  text-decoration: underline;
}
.glp-auth--sent .glp-auth__title,
.glp-auth--sent .glp-auth__subtitle {
  text-align: center;
}
.glp-auth--invalid .glp-auth__title,
.glp-auth--invalid .glp-auth__subtitle {
  text-align: center;
}

/* ── Training Materials ── */
.glp-training__heading {
  font-size: 20px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 24px;
}
.glp-training__empty {
  color: #606060;
  font-style: italic;
}
.glp-training__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.glp-training__grid--single {
  grid-template-columns: 1fr;
  gap: 0;
}

/* ── Course Card ── */
.glp-course-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.glp-course-card:hover {
  box-shadow: 0 4px 16px rgba(0, 59, 117, 0.08);
}
.glp-course-card--complete {
  border-color: #00a32a;
}
.glp-course-card__header {
  padding: 24px 24px 0;
}
.glp-course-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #003b75;
  margin: 0;
  line-height: 1.4;
}
.glp-course-card__title a {
  color: inherit;
  text-decoration: none;
}
.glp-course-card__title a:hover, .glp-course-card__title a:focus {
  color: #005499;
  text-decoration: underline;
}
.glp-course-card__body {
  padding: 12px 24px;
  flex: 1;
}
.glp-course-card__excerpt {
  font-size: 14px;
  color: #606060;
  margin: 0 0 12px;
  line-height: 1.5;
}
.glp-course-card__meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #005499;
  background: rgba(0, 84, 153, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
}
.glp-course-card__footer {
  padding: 0 24px 24px;
}
.glp-course-card__btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important;
  background-color: #003b75;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.glp-course-card__btn:hover {
  background-color: #005499;
  color: #ffffff !important;
  text-decoration: none;
}
.glp-course-card--full {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 32px;
  align-items: center;
  padding: 24px;
}
.glp-course-card--full .glp-course-card__header {
  grid-column: 1;
  grid-row: 1;
  padding: 0;
}
.glp-course-card--full .glp-course-card__title {
  font-size: 22px;
}
.glp-course-card--full .glp-course-card__body {
  grid-column: 1;
  grid-row: 2;
  padding: 12px 0 0;
}
.glp-course-card--full .glp-course-card__footer {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 0;
  align-self: center;
}
.glp-course-card--full .glp-course-card__btn {
  padding: 14px 32px;
  font-size: 15px;
}

/* ── Progress Bar ── */
.glp-progress {
  margin-top: 12px;
  height: 8px;
  background-color: #eaeaea;
  border-radius: 4px;
  overflow: hidden;
}
.glp-progress__bar {
  height: 100%;
  background-color: #005499;
  border-radius: 4px;
  transition: width 0.3s ease;
  min-width: 0;
}
.glp-course-card--complete .glp-progress__bar {
  background-color: #00a32a;
}

/* -- Resources Accordion -- */
.glp-resources {
  margin-top: 40px;
}
.glp-resources__heading {
  font-size: 20px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 24px;
}
.glp-resources__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.glp-resources__item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.glp-resources__item:hover {
  box-shadow: 0 4px 16px rgba(0, 59, 117, 0.08);
}
.glp-resources__item[open] {
  border-color: #005499;
}
.glp-resources__summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  color: #003b75;
}
.glp-resources__summary::-webkit-details-marker {
  display: none;
}
.glp-resources__summary:focus {
  outline: 2px solid #005499;
  outline-offset: -2px;
}
.glp-resources__title {
  flex: 1;
  font-size: 16px;
}
.glp-resources__icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #005499;
  border-bottom: 2px solid #005499;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-bottom: 4px;
}
.glp-resources__item[open] .glp-resources__icon {
  transform: rotate(-135deg);
  margin-top: 4px;
  margin-bottom: 0;
}
.glp-resources__body {
  padding: 0 20px 20px;
  border-top: 1px solid #eaeaea;
  padding-top: 16px;
}
.glp-resources__description {
  color: #424242;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.glp-resources__description:last-child {
  margin-bottom: 0;
}
.glp-resources__description p:last-child {
  margin-bottom: 0;
}
.glp-resources__files {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.glp-resources__file a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #005499;
  text-decoration: none;
}
.glp-resources__file a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 14 16%27><path d=%27M9 0H2C0.9 0 0 0.9 0 2V14C0 15.1 0.9 16 2 16H12C13.1 16 14 15.1 14 14V5L9 0ZM12 14H2V2H8V6H12V14Z%27/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 14 16%27><path d=%27M9 0H2C0.9 0 0 0.9 0 2V14C0 15.1 0.9 16 2 16H12C13.1 16 14 15.1 14 14V5L9 0ZM12 14H2V2H8V6H12V14Z%27/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.glp-resources__file a:hover, .glp-resources__file a:focus {
  text-decoration: underline;
  color: #003b75;
}

/* ── Course Header ── */
.glp-course-header {
  margin-bottom: 32px;
}
.glp-course-header__back {
  display: inline-block;
  font-size: 14px;
  color: #005499;
  text-decoration: none;
  margin-bottom: 12px;
}
.glp-course-header__back:hover {
  color: #003b75;
  text-decoration: underline;
}
.glp-course-header__title {
  font-size: 26px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 16px;
}
.glp-course-header__progress {
  display: flex;
  align-items: center;
  gap: 12px;
}
.glp-course-header__progress-text {
  font-size: 13px;
  font-weight: 600;
  color: #606060;
  white-space: nowrap;
}

.glp-progress--header {
  flex: 1;
  max-width: 300px;
  margin-top: 0;
}

/* ── Course Layout ── */
.glp-course-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── Main Content ── */
.glp-course-main {
  min-width: 0;
}

/* ── Video ── */
.glp-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  margin-bottom: 32px;
}
.glp-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.glp-video-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  height: 300px;
  background: #f6f6f6;
}
.glp-video-wrap--empty p {
  color: #606060;
  margin: 0;
}

/* ── Video Overlay ── */
.glp-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.glp-video-overlay[data-state=paused] {
  background: rgba(0, 0, 0, 0.5);
}
.glp-video-overlay[data-state=paused] .glp-icon-play {
  display: block;
}
.glp-video-overlay[data-state=paused] .glp-icon-pause {
  display: none;
}
.glp-video-overlay[data-state=playing] {
  background: transparent;
}
.glp-video-overlay[data-state=playing] .glp-icon-play {
  display: none;
}
.glp-video-overlay[data-state=playing] .glp-icon-pause {
  display: none;
}
.glp-video-overlay[data-state=playing]:hover {
  background: transparent;
}
.glp-video-overlay[data-state=playing]:hover .glp-icon-pause {
  display: block;
}
.glp-video-overlay[data-state=ended] {
  background: rgba(0, 0, 0, 0.5);
}
.glp-video-overlay[data-state=ended] .glp-icon-play {
  display: block;
}
.glp-video-overlay[data-state=ended] .glp-icon-pause {
  display: none;
}

.glp-video-toggle-btn {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  transition: transform 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  line-height: 0;
}
.glp-video-toggle-btn:hover, .glp-video-toggle-btn:focus, .glp-video-toggle-btn:active {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
.glp-video-toggle-btn:hover {
  transform: scale(1.1);
}
.glp-video-toggle-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  display: block;
}

/* ── Video Gate Message ── */
.glp-video-gate-msg {
  margin-top: 10px;
  font-size: 13px;
  color: #606060;
  font-style: italic;
}

/* ── Disabled Button ── */
.glp-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.glp-btn:disabled:hover {
  transform: none;
}

.glp-btn--enabled {
  opacity: 1 !important;
  cursor: pointer !important;
}

/* ── Lesson Content ── */
.glp-lesson-content__title {
  font-size: 22px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 16px;
}
.glp-lesson-content__body {
  font-size: 16px;
  line-height: 1.8;
  color: #424242;
  margin-bottom: 32px;
}
.glp-lesson-content__body p {
  margin: 0 0 1em;
}
.glp-lesson-content__body h1, .glp-lesson-content__body h2, .glp-lesson-content__body h3, .glp-lesson-content__body h4, .glp-lesson-content__body h5, .glp-lesson-content__body h6 {
  color: #003b75;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.glp-lesson-content__body ul, .glp-lesson-content__body ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}
.glp-lesson-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ── Lesson Complete Form ── */
.glp-lesson-complete-form {
  margin-top: 24px;
}

.glp-btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border: none;
  border-radius: 4px !important;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  transition: background-color 0.15s ease;
}
.glp-btn--primary {
  background-color: #003b75;
  color: #ffffff !important;
}
.glp-btn--primary:hover {
  background-color: #005499;
  color: #ffffff !important;
}

.glp-lesson-completed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 10px 20px;
  background: rgba(0, 163, 42, 0.08);
  border: 1px solid rgba(0, 163, 42, 0.2);
  border-radius: 6px;
  color: #00a32a;
  font-size: 14px;
  font-weight: 600;
}
.glp-lesson-completed-badge .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

/* ── Sidebar ── */
.glp-course-sidebar {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 32px;
}
.glp-course-sidebar__title {
  font-size: 15px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Lesson Nav ── */
.glp-lesson-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.glp-lesson-nav__item {
  margin-bottom: 8px;
}
.glp-lesson-nav__item--active .glp-lesson-nav__link {
  background-color: rgba(0, 59, 117, 0.08);
}
.glp-lesson-nav__item--active .glp-lesson-nav__link .glp-lesson-nav__label {
  font-weight: 600;
  color: #003b75;
}
.glp-lesson-nav__item--complete .glp-lesson-nav__index {
  color: #00a32a;
}
.glp-lesson-nav__item--locked .glp-lesson-nav__link--disabled {
  cursor: not-allowed;
}
.glp-lesson-nav__item--locked .glp-lesson-nav__link--disabled .glp-lesson-nav__label,
.glp-lesson-nav__item--locked .glp-lesson-nav__link--disabled .glp-lesson-nav__index {
  color: rgb(195.75, 195.75, 195.75);
}
.glp-lesson-nav__link {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 6px;
  border-radius: 6px;
  text-decoration: none;
  color: #424242;
  font-size: 13px;
  transition: background-color 0.1s ease;
}
.glp-lesson-nav__link:hover:not(.glp-lesson-nav__link--disabled) {
  background-color: rgba(0, 59, 117, 0.04);
  text-decoration: none;
}
.glp-lesson-nav__link--disabled {
  opacity: 0.55;
}
.glp-lesson-nav__thumb {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f6f6f6;
}
.glp-lesson-nav__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.glp-lesson-nav__thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #003b75 0%, #005499 100%);
}
.glp-lesson-nav__thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.glp-lesson-nav__thumb-overlay .dashicons {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.glp-lesson-nav__item--complete .glp-lesson-nav__thumb-overlay .dashicons-yes-alt {
  color: #00ff55;
}
.glp-lesson-nav__link:not(.glp-lesson-nav__link--disabled) .glp-lesson-nav__thumb-overlay:empty {
  background: transparent;
}
.glp-lesson-nav__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.glp-lesson-nav__index {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #606060;
  margin-bottom: 2px;
}
.glp-lesson-nav__label {
  line-height: 1.3;
  color: #424242;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── My Groups ── */
.glp-my-groups__empty {
  color: #606060;
  font-style: italic;
}
.glp-my-groups__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glp-group-card {
  display: block;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.glp-group-card:hover, .glp-group-card:focus {
  box-shadow: 0 4px 16px rgba(0, 59, 117, 0.08);
  border-color: rgba(0, 59, 117, 0.25);
  text-decoration: none;
  color: inherit;
}
.glp-group-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 8px;
  line-height: 1.3;
}
.glp-group-card__meta {
  font-size: 14px;
  color: #606060;
  margin: 0 0 4px;
  line-height: 1.4;
}
.glp-group-card__meta--county {
  font-size: 13px;
}
.glp-group-card__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #005499;
}

/* -- Manage Group -- */
.glp-manage-group__back {
  margin: 0 0 12px;
  font-size: 14px;
}
.glp-manage-group__back a {
  color: #606060;
  text-decoration: none;
}
.glp-manage-group__back a:hover {
  color: #003b75;
  text-decoration: underline;
}
.glp-manage-group__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 960px;
}
@media (max-width: 720px) {
  .glp-manage-group__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.glp-manage-group__sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.glp-manage-group__nav-item {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #606060;
  text-decoration: none;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.glp-manage-group__nav-item:hover {
  color: #003b75;
  background-color: rgba(0, 59, 117, 0.04);
  text-decoration: none;
}
.glp-manage-group__nav-item--active {
  color: #003b75;
  background-color: rgba(0, 59, 117, 0.06);
  border-left-color: #003b75;
}
.glp-manage-group__content {
  max-width: 600px;
}
.glp-manage-group__form {
  margin: 0;
}
.glp-manage-group__heading {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #003b75;
}
.glp-manage-group__heading--sub {
  margin-top: 32px;
  font-size: 16px;
  color: #424242;
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
}
.glp-manage-group__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 16px;
}
.glp-manage-group__field:last-child {
  margin-bottom: 0;
}
.glp-manage-group__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 16px;
}
@media (min-width: 600px) {
  .glp-manage-group__row {
    grid-template-columns: 1fr 1fr;
  }
}
.glp-manage-group__row .glp-manage-group__field {
  margin: 0;
}
.glp-manage-group__label {
  font-size: 14px;
  font-weight: 600;
  color: #424242;
}
.glp-manage-group__input, .glp-manage-group__textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.4;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background: #ffffff;
  color: #424242;
  box-sizing: border-box;
}
.glp-manage-group__input:focus, .glp-manage-group__textarea:focus {
  outline: none;
  border-color: #005499;
  box-shadow: 0 0 0 2px rgba(0, 84, 153, 0.15);
}
.glp-manage-group input.glp-manage-group__input,
.glp-manage-group select.glp-manage-group__input {
  height: 44px;
}
.glp-manage-group__textarea {
  resize: vertical;
  min-height: 80px;
}
.glp-manage-group__readonly {
  display: block;
  margin: 0;
  padding: 10px 12px;
  background: #f6f6f6;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #424242;
  font-size: 15px;
}
.glp-manage-group__hint {
  font-size: 13px;
  color: #606060;
  line-height: 1.4;
}
.glp-manage-group__actions {
  margin: 16px 0 0;
  text-align: right;
}

/* -- Members panel -- */
.glp-members__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.glp-members__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
}
.glp-members__main {
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.glp-members__name {
  font-weight: 600;
  font-size: 15px;
  color: #003b75;
}
.glp-members__meta {
  font-size: 13px;
  color: #424242;
}
.glp-members__meta--muted {
  color: #606060;
  font-style: italic;
}
.glp-members__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.glp-members__form {
  margin: 0;
}

/* -- Button variants used inside the Members panel -- */
.glp-btn--small {
  padding: 6px 12px;
  font-size: 13px;
}
.glp-btn--ghost {
  background: transparent;
  color: #424242;
  border: 1px solid rgba(66, 66, 66, 0.35);
}
.glp-btn--ghost:hover, .glp-btn--ghost:focus {
  background: #f6f6f6;
  border-color: #003b75;
  color: #003b75;
}
.glp-btn--danger {
  background-color: #e41e2e !important;
  color: #ffffff !important;
  border: 1px solid #e41e2e !important;
}
.glp-btn--danger:hover, .glp-btn--danger:focus {
  background-color: rgb(193.9285714286, 23.2714285714, 37.0619047619) !important;
  border-color: rgb(193.9285714286, 23.2714285714, 37.0619047619) !important;
  color: #ffffff !important;
}
.glp-btn--danger-ghost {
  background: transparent;
  color: #e41e2e !important;
  border: 1px solid rgba(228, 30, 46, 0.4);
}
.glp-btn--danger-ghost:hover, .glp-btn--danger-ghost:focus {
  background: rgba(228, 30, 46, 0.08);
  border-color: #e41e2e;
  color: #e41e2e !important;
}

/* -- Events panel -- */
.glp-events__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.glp-events__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.glp-events__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
}
.glp-events__main {
  flex: 1 1 240px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.glp-events__title {
  font-weight: 600;
  font-size: 15px;
  color: #003b75;
}
.glp-events__meta {
  font-size: 13px;
  color: #424242;
}
.glp-events__meta--muted {
  color: #606060;
}
.glp-events__more {
  color: #606060;
  margin-left: 4px;
}
.glp-events__visibility {
  align-self: flex-start;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f6f6f6;
  color: #424242;
}
.glp-events__visibility--public {
  background: rgba(0, 163, 42, 0.12);
  color: #007a1f;
}
.glp-events__visibility--private {
  background: rgba(0, 84, 153, 0.1);
  color: #003b75;
}
.glp-events__visibility--pending {
  background: rgba(228, 30, 46, 0.1);
  color: #e41e2e;
}
.glp-events__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* -- Event times repeater -- */
.glp-event-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.glp-event-times__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  padding: 10px;
  background: #f6f6f6;
  border-radius: 6px;
}
.glp-event-times__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 200px;
}
.glp-event-times__field span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #606060;
}
.glp-event-times__field input {
  padding: 8px 10px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background: #ffffff;
  font-size: 14px;
}

/* -- Modal (native <dialog>) -- */
.glp-modal {
  width: min(480px, 92vw);
  padding: 0;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: #424242;
}
.glp-modal::backdrop {
  background: rgba(0, 0, 0, 0.45);
}
.glp-modal__content {
  padding: 24px;
}
.glp-modal__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #003b75;
}
.glp-modal__details {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #f6f6f6;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  font-size: 14px;
}
.glp-modal__details > div {
  display: flex;
  gap: 8px;
  margin: 0;
}
.glp-modal__details > div + div {
  margin-top: 4px;
}
.glp-modal__details dt {
  flex: 0 0 80px;
  font-weight: 600;
  color: #606060;
}
.glp-modal__details dd {
  margin: 0;
  color: #424242;
  word-break: break-word;
}
.glp-modal__hint {
  margin: 0 0 20px;
  font-size: 14px;
  color: #606060;
  line-height: 1.5;
}
.glp-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.glp-modal__form {
  margin: 0;
}

/* ── My Account ── */
.glp-my-account__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 900px;
}
.glp-my-account__sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.glp-my-account__nav-item {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #606060;
  text-decoration: none;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.glp-my-account__nav-item:hover {
  color: #003b75;
  background-color: rgba(0, 59, 117, 0.04);
  text-decoration: none;
}
.glp-my-account__nav-item--active {
  color: #003b75;
  background-color: rgba(0, 59, 117, 0.06);
  border-left-color: #003b75;
}
.glp-my-account__content {
  max-width: 520px;
}
.glp-my-account__heading {
  font-size: 20px;
  font-weight: 700;
  color: #003b75;
  margin: 0 0 16px;
}
.glp-my-account__readonly {
  margin: 0;
  padding: 10px 12px;
  background: #f6f6f6;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #606060;
  font-size: 15px;
}
.glp-my-account__hint {
  font-size: 14px;
  color: #606060;
  line-height: 1.5;
  margin: 0 0 16px;
}
.glp-my-account__hint strong {
  color: #424242;
}
.glp-my-account__toggle-form {
  margin-bottom: 0;
}
.glp-my-account__divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 32px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .glp-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .glp-tabs__tab {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
  .glp-content {
    padding: 24px 0;
  }
  .glp-page__title {
    font-size: 22px;
  }
  .glp-training__grid,
  .glp-my-groups__grid {
    grid-template-columns: 1fr;
  }
  .glp-course-layout {
    grid-template-columns: 1fr;
  }
  .glp-course-sidebar {
    position: static;
    order: -1;
  }
  .glp-my-account__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .glp-my-account__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .glp-course-header__title {
    font-size: 22px;
  }
}

.fl-node-j5n36r0pwo9a {
    /* background-color: #''; */
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

