@media (max-width: 1024px) {
	.planetarium-intro-columns > .wp-block-column:first-child {
		display: none;
	}

	.planetarium-intro-columns > .wp-block-column:last-child {
		flex-basis: 100% !important;
		width: 100% !important;
		padding-left: 0 !important;
	}
}

body {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

@media (max-width: 480px) {
	body {
		background-image: none;
	}
}

.planetarium-intro-columns
.wp-block-post-featured-image.has-background
> .wp-post-image {
    height: 14rem !important;
    width: 100%;
    object-fit: cover;
}

/* ========================================
   Planetarium MetaSlider
   ======================================== */


/* Show title / Now Playing group */
.planetarium-show-title {
	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(0, 0, 0, 0.35);

	padding: 1.2rem 2.75rem !important;

	color: #fff;
	text-align: center;
	white-space: nowrap;
}


/* Show Information button */
.planetarium-show-button {
	display: inline-block;

	padding: 1.2rem 2.75rem !important;

	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(0, 0, 0, 0.35);

	color: #fff !important;
	font-family: "Raleway", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.14em;

	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	white-space: nowrap;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.planetarium-show-button:hover,
.planetarium-show-button:focus-visible {
	background: rgba(0, 0, 0, 0.7);
	border-color: #fff;

	color: #fff !important;
	text-decoration: none !important;
}

.planetarium-show-button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}


/* Wrapper used by the injected video control */
.planetarium-slider-control-wrapper {
	position: relative;
}


/* Play/Pause video control */
.planetarium-slider-control-wrapper > .planetarium-video-toggle {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 50;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;

	min-height: 44px;
	padding: 0.75rem 1.15rem !important;

	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(0, 0, 0, 0.65);

	color: #fff !important;
	font-family: "Raleway", Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;

	white-space: nowrap;
	cursor: pointer;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.planetarium-slider-control-wrapper > .planetarium-video-toggle:hover {
	background: rgba(0, 0, 0, 0.85);
	border-color: #fff;
}

.planetarium-slider-control-wrapper > .planetarium-video-toggle:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.planetarium-video-toggle-icon {
	display: inline-block;

	min-width: 1rem;

	font-size: 1rem;
	line-height: 1;
	text-align: center;
}


/* Mobile adjustments */
@media (max-width: 480px) {

	.planetarium-show-title {
		padding: 0.9rem 1.25rem !important;
		white-space: normal;
	}

	.planetarium-show-button {
		padding: 0.9rem 1.5rem !important;

		font-size: 0.85rem;
		letter-spacing: 0.1em;
	}

	.planetarium-slider-control-wrapper > .planetarium-video-toggle {
		right: 0.75rem;
		bottom: 0.75rem;

		min-height: 44px;
		padding: 0.7rem 0.9rem !important;

		font-size: 0.8rem;
	}
}
/* =========================================================
   Planetarium Wide Header — Compress on Scroll
   ========================================================= */

@media (min-width: 1226px) {

	header.wp-block-template-part > .wp-block-group {
		transition:
			padding-top 0.3s ease,
			padding-bottom 0.3s ease;
	}

	body.has-scrolled
	header.wp-block-template-part > .wp-block-group {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}
}


/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {

	header.wp-block-template-part > .wp-block-group {
		transition: none;
	}
}

/* =========================================================
   Planetarium Wide Header — Shrink Logo on Scroll
   ========================================================= */

@media (min-width: 1226px) {

	.planetarium-header-wide .custom-logo {
		width: 27rem;
		height: auto;
		transition: width 0.3s ease;
	}

	body.has-scrolled .planetarium-header-wide .custom-logo {
		width: 16rem;
	}
}


/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {

	.planetarium-header-wide .custom-logo {
		transition: none;
	}
}


/* ==========================================================
   PLANETARIUM MEMBERSHIP CARDS
   Complete replacement / drop-in CSS
   ========================================================== */


/* ----------------------------------------------------------
   Card layout
   ---------------------------------------------------------- */

.membership-cards {
	display: flex;
	align-items: stretch;
	gap: 2.75rem;
}

.membership-cards > .wp-block-column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.membership-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 665px;
	margin: 0;
	padding: 0;
	overflow: hidden;

	background: #0797cf;
	color: #fff;

	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

/* ==========================================================
   MEMBERSHIP CARDS — MOBILE
   ========================================================== */

@media (max-width: 781px) {

	.membership-cards {
		display: block !important;
		width: 100% !important;
	}

	.membership-card {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		min-width: 0 !important;
		margin: 0 0 2rem 0 !important;
	}

	.membership-card:last-child {
		margin-bottom: 0 !important;
	}

	.membership-price {
		width: 60% !important;
	}

	.membership-card-body {
		padding: 3rem 1.5rem 2rem !important;
	}
}

/* ----------------------------------------------------------
   Price
   ---------------------------------------------------------- */

.membership-price {
	box-sizing: border-box;
	width: 54%;
	margin: 0 auto;
	padding: 2.75rem 1rem;

	background: #086783;
	text-align: center;
}

.membership-price p {
	margin: 0 !important;
	padding: 0 !important;

	color: #fff !important;
	font-size: clamp(2rem, 3vw, 2.75rem);
	font-weight: 600;
	line-height: 1;
}


/* ----------------------------------------------------------
   Main content area
   ---------------------------------------------------------- */

.membership-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	box-sizing: border-box;

	margin: 0;
	padding: 5rem 3rem 2.5rem;

	color: #fff;
	text-align: center;
}

.membership-card-body h2,
.membership-card-body h3,
.membership-card-body h4 {
	color: #fff !important;
}

.membership-card-body h2 {
	margin: 0 0 1rem !important;
	padding: 0 !important;

	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
}

.membership-card-body h3 {
	margin: 0 0 0.75rem !important;
	padding: 0 !important;

	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
}


/* ----------------------------------------------------------
   Separator
   ---------------------------------------------------------- */

.membership-card-body .wp-block-separator {
	width: 100% !important;
	max-width: none !important;

	margin: 0 0 0.9rem !important;

	border: 0 !important;
	border-top: 2px solid rgba(255, 255, 255, 0.9) !important;
	opacity: 1 !important;
}


/* ----------------------------------------------------------
   Package list
   Removes WordPress / Divi bullets completely
   ---------------------------------------------------------- */

.membership-card-body ul,
.membership-card-body ol,
.membership-card-body .wp-block-list {
	margin: 0 !important;
	padding: 0 !important;

	list-style: none !important;
	text-align: center;
}

.membership-card-body ul li,
.membership-card-body ol li,
.membership-card-body .wp-block-list li {
	margin: 0.15rem 0 !important;
	padding: 0 !important;

	color: #fff !important;
	font-size: 1rem;
	line-height: 1.55;

	list-style: none !important;
}

.membership-card-body li::marker {
	content: "" !important;
	font-size: 0 !important;
}

.membership-card-body li::before {
	display: none !important;
	content: none !important;
}


/* ----------------------------------------------------------
   General card text
   ---------------------------------------------------------- */

.membership-card-body p {
	color: #fff !important;
	font-size: 1rem;
	line-height: 1.55;
}


/* ----------------------------------------------------------
   Membership footnote
   ---------------------------------------------------------- */

.membership-card-body .membership-note {
	margin-top: 1.25rem !important;
	margin-bottom: 0 !important;

	font-style: italic;
	font-weight: 600;
}

/* ==========================================================
   MEMBERSHIP CARD CTA
   Complete replacement
   ========================================================== */

.membership-card-actions.wp-block-buttons {
	display: flex !important;
	align-items: stretch !important;
	width: 100% !important;

	margin: auto 0 0 !important;
	padding: 0 !important;
	gap: 0 !important;

	background: #047fac !important;
}

.membership-card-actions .wp-block-button {
	display: flex !important;
	width: 100% !important;

	margin: 0 !important;
	padding: 0 !important;

	background: #047fac !important;
}

.membership-card-actions .wp-block-button__link,
.membership-card-actions .wp-element-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	box-sizing: border-box !important;
	width: 100% !important;
	min-height: 3.25rem;

	margin: 0 !important;
	padding: 0.9rem 1.25rem !important;

	background: #047fac !important;
	color: #fff !important;

	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;

	font-size: 1.25rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;

	text-align: center !important;
	text-decoration: none !important;
	text-transform: uppercase;
}


/* Hover */

.membership-card-actions:hover,
.membership-card-actions:hover .wp-block-button,
.membership-card-actions .wp-block-button__link:hover,
.membership-card-actions .wp-element-button:hover {
	background: #086783 !important;
	color: #fff !important;
}


/* Keyboard focus */

.membership-card-actions .wp-block-button__link:focus-visible,
.membership-card-actions .wp-element-button:focus-visible {
	background: #086783 !important;
	color: #fff !important;

	outline: 3px solid #fff !important;
	outline-offset: -5px !important;
}

/* ----------------------------------------------------------
   Tablet / mobile
   ---------------------------------------------------------- */

@media (max-width: 781px) {

	.membership-cards {
		display: block;
	}

	.membership-cards > .wp-block-column {
		display: block;
		margin-bottom: 2rem;
	}

	.membership-card {
		min-height: 0;
	}

	.membership-price {
		width: 60%;
	}

	.membership-card-body {
		padding: 3rem 1.5rem 2rem;
	}

	.membership-card-body > .membership-card-actions {
		width: calc(100% + 3rem) !important;

		margin-right: -1.5rem !important;
		margin-bottom: -2rem !important;
		margin-left: -1.5rem !important;
	}
}


@media (max-width: 480px) {

	.membership-price {
		width: 70%;
		padding: 2rem 1rem;
	}

	.membership-card-body h2 {
		font-size: 1.75rem;
	}

	.membership-card-actions .wp-block-button__link,
	.membership-card-actions .wp-element-button {
		font-size: 1rem !important;
	}
}

/* ==========================================================
   FOP SIDEBAR PROMO CARDS
   ========================================================== */

.fop-promo-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 0 2rem;
	padding: 0;
	overflow: hidden;

	background: #0797cf;
	color: #fff;

	border: 0;
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);

	text-align: center;
}


/* Main promo message */

.fop-promo-card > :not(.fop-promo-card-action) {
	box-sizing: border-box;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.fop-promo-card h2,
.fop-promo-card h3,
.fop-promo-card h4,
.fop-promo-card p {
	color: #fff !important;
}

.fop-promo-card h2,
.fop-promo-card h3,
.fop-promo-card h4 {
	margin: 0 !important;
	padding: 2rem 2rem 1.5rem !important;

	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.25;
}

.fop-promo-card p {
	margin: 0 !important;
	padding: 2rem !important;

	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
}


/* ==========================================================
   CTA FOOTER
   ========================================================== */

.fop-promo-card-action {
	display: block !important;
	box-sizing: border-box;
	width: 100% !important;

	margin: auto 0 0 !important;
	padding: 1rem 1.25rem !important;

	background: #047fac !important;
	color: #fff !important;

	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;

	font-size: 1.05rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;

	text-align: center !important;
	text-decoration: none !important;
}


/* If the class is on a wrapper containing an */

.fop-promo-card-action a {
	display: block !important;
	width: 100% !important;

	color: #fff !important;

	font: inherit !important;
	text-decoration: none !important;
}


/* Hover */

.fop-promo-card-action:hover,
.fop-promo-card-action:hover a {
	background: #086783 !important;
	color: #fff !important;
}


/* Keyboard focus */

.fop-promo-card-action:focus-visible,
.fop-promo-card-action a:focus-visible {
	background: #086783 !important;
	color: #fff !important;

	outline: 3px solid #fff !important;
	outline-offset: -5px !important;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 781px) {

	.fop-promo-card {
		margin-bottom: 1.5rem;
	}

	.fop-promo-card h2,
	.fop-promo-card h3,
	.fop-promo-card h4 {
		padding: 1.5rem 1.25rem 1.25rem !important;
		font-size: 1.4rem;
	}

	.fop-promo-card p {
		padding: 1.5rem 1.25rem !important;
		font-size: 1.2rem;
	}
}

/* Mobile navigation toggle */

.planetarium-header-compact .wp-block-navigation__responsive-container-open,
.planetarium-header-small .wp-block-navigation__responsive-container-open,
.planetarium-header-mobile .wp-block-navigation__responsive-container-open {
	background: #fff !important;
	padding: 0.5rem !important;
	border-radius: 0.25rem;
}

/* Legacy Styles */
.no-sidebar{
	padding: 5rem !important;
}

h1, h2, h3, h4, h5{
  margin-top: .75rem;
}
sup {
  font-size: 1rem;
}

.home h1.entry-title{
 display: none;
}
.panel-grid-cell .widget-title {
    margin-top: .5rem;
    font-size: 1rem;
}

.home #main-content .container{
	padding-top: 0 !important;
}

/* Start Tablepress customs */
.tablepress tfoot th,
.tablepress thead th {
	background-color: #ffffff;
	border-bottom: double 1px black;
  font-weight: 900;
    text-transform: uppercase;
  font-size: 1.25em;
  	
}

.tablepress .column-2,
.tablepress .column-3, 
.tablepress .column-4,
.tablepress .column-5,
.tablepress .column-6,
.tablepress .column-7
{
	border-left: 1px solid #cccccc;
	white-space: normal;
 }

/* styles for school shows */
.school-trips td, 
.school-trips th
{
	text-align:center;
 }

.school-trips .row-2 .column-1,
.school-trips .row-2 .column-4
{
  background-color:#cccccc;
}

.school-trips .row-3
{
  background-color:#00769d;
}
.row-3 td{
	  color: #ffffff;
}

.tablepress .green {
  background-color: #008000 !important;
  border: 8px solid #00cc00;
  color: #ffffff;
  font-weight: 700;
  padding: .25rem;
}
.tablepress .yellow {
  background-color: #ffcc00;
  border: 8px solid #FDDE44 !important;
  color: #000000 !important;
  font-weight: 700;
  padding: .25rem;
}
.tablepress .red {
  background-color: #D10000 !important;
  border: 8px solid red;
  color: #ffffff;
  font-weight: 700;
  padding: .25rem;
}
.tablepress .gray {
  background-color: #2a292a;
   border: 8px solid #2a292a;
  color: #ffffff;
  font-weight: 700;
  padding: .25rem;
}
#tablepress-2 td.column-1,
#tablepress-3 td.column-1,
#tablepress-4 td.column-1{
	width: 30%;
}

/* End Tablepress customs */

#black-studio-tinymce-2 h3.widget-title{
  font-size: 19px !important;
}

div.about div.sow-image-container h3.widget-title,
.page-id-294 h3.widget-title{
   font-size: .9em !important;
   margin-top: .5rem;
   line-height: 1.25em;
   font-weight: 500;
}

.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
    font-weight: 700;
    font-size: 2em;
}
/* .price{
    right:.75em;
    position: absolute;
    top: 0;
    background-color: #005980;
    text-align: center;
    padding: 1em;
    font-size: 2em;
}

.fop-membership{
  min-height: 48rem;
  padding-top: 6rem !important;
}

.fop-price{
		    font-size: 2.5rem;
    padding: 5rem 0;
    margin: 0 4rem;
    background-color: #005980;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    top: -3rem;
    line-height: 0;
}

.sow-features-list .sow-features-feature {
	background: #008fcc;
	border-radius: 2px;
	border: 4px solid #FFF;
}

.page-id-355 .sow-icon-container{
  margin-bottom: 1.5rem !important;
}

#fop-levels{
  color: #ffffff;
}

#fop-levels p.sow-more-text{
  display: block;
  font-size: .9em;
  text-transform: uppercase;
  padding: 1em;
  background-color: #007baf;
  border: 1px solid white;
  margin: 2em 0 !important;
}
#fop-levels p.sow-more-text a{
  border-bottom: none;
}

.hide-me{
  display: none;
} */
