/**
 * Site-wide custom CSS, migrated from Appearance > Customize > Additional CSS
 * (2026-09-07) so it's version-controlled and identical across Pantheon's
 * Dev/Test/Live databases instead of living only in whichever environment's
 * Customizer settings it was authored in.
 *
 * NOTE: at the time of migration, this same CSS still also exists in the
 * Additional CSS box in the Customizer on the environment it was authored
 * on. That copy should be cleared out once this file is confirmed to be
 * rendering everything correctly, to avoid keeping two sources of truth.
 */

/* Default container styling */
.igniteContainer {
	padding: 5rem;
}

@media only screen and (max-width: 1024px) {
.igniteContainer {
	padding: 3rem 2rem;
}
}

@media only screen and (max-width: 767px) {
.igniteContainer {
	padding: 2rem 0.5rem;
}
}

/* Inner container styling */
.innerContainer {
	padding: 3rem;
}

@media only screen and (max-width: 1024px) {
.innerContainer {
	padding: 2rem;
}
}

@media only screen and (max-width: 767px) {
.innerContainer {
	padding: 2rem 1rem;
}
}

/* negativeTop container */
.negativeContainer {
	margin-top: -50px;
}

@media only screen and (max-width: 1024px) {
.negativeContainer {
	margin-top: -30px;
}
}

.fullwidthContainer {
    padding: 0 5px 0 5px;
}

/* Video.js*/
.video-js
{
    width: 100% !important;
    height: 100% !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
}

.video-js .vjs-big-play-button {
		color: #000;
    background-color: #93FF9E !important;
    border: none !important;
    border-radius: 0px !important;
}

.video-js .vjs-big-play-button:hover {
    background-color: #B175E1 !important;
}

.vjs-big-play-centered .vjs-big-play-button {
    top: 100% !important;
    left: 0% !important;
    margin-top: -49px !important;
    margin-left: 0px !important;
}

.video-js .vjs-modal-dialog {
    display: none !important;
}

/* WP Block buttons */
.wp-block-button__link, .wp-block-button, .wp-block-file__button, .wp-element-button
{
	border: none;
	border-radius: 0px;
	color: #000 !important;
	background-color: #93FF9E;
	font-size: 1rem;
}

.wp-block-button__link:hover, .wp-block-button:hover, .wp-block-file__button:hover, .wp-element-button:hover {
	color: #000 !important;
	background-color: #B175E1;
}

/* WP login page */
body.login {
    background-color: #2A2B2D !important;
}

/* Logged in or out CSS classes */
body:not(.logged-in) .logged-in-content {
    display: none !important;
}

body.logged-in .logged-out-content {
display: none !important;
}

/* Gravity Perks file upload button colour */
.cropper__lightbox button {
		font-size: 1rem !important;
    background: #93FF9E;
    padding: 10px 30px;
    border: 0;
    border-radius: 0px;
    color: black;
}

/* Gravity Form padding */
.gform_wrapper.gravity-theme .gfield_label {
    padding-top: 15px;
}

/* Read only Gravity Form fields */
body .gf_read_only input,
body .gf_read_only textarea,
body .gf_read_only select {
    pointer-events: none;
    background-color: #eee;
}

/* Gravity forms spacing
body .gform_wrapper .gform_body .gform_fields .gfield {
padding:0 0 30px 0;
} */

/* Gravity forms reduce spacing */
body .reducespace {
margin-bottom: -30px !important;
}

/* Gravity Forms single line consent */
body .gfield_consent_label {
    display: inline-block;
    max-width: calc(100% - 32px);
    vertical-align: top;
		margin-left: 3px;
	line-height: 1.4;
}

/* Align checkboxes with top of label only for this field */
.gform_wrapper.gravity-theme .top-align-checkbox input[type="checkbox"] {
  vertical-align: top;
  margin-top: 2px;
}

.gform_wrapper.gravity-theme .top-align-checkbox label {
  margin-left: 4px;
}

.gform_wrapper.gravity-theme .gfield_description:not(.validation_message) {
	margin-top: 0;
	padding-top: 0;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage {
	height: 2px;
	margin-bottom: 30px;
}

/* Gravity Forms max file upload message */
.gform_wrapper.gravity-theme .gform-ul-reset {
    display: none;
}

/* Gravity Forms Create Profile form images */
.regformimage
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Gravity Perks preview submission styling */
body .gform_preview, .referral-message {
    background-color: #e8f5e9;
    border: 1px solid #13A89E;
    padding: 2rem;
}

body .gform_preview table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

body .gform_preview table td {
    text-align: left;
	  border: none;
    background-color: #e8f5e9 !important;
		padding: 0.5rem;
}

body .gform_preview table tr:nth-child(odd) {
    border: none;
}

/* Referral code input */
body .referral-message input {
  background-color: #f9f9f9;
	border: none;
  border-left: 2px solid #13A89E;
  padding: 10px;
}


/* Partial entry warning */
.partial_entry_warning {
  padding: 1rem;
  background: #FAF5FF;
  border: 1px solid #F2F2F2;
	margin-bottom: 2rem !important;
}

/* Gravity Forms custom validation message
.custom_gfield_validation_messagem{
font-size: 0.9rem !important;
color: #c02b0a !important;
} */

/* Reg reports results table header */
.minimal-table th {
    text-align: left;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #252525;
    background-color: #fff;
}

/* Reg reports results table rows */
.minimal-table td {
    padding: 10px;
    color: #252525;
}

/* Alternate row hover effect */
.minimal-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* No borders */
.minimal-table,
.minimal-table th,
.minimal-table td {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Maintain equal column behavior */
.minimal-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Ensures width rules apply */
}

/* Allow wrapping within cells */
.minimal-table th,
.minimal-table td {
    word-wrap: break-word;
    white-space: normal;
    vertical-align: top;
}

/* Limit width of the "Message" column (3rd column) */
.minimal-table th:nth-child(3),
.minimal-table td:nth-child(3) {
    max-width: 300px;
    overflow-wrap: break-word;
}

/* Partial entries results table header */
.partial-entries-table th {
    background-color: #fafafa;
}

/* Alternate row hover effect */
.partial-entries-table tbody tr {
    background-color: #fff;
}

/* Reg report charts */
.bar {
  height: 6px;
  background: #e6e6e6;
  border-radius: 4px;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 6px;
  background: linear-gradient(90deg, #E7CAF3, #D9B8F5);
  border-radius: 4px;
  width: 0;
  animation: fillBar 0.5s ease forwards;
}

@keyframes fillBar {
  to {
    width: var(--target-width, 100%);
  }
}

/* Elementor active tab */
.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true], .elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] a {
    font-weight: 600 !important;
}

/* Elementor button text */
.lefttext .elementor-button span {
    text-align: left;
}

/* Protected page password form */

.post-password-form p {
	  display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.post-password-form input[type="submit"] {
	margin: 0;
}

.post-password-form label {
    font-weight: 700;
}

.post-password-form input[type="password"] {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 5px;
}

/* Gravity Forms – Radio + Checkbox choices as cards */

/* Card container */
.gform_wrapper .radio-cards .gfield_radio .gchoice,
.gform_wrapper .radio-cards .gfield_radio .gfield-choice,
.gform_wrapper .radio-cards .gfield_checkbox .gchoice,
.gform_wrapper .radio-cards .gfield_checkbox .gfield-choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 1.5rem 1rem;
  margin-bottom: 10px;
  border-radius: 8px;
  border: solid 1px #00000010;
  background: #FAF5FF;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Hover state */
.gform_wrapper .radio-cards .gfield_radio .gchoice:hover,
.gform_wrapper .radio-cards .gfield_radio .gfield-choice:hover,
.gform_wrapper .radio-cards .gfield_checkbox .gchoice:hover,
.gform_wrapper .radio-cards .gfield_checkbox .gfield-choice:hover {
  border: solid 1px #B175E1;
}

/* Selected state (radio OR checkbox) */
.gform_wrapper .radio-cards .gfield_radio .gchoice:has(.gfield-choice-input:checked),
.gform_wrapper .radio-cards .gfield_radio .gfield-choice:has(.gfield-choice-input:checked),
.gform_wrapper .radio-cards .gfield_checkbox .gchoice:has(.gfield-choice-input:checked),
.gform_wrapper .radio-cards .gfield_checkbox .gfield-choice:has(.gfield-choice-input:checked) {
  background: #fff;
	border: solid 1px #5E33BF;
}

/* Input alignment */
.gform_wrapper .radio-cards .gfield_radio .gfield-choice-input,
.gform_wrapper .radio-cards .gfield_checkbox .gfield-choice-input {
  margin-top: 4px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

/* Label text - expanded to cover full card for click target */
.gform_wrapper .radio-cards .gfield_radio label,
.gform_wrapper .radio-cards .gfield_checkbox label {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 1.5rem 1rem 1.5rem calc(1rem + 24px + 8px);
  display: flex;
  align-items: flex-start;
  line-height: 1.3rem;
  cursor: pointer;
}

/* Keyboard focus */
.gform_wrapper .radio-cards .gfield_radio .gfield-choice-input:focus-visible,
.gform_wrapper .radio-cards .gfield_checkbox .gfield-choice-input:focus-visible {
  outline: 2px solid #2271b1;
  outline-offset: 2px;
}

/* Break into day columns  */
#field_29_6 .radio-cards-columns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#field_29_6 .radio-cards-column {
  flex: 1 1 200px;
  min-width: 200px;
}

#field_29_6 .radio-cards-day-heading {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

#field_29_6 .radio-cards-column .gchoice {
  margin-bottom: 8px;
}

/* Client side Sub session filters */
.subsessions-track-filter {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

.subsessions-track-filter .track-filter-btn {
    padding: 5px 10px;
    border-radius: 20px;
    background: #F2F2F2;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 300;
    text-align: center;
}

.subsessions-track-filter .track-filter-btn:hover {
    background: #B175E1;
}

.subsessions-track-filter .track-filter-btn.is-active {
    background: #B175E1;
}
