.--landing-page-primary-navigation-template .sidebar,
.home .sidebar-wrapper {
	display: none;
}

.preview-link a {
	display: block;
	background-color: var(--light-grey);
	margin-bottom: 1rem;
}

.district .yellow-button-new {
	background-color: #E1AD01;
	border: none;
	color: black;
	padding: 20px 34px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	margin: 4px 2px;
	cursor: pointer;
}


*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

.display-inline * {
  display: inline-block;
}

.aria-hide {
  display: none;
}

.arrow-up-link{
    text-align: right;
    color: white;
    display: none;
    width: fit-content;
    margin-left: auto;
    margin-right: .5rem;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 100;
}

.arrow-up {
	background-color: #aeaeae;
    padding: .25rem;
    font-size: 2rem;
    transition: all .3s ease;
}

/* Variables */
:root {
  --primary-brand: #0066CC;
  --secondary-brand: #1A4FAF;

  --primary-action: #FFCC00;
  --secondary-action: #CF128C;

  --dark-grey: #3B3B3B;
  --medium-grey: #79838A;
  --light-grey: #f6f6f6; 
  
  --serif-font: p22-mackinac-pro, serif;
  --sans-serif-font: mr-eaves-xl-modern, sans-serif;
    
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
  --font-black: 900;
  
  --body-font-color: #3B3B3B;
  --link-font-color: #0066CC;
  
  --green: #9BC23C;
  --blue: #0066CC;
  --orange: #FFA00D;
  --yellow: #F6CC0B;
  --pink: #D02A8C;

  --board-news: #0066CC;
  --school-news: #D02A8C;
  --spotlight: #FFA00D;
  --story: #9BC23C;
  --blog: #62376d;
  --board-and-committee-meetings: #622c13;

  /* For Schools*/
  --primary-brand-a: CC; /* opacity: 80% */
}

/* background-colors */
.primary-brand_bg { background-color: var(--primary-brand); }
.secondary-brand_bg { background-color: var(--secondary-brand); }
.primary-action_bg { background-color: var(--primary-action); }
.secondary-action_bg { background-color: var(--secondary-action); }

.dark-grey_bg { background-color: var(--dark-grey); color: white; }
.medium-grey_bg { background-color: var(--medium-grey); }
.light-grey_bg { background-color: var(--light-grey); }
.white_bg { background-color: white; color: var(--body-font-color); }
.green_bg { background-color: var(--green); color: var(--body-font)!important; }
.blue_bg { background-color: var(--blue); color: white; }
.orange_bg { background-color: var(--orange); color: var(--body-font)!important; }
.yellow_bg { background-color: var(--yellow); color: var(--body-font)!important; }
.pink_bg { background-color: var(--pink); }

.green_bg :is(h1, h2, h3, h4, h5, h6),
.yellow_bg :is(h1, h2, h3, h4, h5, h6),
.orange_bg :is(h1, h2, h3, h4, h5, h6) {
   color: var(--body-font)!important;
}

.yellow_bg .btn-primary {
  background-color: white;
}

.yellow_bg .btn-primary::before {
  background-color: var(--yellow);
}

.yellow_bg .btn-primary::after {
  border-color: var(--yellow);
}

/* colors */
.primary-brand_color { color: var(--primary-brand); }

/* svg fills */
.primary-brand_fill { fill: var(--primary-brand); }

/* borders */
.green_border { border-color: var(--green)!important; }
.blue_border { border-color: var(--blue)!important; }
.orange_border { border-color: var(--orange)!important; }
.yellow_border { border-color: var(--yellow)!important; }
.pink_border { border-color: var(--pink)!important; }

/* TYPOGRAPHY
Using the Perfect Fifth factor from https://www.gridlover.net/try
*/
html {
  font-size: 16px;
  line-height: 21px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0 auto;  
  font-family: var(--sans-serif-font);
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--body-font-color);
  max-width: 2560px;
}

h1, .h1 {
  font-family: var(--sans-serif-font);
  font-weight: var(--font-bold);
  font-style: normal; 
  font-size: 3.348rem;
  margin-top: 1.3125rem;
  margin-bottom: 2.625rem;
	line-height: 1.1;
}

@media all and (max-width: 62em){
	h1, .h1 {
		font-size: 2rem;
	}
}

h2, .h2, h3, .h3, h4, 
.h4, h5, .h5, h6, .h6 {
  font-family: var(--sans-serif-font);  
  font-weight: 700;
  font-style: normal;
	line-height: 1.1;
}

h2, .h2 {
  font-size: 2.625rem;
  margin-top: 1.3125rem;
  margin-bottom: 1.3125rem;
}

h3, .h3 {
  color: #BC0F7F;
  font-size: 1.625rem;
  margin-top: 1.3125rem;
  margin-bottom: 1rem;
}

h4, .h4 {
  font-size: 1.3rem;
  margin-top: 1.3125rem;
  margin-bottom: 0rem;
}

h5, .h5 {
  font-size: 1.3rem;
  margin-top: 1.3125rem;
  margin-bottom: 0rem;
}

p, ul, ol, pre, table, blockquote {
  margin-top: 0rem;
  margin-bottom: 1.3125rem;
}

ul ul, ol ol, ul ol, ol ul {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

h1 + h2 {
  margin-top: 0;
}

.lead {
  font-size: 120%;
}

img {
  max-width: 100%;
}

@media(min-width: 62em) {
	figure.image-style-side {
		float: right;
		max-width: 50%;
		margin: 0 0 1.5rem 1.5rem;
		overflow: auto;
	}
	
	figure.image-style-side::after {
		content: "";
	  clear: both;
	  display: table;
	}
}

a {
  text-decoration: none;
}

blockquote {
	background: #fff3d8;
	border-radius: 2px;
	border-left: 0.5rem solid #f2a800;
	padding: 1rem;
	margin: 0 0 1rem 0;	
}

blockquote p:last-of-type {
	margin-bottom: 0;
}

hr {
	margin: 1rem 0 4rem;
	border: 0;
	height: 1px;
	background: #e8e8e8;
}

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

.text-right {
	text-align: right;
}

.change-font-size {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 18px;
    border-radius: 25px;
}

.change-font-size span {
	font-weight: bold;
}

.change-font-size a {
    display: inline-block;
    margin-left: 0.75rem;	
	cursor: pointer;
}

.seperator-arrow_down {
  width: 0; 
  height: 0; 
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;

  border-top: 20px solid;
}

.seperator-arrow_right {
  width: 0; 
  height: 0; 
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;

  border-left: 20px solid;
}

.seperator-arrow_down.arrow_white {
  border-top-color: white;
}

.seperator-arrow_right.arrow_grey {
  border-left-color: var(--light-grey);
}

.no-padding {
  padding: 0;
}

.allow-newlines {
  white-space: pre-wrap;
}


.content-container {
	width: 100%;
	padding: 0;
}

.add-padding{
	padding: 0 1rem;
}

@media(min-width: 75em) {
	.col-lg-offset-0 {
		margin-left: 0;
	}
	
	.change-font-size {
    	margin-bottom: 2rem;
	}
}

.no-margin {
	margin: 0;
}

/*
COLOUR CLASSES
*/

/*Global*/
.dark-grey-bg {
  background-color: var(--dark-grey)!important;
  color: #fff!important;
}

.dark-grey-bg h1, 
.dark-grey-bg h2, 
.dark-grey-bg h3, 
.dark-grey-bg h4, 
.dark-grey-bg h5, 
.dark-grey-bg h6, 
.dark-grey-bg p  {
  color: #fff;
}

.medium-grey-bg {
  background-color: var(--medium-grey)!important;
  color: #fff!important;
}


.light-grey-bg {
  /*background-color: #d6e2e7!important;*/
  background-color: var(--light-grey)!important;
}

.white-bg {
  background-color: #fff!important;
}
/* */

a {
  color: var(--blue);
  transition: all .2s ease-in-out;  
}

a:hover,
a:focus {
  filter: brightness(105%);
}

/* Buttons */
.btn,
input[type="submit"] {
  position: relative;
  font-family: var(--sans-serif-font);
  display: inline-block;
  line-height: 1.25;
  color: var(--blue);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  border-radius: 2px;
  transition: all .2s ease-in-out;  
}

.btn::before {
  content: '';
  width: 1rem;
  height: 2px;
  background-color: var(--yellow);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-1px);
  transition: all .2s linear;
}

.btn:hover::before,
input[type="submit"]:hover::before {
  width: 13px;
}

.btn::after,
input[type="submit"]::after {
  content: '';
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  transform: rotate(-45deg);
  left: 0;
  border: solid var(--yellow);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transition: all .3s linear;
}

.btn:hover::after,
input[type="submit"]:hover::after {
  opacity: 1;
  left: 9px;
}

.btn-primary {
  background-color: var(--primary-action);
  color: var(--body-font-color);
  font-weight: var(--font-bold);
}

.btn-primary::before {
  background-color: white;
}

.btn-primary::after {
  border-color: white;
}

.btn-secondary,
input[type="submit"] {
  color: #fff;
  background-color: var(--secondary-action);
  font-weight: var(--font-bold);
}

.btn-link {
  text-align: left;
}

.btn-lg {
  font-size: 1rem;
}

.btn-sm {
  padding: 0.25rem .75rem;
  font-size: .75rem;
  letter-spacing: 1px;
  border-radius: 0.15rem;
}

.btn-simple {
	color: #fff;
    background-color: var(--secondary-action);
    font-weight: var(--font-bold);
	position: relative;
    font-family: var(--sans-serif-font);
    display: inline-block;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    transition: all .2s ease-in-out;
}

.btn-simple:hover {
	filter: brightness(1.1);
}

.main-content,
.ck-content {
	position: relative;
}

.expand-all {
	cursor: pointer;
	display: none;
	align-items: center;
	gap: .5rem;
    background: var(--light-grey);
    color: var(--blue);
    padding: .5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
	font-size: 1.1rem;
	width: fit-content;
    margin-bottom: 1rem;
    position: sticky;
    top: 2rem;
    right: 0;
    margin-left: auto;
    z-index: 50;
}

@media(min-width: 75em) {
	.btn {
		font-size: 1.1rem;
	}
	
	.btn-lg {
	  font-size: 1.1rem;
	}
}

#skip a
{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
 
#skip a:focus
{
position:static;
width:auto;
height:auto;
}


/* SERVICES */
#nav-app { 
  position: static;
  top: 0.5rem;
  right: 0;
  padding: 0;
  background-color: var(--primary-brand);
  order: -1;
}

#nav-app ul { 
	display: flex; 
	margin: 0; 
	padding: 0; 
	white-space: nowrap; 
	justify-content: center;
	align-items: center;
}

#nav-app li { 
	list-style: none; 
	white-space: nowrap;
	margin: .25rem .5rem;
}

#nav-app ul li > a { 
	padding: 0; 
	cursor: pointer; 
	display: flex;
	align-items: center;
	color: #fff;
}

.staff-login-link {
    margin: 0.5rem 0;
	font-weight: bold;
}

.staff-login-link:hover {
	text-decoration: underline;
}

@media(min-width: 62em) {
	#nav-app ul li > a { 
		color: var(--primary-brand);
	}	
}

#nav-app a:hover,
#nav-app a::focus { 
	text-decoration: underline;
    color: var(--yellow);
}

.op-services .service { 
	text-align: center;
}

.op-services .service a {
  padding-bottom: .75rem;
}

.op-services .service-icon { 
  margin-bottom: 5px;
}

.op-services img { 
  height: 40px;
  max-width: 100%;
}

.op-services span { 
  font-size: .8rem;
  line-height: .6;
  color: var(--blue);
	font-weight: bold;
}

@media(min-width: 62em) {
	#nav-app {
		width: unset;
	}
  .op-services img { 
    height: 60px;
    max-width: 120px;
  }  

  .op-services span { 
    letter-spacing: 1px;
  }  
}


.op-services .service-footer { 
  text-align: center; 
  margin: 10px 0 0 0; 
  padding: 10px 0; 
  background: #2c2c2c;
}

.op-services .service a:hover,
.op-services .service a:focus,
.op-services .service-footer:hover,
.op-services .service-footer:focus {
  text-decoration: underline;
}

#search-form .input-field label,
.search-api-form .input-field label {
  display: none;
}

/* Nav App & Option Box */
.optionbox-padding {
	padding: 0 .5rem;
}

.op-search .optionbox-padding {
	padding: 0;
}

.optionbox ul { padding:  0; margin: 0 }
.optionbox li { list-style: none }
.optionbox li i { display: inline-block; text-align: center; margin-right: 5px; vertical-align: middle; }
.optionbox li span { vertical-align: middle }

.password-link {
  font-style: italic;
  padding: 20px 0 10px;
}

.optionbox a { 
  display: block; 
  color: var(--blue);
  cursor: pointer;
}

.optionbox a:hover,
.optionbox a:focus {
  filter: brightness(115%);
}

.arrow-clip {
  position: absolute;
  top: -8px;
  width: 22px;
  height: 8px;
  overflow: hidden;
  margin-left: 5px;
}

.arrow {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 5px;
  background: #3e3e3e;
  transform: rotate(45deg);
  box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
} 

input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: none;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

#quicklinks-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #F4F4F4;
	border: 0;
	padding: 0.75rem 1rem;
	background-image: linear-gradient(
	45deg, transparent 50%, gray 50%), linear-gradient(
	135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
}

.input-field input[type="text"], .input-field input[type="password"], 
.input-field input[type="date"], .input-field input[type="tel"], 
.input-field input[type="email"], .input-field input[type="search"],
textarea {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
	padding: .25rem;
}

#nav-app #search-form,
#nav-app .search-api-form {
	display: flex;
	align-items: center;
    justify-content: flex-start;
}

#nav-app .search-bar {
   transition: all .3s;
	transform: scaleY(0);
	margin: 0;
	transform-origin: top left;
	position: absolute;
	top: 32px;
	z-index: 100;
	padding: 1rem;
	background: white;
	order: -1;
}

.search-options-wrapper {
	color: #000;
}

.search-options-wrapper * {
	display: inline-block;
    min-width: 0;
}

#nav-app .search-bar.active {
	transform: scaleY(1);
}

#nav-app .option-search {
	margin-left: .5rem;
}

#nav-app .optionbox {
	position: absolute;
	box-sizing: border-box;
	z-index: 30000;
	color: #fff;
	padding-left: 1rem;
	padding-right: 1rem; 
	margin-left: -1rem;
	transform: scaleY(0);
	transform-origin: top left;
	transition: all .2s;
	margin: 0;
	margin-left: 0;
	top: 32px;
	background: #ffffff;
	padding: 0.75rem 1rem 0.5rem;
	-webkit-box-shadow: 0 5px 5px 2px rgb(0 0 0 / 10%);
	box-shadow: 0 5px 5px 2px rgb(0 0 0 / 10%);
}

#nav-app .optionbox input[type="text"] {
    color: var(--body-font-color);
}

#nav-app .optionbox.active{
	transform: scaleY(1);
}


#nav-app .search-bar #search-button {
    padding: 0.6rem 1.5rem;
	width: fit-content;
	min-width: fit-content;
}

#nav-app .search-bar #search-button:hover,
#nav-app .search-bar #search-button:focus {
    filter: brightness(1.1);
}

#nav-app .search-bar #search-term,
#nav-app .search-bar #search-term-clone,
#nav-app .search-bar .search-box {
	border: 0;
}

.search-row {
	display: flex;
	align-items: center;
}

.search-row input {
	margin-right: 0;
}

.filter-icon {
	background: white;
    padding: .5rem;
	cursor: pointer;
	color: var(--primary-brand);
}

.school .filter-icon {
	color: var(--dark-grey);
}

.search-filters {
	display: none;
	position: absolute;
    background: var(--light-grey);
    width: 100%;
    left: 0;
    right: 0;
    top: 49px;
    padding: .5rem;
	/*box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;*/
}

.filter-group {
	margin: .5rem 0;
}

#exclude-wrapper {
	margin: 0 5px 0.75rem;
}

#exclude-search-term {
	margin: 0;
	padding-left: 0.5rem;
}

input[type="checkbox"]{
	min-width: unset;
}

@media(max-width: 62em) {
	#nav-app > ul {
		flex-wrap: wrap;
	}

	#nav-app #search-form,
	#nav-app .search-api-form {
		justify-content: space-between;
	}
	
	#nav-app #search-form .input-field,
	#nav-app .search-api-form .input-field {
		width: 100%;
	}
	
	#nav-app .search-bar #search-term,
	#nav-app .search-bar #search-term-clone,
	#nav-app .search-bar .search-box {
		width: 90%;
	}

	#nav-app .search-bar.active {
		position: static;
		width: 100%;
		padding: 0 .5rem;
	}
	
	#nav-app .optionbox {
		top: 81px;
	}
	
	#nav-app #search-form #exclude-wrapper {
		width: unset;
	}
}

@media(min-width: 62em) {
	#nav-app .optionbox {
		top: 50px;
		right: 0;
		min-width: 180px;
	}	
	
	#nav-app .search-bar {
		width: 0;
		transition: all .6s;
		margin: 0;
		position: static;
		padding: 0;
		background: transparent;
		box-shadow: none;
		transform: scale(0, 1);
	}
	
	#nav-app .search-bar #search-term,
	#nav-app .search-bar #search-term-clone,
	#nav-app .search-bar .search-box {
		padding: .5rem;
		width: auto;
		min-width: 250px;
	}
	
	#nav-app .search-bar.active {
		width: auto;
		transform: scale(1, 1);
	}
	
	.search-filters {
		top: 45px;
		background-color: #efefef;
		width: auto;
		min-width: 258px;
		padding: 0 .5rem;
	}
}


/* MAIN MENU */
.header-row {
  margin-bottom: 2rem;
  margin: 0px -2rem;
}

.minus-margin {
  margin: 0px -2rem;
}	

.main-menu-wrapper {
  position: relative;
  /*height: fit-content;*/
  width: 100%;
}

.main-menu-wrapper .collapsed-menu {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

/* @media(min-width: 99em) {
  .header-row {
    min-height: 650px;
  }
} */

.menu-column {
  width: 100%;
	padding-right: 0;
    padding-left: 0;
}

nav,
.cookie {
  font-family: var(--sans-serif-font);
}

#main-nav {
  position: relative;
}

#main-nav ul {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

#main-nav > ul > li {
	vertical-align: middle;
	color: #fff;
	position: relative;
	font-size: 1rem;  
	display: block;
	cursor: pointer;
	width: 100%;
	padding: 1rem 0 0.75rem;
}

#main-nav > ul > li a {
	color: #fff;
	position: relative;
	font-size: 1.1rem;  
	display: block;
}

#main-nav ul .main-dropdown-menu {
  margin-top: 0.5rem;
  background: var(--secondary-brand);
  left: calc(100% - 1px);
  z-index: 1100;
  opacity: 0;
  transition: all .3s;
}

#main-nav ul .main-dropdown.active .main-dropdown-menu {
  opacity: 1;
  padding: .5rem;
}

@media (max-width: 62em){
	#main-nav ul .main-dropdown-menu {
		height: 0;
		transform: scaleY(0);
		transform-origin: top;
		overflow: hidden;
	}

	#main-nav ul .main-dropdown.active .main-dropdown-menu {
	  height: fit-content;
	  opacity: 1;
	  transform: scaleY(1);
		overflow: scroll;
	}

}

#main-nav ul .main-dropdown.active .main-dropdown-menu li, 
#main-nav ul .main-dropdown.active .main-dropdown-menu a {
	opacity: 1;
}

#main-nav ul .main-dropdown.active .main-dropdown-menu li.current {
	color: var(--yellow);
}

#main-nav ul .main-dropdown > a {
	/*pointer-events: none;	*/
    cursor: pointer;
}

#main-nav ul .main-dropdown-menu li a {
  padding: .5rem 1rem;
  font-size: 1rem;
  display: block;
}

#main-nav ul .main-dropdown-menu li:last-of-type a {
  padding-bottom: 0.75rem;
}

#main-nav svg {
  vertical-align: middle;
  margin-left: 0.75rem;
}

.report-link a {
  font-family: var(--sans-serif-font);
  color: #fff;
  font-size: 0.875rem;
  display: block;
  padding: 1rem 1rem;
  margin-right: 0.5rem;
}

.menu-trigger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.menu-trigger .menu-text {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: .9rem;
}

.menu-trigger .single-bar {
    display: block;
    background-color: #fff;
    width: 40px;
    height: 2px;
    margin: 6px auto;
}

.menu-trigger label {
	cursor: pointer;
}

.main-dropdown-menu.dropdown-columns {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -moz-column-fill: balance;
    column-fill: balance;
}


/* Mobile Menu */
@media only screen and (max-width: 62em) { 
   #main-nav.active .close-menu {
	position: fixed;
    top: 0;
    right: 0;
  }
  
  .close-menu i {
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
  }
  
  .menu-icon {
    display: none;
  }
 
  #main-nav {
    background: var(--primary-brand);
    width: 100%;
    min-height: 100vh;
    right: -100%;
	  /*
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);*/
    transition: all 0.4s ease-in-out;
    position: fixed;
    z-index: 1100;
    top: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100vh;
  }
  
   #main-nav.active {
     /*transform: translateX(0);*/
	   right: 0;
  }

  #main-nav ul {
    margin: 0;
    padding: 0 2rem;
  }
  
  .sidebar .bar {
    background-color: #000;
  }
  
  #main-nav > ul {
    width: 100%;
    margin: auto;
	display: flex;
    flex-direction: column;
	margin-top: 12%;
	padding-bottom: 5rem;
  }
 
}

@media only screen and (min-width: 62em) {
  .close-menu,
  .collapsed-menu {
    display: none;
  }
  
  .collapsed-menu .menu-icon,
  .collapsed-menu .menu-trigger {
    margin: 0 0.5rem;
	cursor: pointer;
  }
  
  .header-row .main-menu-wrapper {
    height: 100%;
	  background: var(--blue);
  }
  
  .collapsed-menu {
    display: none;
  }
  
  .sticky-active .collapsed-menu {
    background: var(--secondary-brand);
	display: flex;
    align-items: center;
	  z-index: 100;
  }
  
  .menu-column {
    padding: 0;
	
  }  
  
  #main-nav ul {
    padding: 0;
  }    
  
  #main-nav > ul > li a,
  #main-nav > ul > li span {
    font-size: 0.9rem;
  } 
  
  #main-nav > ul > li {
    border-top: 1px solid #234FAF;
	padding: 1.188rem 1.25rem; 
  }
  
  #main-nav > ul > li:hover,
  #main-nav > ul > li:focus {
    background: var(--secondary-brand);
  }
  
  #main-nav ul .main-dropdown .main-dropdown-menu {
    margin-top: 0;
    position: absolute;
    top: 0;
    width: max-content;
    max-height: fit-content;
    margin-top: 0;
    transition: all 0.4s ease-in-out;
	transform-origin: center left;
    transform: scaleX(0);
	opacity: 0;
  }
  
  #main-nav ul .main-dropdown.active .main-dropdown-menu {
	max-height: fit-content;
	transform: scaleX(1);
	transition: all 0.4s ease-in-out;
	opacity: 1;
  }
	
	#main-nav ul .main-dropdown-menu li a {
		padding: 0.65rem 1.5rem;
	}
	
	#main-nav ul .main-dropdown-menu li a:hover,
	#main-nav ul .main-dropdown-menu li a:focus {
		color: var(--yellow);
	}	
	
	.school #main-nav ul .main-dropdown-menu li a:hover,
	.school #main-nav ul .main-dropdown-menu li a:focus {
		color: var(--secondary-text);
		filter: brightness(1);
	}
		
  
  .sticky-active #main-nav {
	background: #0066CC;
	/*transform: translateX(-150%);*/
	transition: all 0.4s ease-in-out;
	z-index: 1100;
	top: 5.5rem;
	left: -300px;
	opacity: 0;
	position: fixed;
	width: fit-content;
  }

  .sticky-active #main-nav.active {
	/*transform: translateX(0%);*/
	opacity: 1;
	left: 0;
	
  }
  
  .sticky-active .collapsed-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    padding: 0.75em 0.5rem;
    margin-top: 0.5rem;
    transform: none;
  }  
}

@media only screen and (min-width: 75em) { 
  #main-nav > ul > li a,
  #main-nav > ul > li span {
    font-size: 1rem;
  }  

}

@media only screen and (min-width: 99em) { 
	#main-nav ul {

	}

	#main-nav > ul > li {
		padding: 1.188rem 2rem; 
	}  

	.report-link a {
		padding: 1.188rem 2rem;
	}

	#main-nav > ul > li a,
	#main-nav > ul > li span {
		font-size: 1.1875rem;
	}    

	#main-nav ul .main-dropdown-menu li a {
		font-size: 1rem;
	}

	#main-nav ul .main-dropdown-menu li:last-of-type a {
		padding-bottom: 1.5rem;
	}	
}

/* HEADER */
.logo {
  background: #1A4FAF;
}

.logo svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  padding: 1rem;
}

@media(min-width: 62em) {
  
  .logo svg {
	max-width: 320px;
    padding: 1rem;
  }
 
  #nav-app {
    position: absolute;
    margin-top: 0;
    margin-right: 1rem;
    top: 1rem;
	right: 1rem;
    z-index: 100;
    background-color: #efefef;
	padding: 0;
	position: absolute;
  } 
	
	#nav-app a {
	color: var(--blue);
	}

	#nav-app.sticky-active{
	border: 1px solid white;
	}

	#nav-app.sticky-active .hide {
	display: none
	}
}

@media(min-width: 62em) and (max-width: 75em) {
	#nav-app {
		transform: scale(0.9, 0.9);
		margin-right: 0;
	}
	
}


/*
HOME
*/

.banner-wrapper {
  position: relative;
  padding: 0;
}

.banner-wrapper > .row,
.banner_img {
  height: 100%;
}

.banner_img img {
  height: 100%;
  object-fit: cover;
}

.banner_info {
  padding-bottom: 10rem;
  color: #fff;
}

.banner_info h1 {
  color: #fff;
}

.banner-wrapper svg {
  position: absolute;
  left: 54%;
  top: 5%;
  opacity: 0.12;
}

.banner_text {
}

/* Carousel */
.swiper {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-slide {
  display: block;
  position: relative;
}

/* Navigation Arrows */
.swiper-button-next::after, .swiper-button-prev::after {
  content: "";
}

.swiper-button-next {
  top: 2rem;
  bottom: 1rem;
  right: 1rem;
  color: var(--dark-grey);
  background-color: rgb(234 234 234 / 80%);
  width: 40px;
}

.swiper-button-prev {
  top: 2rem;
  left: auto;
  bottom: 1rem;
  right: 3.8rem;
  color: var(--dark-grey);
  background-color: rgb(234 234 234 / 80%);
  width: 40px;
}

/* Pagination for carousel */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 1rem;
    left: 1.5rem;
    width: fit-content;
}

.swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
}

.swiper-pagination-bullet {
	background: var(--dark-grey);
	opacity: .4;
}

.swiper-pagination-bullet-active {
    background: var(--dark-grey);
	opacity: 1;
}

@media (min-width: 75em){
	.swiper-pagination-bullet {
		background: var(--light-grey);
	}

	.swiper-pagination-bullet-active {
		background: var(--light-grey);
	}
}

/* Slide Mobile Layout & Genernal Styling */
.banner_media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.banner_info h1 {
	margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
	line-height: 1;
}

.banner_info p {
  margin-bottom: 1rem;
}

.banner_info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1rem 1.5rem 2rem;
}

.banner_img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
}

.banner_video {
  position: relative;
  width: inherit;
  height: inherit; 
  overflow: hidden;
  padding-bottom: 56.25%;
}

.banner_video iframe,
.side-by-side .banner_video iframe,
.full-width .banner_video iframe {
  width: 150%;
  height: 100%;
  /*min-height: 80vh;
  min-width: 177.77vh;*/
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.peel-smile {
  width: 100px;
  position: absolute;
  left: 54%;
  top: 5%;
  z-index: 11;
}


/* Text Overlay Background Colour */
.swiper-slide.light-grey_bg,
.banner_info.light-grey_bg {
  background-color: var(--light-grey);
}

.swiper-slide.white-bg .banner_info, 
.swiper-slide.light-grey_bg .banner_info {
  color: var(--dark-grey)
}

.swiper-slide.white-bg h1, 
.swiper-slide.light-grey_bg h1 {
  color: var(--dark-grey)
}

.full-width .dark-grey_bg {
background-color: #3b3b3be6;
}

.full-width .light-grey_bg {
background-color: #f4f4f4e6;
}

@media all and (max-width: 62em){
	.swiper-slide {
		display: flex;
		flex-direction: column;
	}
	
	.banner_media.banner_img,
	.banner_media.banner_img img {
		position: static;
		aspect-ratio: 10/6;
		height: 60vw;
	}
	
	.banner_info {
		position: relative;
		height: 100%;
		padding: unset;
	}
	
	.school .banner_info {
		position: absolute;
		width: fit-content;
		height: fit-content;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.banner_info .text-wrapper {
		padding: .5rem 0 0;
	}
	
	.district .banner_info .text-wrapper {
		padding: 1rem 1.5rem 4rem;
	}
	
}

/*@media all and (max-width: 48em){
	.swiper-slide {
		min-height: 700px;
	}
}

@media all and (max-width: 35.5em){
	.swiper-slide {
		min-height: 620px;
	}
}*/

@media all and (min-width: 62em){
  .swiper-button-next {
    top: auto;
    bottom: 1rem;
    right: 2rem;
  }

  .swiper-button-prev {
    top: auto;
    left: auto;
    bottom: 1rem;
    right: 4.8rem;
  }
  
  .banner_video {
    position: relative;
    width: inherit;
    height: inherit;
    overflow: hidden;
    padding-bottom: 0;
  }
  
  .peel-smile {
    width: 200px;
  }
  
  /* Side-by-Side Layout */
  .swiper-slide, .side-by-side {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  .swiper-slide .banner_media,
  .side-by-side .banner_media {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
    position: relative;
  }

  .swiper-slide .banner_info,
  .side-by-side .banner_info {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
    position: static;
    padding: 0 2.5rem 5rem;
  }
  
  .swiper-slide .banner_info .text-wrapper,
  .side-by-side .banner_info .text-wrapper {
  	width: 90%;
  }
  
  .swiper-slide .banner_video iframe,
  .side-by-side .banner_video iframe {
    width: 100%;
    height: 100%;
	min-height: 100vh;
	min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
	
  /* Full Width Layout */
  .full-width {
  	display: block;
  }
  
  .full-width .dark-grey_bg {
    background-color: #3b3b3be6;
  }

  .full-width .light-grey_bg {
    background-color: #f4f4f4e6;
  }
  
  .full-width .banner_media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
	height: 100%;
  }
  
  .full-width .banner_video iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .full-width .banner_info {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    z-index: 4;
    transform: translateX(-50%);
    padding: 1rem 1rem 2rem;
    max-width: 100%;
  }
  
  .full-width .banner_info .text-wrapper {
  	width: 100%;
    margin: 0 auto;
  }
  
  .full-width .banner_info h1 {
    margin-bottom: 1rem;
  }

  .full-width .banner_info p {
    margin-bottom: 1.5rem;
  }
  
}

@media (min-width: 62em) and (max-width: 75em){
	.swiper-slide, .side-by-side {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start; 
		flex-direction: column;
	}
	
	.swiper-slide .banner_media, .side-by-side .banner_media {
		max-width: 100%;
	}
	
	.swiper-slide .banner_info, .side-by-side .banner_info {
		padding: 1.5rem;
		max-width: 100%;
	}
	
	.district .swiper-slide .banner_info, .side-by-side .banner_info {
		padding-bottom: 4rem;
	}
	
	.banner_media.banner_img img {
		aspect-ratio: 10/6;
	}
}

@media all and (min-width: 75em){
  .full-width .banner_info h1 {
    font-size: 2.25rem;
  }
  
	.district .swiper,
	.district .swiper-slide,
	.district .header-row {
		height: auto;
		min-height: 0;
	}
	.district .swiper-slide .banner_media,
	.district .swiper-slide.side-by-side .banner_media {
		flex-basis: 65%;
		max-width: 65%;
		position: relative;
		height: 100%;
	}
	
	
	.district .swiper-slide.full-width .banner_media {
		flex-basis: 100%;
		max-width:100%;
		position: relative;
		height: 100%;
	}
	
	
	.district .swiper-slide .banner_media img {
		height: 60%;
	}
	
	.district .side-by-side .banner_info {
		flex-basis: 35%;
		max-width: 35%;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding: 2rem;
	}
	
	  .banner_info h1 {
		font-size: 1.6rem;
	  }  

	  .banner_info p {
		  margin-bottom: 1rem;
		  font-size: 1rem;
	  } 
	
	#main-nav > ul > li {
		padding: .55rem 1rem;
	}
	
	#main-nav > ul > li a, 
	#main-nav > ul > li span {
		font-size: .9rem;
	}
	
	.logo svg {
		max-width: 240px;
		padding: .5rem 1rem;
	}
	
	#nav-app {
		/*transform: scale(0.88, 0.88);*/
		margin-right: 0;
	}
	
	.swiper-horizontal>.swiper-pagination-bullets, 
	.swiper-pagination-bullets.swiper-pagination-horizontal {
		width: fit-content;
		left: 1.5rem;
    	bottom: 1rem;
	}
	
	  .swiper-button-next {
		top: auto;
		bottom: 1rem;
		left: auto;
		right: 1rem;
	  }

	  .swiper-button-prev {
		top: auto;
		left: auto;
		right: 3.8rem;
		bottom: 1rem;
	  }
}

@media all and (min-width: 99em){
 
  .full-width .banner_info h1 {
    font-size: 2.5rem;
  }
	
	.banner_info h1 {
		margin-bottom: 1rem;
		font-size: 2.125rem;
	  }  
	
	.banner_info p {
		 margin-bottom: 2.75rem;
		  font-size: 1.125rem;
	  } 
	
	#main-nav > ul > li {
		padding: 1rem 1.5rem;
	}
	
	#main-nav > ul > li a, 
	#main-nav > ul > li span {
		font-size: 1rem;
	}
	
	.logo svg {
		max-width: 300px;
		padding: 1rem;
	}
	
	#nav-app {
		/*transform: scale(1);*/
		margin-right: 1rem;
	}
	
	#nav-app .search-bar #search-term {
		min-width: 0;
		max-width: 200px;
	}
	
	#nav-app .search-row #search-term {
		max-width: 170px;
	}
}

@media all and (min-width: 125em){
	#nav-app .search-bar #search-term {
		max-width: 350px;
		min-width: 250px;
	}
}

@media all and (min-width: 160em){
	#nav-app .search-bar #search-term {
		min-width: 300px;
	}
}


.quicklinks {
  list-style: none;
  margin: 1rem 0 1rem .5rem;
  padding: 0;
}

/* CTA Block */
.cta-block-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.cta-block-wrapper a {
  display: block;
  padding: 2rem 1rem;
  color: #3B3B3B;
  font-weight: 700;
}

.cta-column {
  margin-bottom: 2rem;
  min-height: 141.98px;
}

.cta-block {
	border-bottom: 2px solid transparent;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cta-block img {
  max-height: 40px;
  display: block;
  margin: 0 auto;
}

.cta-block span {
  margin-top: 1rem;
  display: block;
}

.cta-block img.cta-no-title {
  max-height: 75px;
}

@media(min-width: 62em) {
}

@media(min-width: 75em) {
  .cta-block-wrapper a {
    font-size: 1.25rem;
  }  
}

@media(min-width: 99em) {
  .cta-block-wrapper a {
    font-size: 1.625rem;
  }  
}

/* Home News */
.home-news_section {
	position: relative;
}

.news-cta_links {
	margin-bottom: 2rem;
}

.highlighted-news_row,
.news_row {
  position: relative;
}

.highlighted-news_row {
  margin-bottom: 2rem;
}

@media(min-width: 62em) {
	.highlighted-news_row {
	  margin-bottom: 3rem;
	}
}


@media(min-width: 75em) {
	.news-cta_links {
		position: absolute;
		top: 2rem;
		right: 0;
		margin-bottom: 0;
	}
	
	.--Peel-Board-Office-Site .news-cta_links {
		right: 1rem;
	}

    .highlighted-news_row h2,
    .news_row h2 {
        width: calc(100% - 175px);
    }
}

/* Quicklinks */
#quicklinks-select {
  display: block;
  margin-top: .5rem;
  width: 100%;
  font-weight: bold;
}

.quicklinks li {
  margin-top: .75rem;
}

/* Twitter */
.twitter-col {
	padding-left: 0;
}

.twitter-container {
	background: #fff;
	margin: 0 0 1rem;
	padding: 1rem;
	overflow-y: scroll;
}

@media(min-width: 48em) {
	.twitter-container {
		margin: 2rem 0;
	}
}

@media(min-width: 75em) {
	.twitter-container {
		height: 840px;
	}
}

@media(min-width: 99em) {
	.twitter-container {
		height: 450px;
	}
}

.follow-btn {
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: .75rem;
}

.follow-btn span,
.follow-btn svg {
    vertical-align: middle;
}

.follow-btn svg {
	margin-left: .75rem;
}


/* Horizontal CTA */
.horizontal-cta {
  margin: 1rem 0;
}

.horizontal-cta_bg {
	padding: 20%;
	width: 100%;
	background-size: cover!important;
	background-position: center!important;
}

.horizontal-cta_text {
  padding: 2rem 1.75rem;
}

.horizontal-cta_text h1 {
	margin-top: 0;
	font-size: 2rem;
}

.horizontal-cta_links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.horizontal-cta_links li:last-of-type {
  margin-top: 1rem;
}


@media(min-width: 48em) {   
	.horizontal-cta {
		margin: 2rem 1rem 2rem 0;
	}
	
	.horizontal-cta_bg {
		padding: 0;
	}
	
	.horizontal-cta_text {
		border-left: 2px solid transparent;
		background: #fff;
	}
}

@media(min-width: 62em) {
	.horizotnal-cta {
		margin: 0 -1rem;
	}
	 	
}

@media(min-width: 75em) {
	.horizontal-cta_text {
	  padding: 2rem 5rem 3rem 1.75rem;
	}
}


/* Stacked */
.horizotnal-cta_stacked {
	margin-bottom: 2rem;
}

.horizotnal-cta_stacked .horizontal-cta_bg {
	padding: 27rem 2rem 2rem;
    min-height: 390px;
	background-position: center!important;
    background-size: auto 100%!important;
}

.horizotnal-cta_stacked .horizontal-cta_text {
	background: #fff;
	padding: 2rem;
}

/* Alert Styles */

.banner-alert-wrapper {
	text-align: left;
    padding: 1rem 1rem 0;
}

.banner-alert-wrapper button {
	padding: 0.5rem 0;
	margin: 0 0.5rem 0 0;
}


/* Spotlight Styles */

/* Video */
.vimeo-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Upcoming Events and Recent News List */
.news-archive_header {
	position: relative;
	margin-top: 4rem;
}

.news-archive_header h1 {
	margin-bottom: 1rem;
}

.news-archive_header .btn {
	display: inline-block;
	margin-bottom: 2rem;
    position: absolute;
    top: 1rem;
    right: 0;	
}

.news-item-list {
	margin-bottom: 3rem;
}

.news-archive.news-item-list {
	display: none;
}

.news-item-list.international,
.news-item-list.spotlight {
	display: flex;
}

#news-archive-list {
	margin-bottom: 4rem;
}

@media all and (max-width: 62em){
	.news-archive_header {
		position: relative;
		margin-top: 0;
	}
	
	.news-item-list {
		padding: 1rem 0;
	}

	#news-archive-list {
		margin-bottom: 2rem;
	}
}

/* News Article, Event Article */
.news-article,
.event-article {
	margin: 3rem 0 2rem;
}

.news-article_template .sidebar,
.event-article_template .sidebar {
	padding: 0;
}

.news-article h1 {
	margin-bottom: 1rem;
}

.news-article .publish-date {
    margin-bottom: 2rem;
}

.event-article .publish-date {
    margin-bottom: 2rem;
	font-size: 1.25rem;
	color: var(--body-font-color);
	font-weight: bold;
}

@media(min-width: 62em) {
	.news-article,
	.event-article {
		margin: 5rem 0 8rem;
	}	
}

/* Upcoming Events and Recent News List */
.upcoming-events,
.recent-news {
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}

.upcoming-events li,
.recent-news li {
	transition: all .1s ease-in-out;
	padding: .5rem 0 .5rem 1.25rem;
	margin: 1rem 0;
	border-left: 2px solid;
}

.upcoming-events li:hover,
.upcoming-events li:focus,
.recent-news li:hover,
.recent-news li:focus {
  background-color: var(--light-grey);
}

.upcoming-events a,
.recent-news a {
  display: block;
  color: #000!important;
}

.upcoming-events a {
	display: flex;
	align-items: flex-start;
}

.upcoming-events img {
  margin: 1rem;
  width: 20px;
}

.upcoming-events .event-details {
  padding: .5rem;
}

.upcoming-events svg,
.upcoming-events .event-details {
  display: inline-block;
  vertical-align: middle;
}

.upcoming-events .format-date,
.recent-news .format-date {
  font-family: var(--sans-serif-font);
  text-transform: uppercase;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  display: block;  
  font-size: 80%;
  letter-spacing: 1px;
  opacity: .5;
}

.upcoming-events .event-name {
  display: block;
  font-size: 1.2rem;
}

.recent-news .news-title {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}


/* */
.news-item {
  display: block;
  margin-bottom: 2rem;
  padding: 0;
}

.news-item img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  width: 100%;
}

.news-item .img-wrapper,
.news-item .format-date,
.news-item h3 {
  transition: all .2s ease-in-out; 
}

.news-item .img-wrapper {
  position: relative; 
  line-height: 0;
}

.news-item .img-wrapper.no-cover {
  background-color: #C5E0F5;
  background-image: url(/images/peel-smile-white.svg);
  background-position: 85% 20%;
  background-repeat: no-repeat;
  background-size: 50%;
  aspect-ratio: 16/9;
  width: 100%;
}


/*@media(min-width: 62em) {
  .news-item img,
  .news-item .img-wrapper.no-cover {
    height: 175px;
  }  
}

@media(min-width: 75em) {
  .news-item img,
  .news-item .img-wrapper.no-cover {
    height: 150px;
  }  
}

@media(min-width: 99em) {
  .news-item img,
  .news-item .img-wrapper.no-cover {
    height: 220px;
  }  
}*/

.news-item .format-date,
.news-item .pinned-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 75%;
  font-size: .95rem;
  text-transform: uppercase;
  padding: .75rem;
  color: #fff;
  letter-spacing: 1px;
}

.news-item:hover .format-date,
.news-item:focus .format-date {
  opacity: 1;
}

.news-item h3 {
  font-family: var(--sans-serif-font);
  font-size: 1.375rem;
  line-height: 1.1;
  margin: 1rem 0;
  color: var(--body-font-color);
}

.news-item:hover h3,
.news-item:focus h3 {
  color: var(--link-font-color);
}

.news-item:hover .img-wrapper,
.news-item:focus .img-wrapper {
  filter: saturate(75%);
  -moz-filter: saturate(75%);
  -webkit-filter: saturate(75%);
}

@media(min-width: 48em) {
  .news-item h3 {
  	font-size: 1.175rem;
  }
}

@media(min-width: 62em) {
  .more-news-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
}

@media(min-width: 99em) {
  .news-item h3 {
  	font-size: 1.375rem;
  }
}

.news-item svg, .news-item .news-description {
  display: inline-flex;  
  margin-top: 15px;
}

.news-item svg {
  vertical-align: top;  
  margin-left: 15px;
}

.news-item .news-description {
  width: 70%;
  margin: 15px;  
  color: initial;
}

.social-share-container {
	margin-top: 3rem;
	padding: 1rem;
	border-left: 2px solid;
}

.social-share-container h4 {
	margin: 0 0 0.5rem 0.3rem;	
}

/* Dates, cover images */
.publish-date {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin-bottom: 10px;
  color: #989898;
}

.publish-date i {
  font-size: 20px;
  vertical-align: middle;
}

.cover-image img {
  max-width: 100%;
  max-height: 600px;
  margin-bottom: 20px;
}

/* CONTENT  */


@media(min-width: 62em) {
	.content-container {
		padding: 0;
	}
}

.featured-img-bg {
  position: relative;
  padding: 20% 0 5%;
  background-size: cover!important;
  background-position: center;
}

.featured-img-bg svg {
  position: absolute;
  right: 1%;
  top: 20%;
  width: 25%;
}

.featured-img-text.invisible {
  display: none;
}

.featured-img-text {
	text-align: center;
	color: #fff;
	padding: 1rem 2rem; 
	position: relative;
	top: 50%;
	transform: translateY(-20%);
}

.featured-img-text h1 {
  margin: 0;
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--body-font-color);
  z-index: 100;
  background: rgba(255,255,255,.9);
  font-size: 2rem;
}

@media only screen and (min-width: 48em) {
	.featured-img-text h1 {
		font-size: 3.348rem;
	}	
	
	.featured-img-text {
		top: 50%;
		transform: translateY(-50%);
	}	
}

@media only screen and (min-width: 62em) {
  .featured-img {
    position: relative;
    z-index: 100;
  }
	
  .featured-img-bg {
	  padding: 0;
  }
}

.main-content {
	padding: 2rem 0 3rem;
}

.main-content.bio {
	padding: 2rem 1rem 3rem;
}

@media(min-width: 62em) {
	.main-content {
		padding: 2rem 2rem 3rem;
	}	
}

@media(min-width: 75em) {
	.main-content {
		padding: 2rem 0rem 3rem;
	}	
}

.intro-content {
	padding: 2rem 3rem;
	background-color: var(--dark-grey);
	color: #fff;
	margin-bottom: 2rem;
}

.intro-content h1 {
  margin-top: 0;
}

.intro-content p {
  font-size: 120%;
  line-height: 1.5;
	margin-bottom: 0;
}

.content-row {
}

.content-row.border-top {
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 1px solid #e3e3e3;
}

.content-row.border-top-bottom {
  padding: 4rem 0;
  margin: 3rem 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-bottom {
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-top > div *:first-child,
.content-row.border-top-bottom > div *:first-child  {
  margin-top: 0;
}

.content-row.border-bottom > div *:last-child,
.content-row.border-top-bottom > div *:last-child {
  margin-bottom: 0;
}

.content-row img {
  max-height: 600px;
  display: block;
  margin: 1.5rem auto;
}

.content-row .btn {
  margin-bottom: 2rem;
  display: inline-block;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 1.5rem;
}

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

.documents-section {
    margin-top: 1.3125rem;
    margin-bottom: 5rem;
}

.documents-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.documents-section ul li {
	padding: 0.5rem 1rem;
	margin: 0;
}

.documents-section ul li:nth-child(2n) {
	background: #f5f5f5;
}

.content-box {
  line-height: 1.4rem;
  height: calc(100% - 2rem);
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: all .1s ease-in-out;
}

.content-box img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

@media(min-width: 99em) {
	.content-box img {
		max-height: 300px;
	}
}

.content-box-link {
  display: block;
  color: inherit!important;
}

.box-img {
  width: 100%;
  border-radius: 5px;
}

.content-box h3 {
	font-family: var(--sans-serif-font);
	margin-top: .3125rem;
	margin-bottom: 1.3125rem;
	font-size: 1.375rem;
	color: var(--blue);
}

.content-box p {
  margin: 1rem 2rem 2rem;
}

.useful-links-wrapper {
  margin-top: 1.3125rem;
  margin-bottom: 5rem;
}

.useful-link {
  line-height: 1;
  margin-top: 2rem;
  text-align: center;
}

.useful-link a {
	display: block;
	padding: 1rem 1rem 2rem; 
}

.useful-link i {
  display: block;
  font-size: 40px;
  margin-bottom: .5rem;
}

.useful-link span {
	font-size: 1.25rem;
	font-weight: bold;	
}

@media (min-width: 62em) and (max-width: 99em) {
	.useful-link span {
		font-size: 0.9rem;
	}
}

.useful-link i,
.useful-link span {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.useful-link a:hover i,
.useful-link a:focus i {
  opacity: 0.8;
}

.useful-link a:hover span,
.useful-link a:focus span {
  border-bottom: 1px solid;
}

.simple-links-wrapper h5 {
  margin-bottom: .75rem;
}

.simple-links-wrapper .simple-link {
  margin: 0 0 0.5rem 1rem;  
}

.simple-links-wrapper .pre-link {
  margin: 1rem 0 0.5rem 0;
}

/* Sidebar Styles */
.sidebar-wrapper {
  height: 100%;
}

.sidebar {
  position: relative;
  padding: 1rem;
}

.current-page {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.current-page span {
  margin-right: .5rem;
}

.current-page .material-icons {
  color: var(--secondary-brand);
}

.sidebar .seperator-arrow_right {
  display: none;
}

.sidebar .seperator-arrow_down {
  bottom: -11px;
  left: 4%;
  position: absolute;
  z-index: 100;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 12px solid transparent;
}

.sidebar .seperator-arrow_down.arrow_grey {
  border-top-color: var(--light-grey);
}


#nav-secondary {
  font-size: 80%;
  letter-spacing: 1px;
}

#nav-secondary ul {
  list-style: none;
  padding: 0;
}

#nav-secondary .secondary-nav-item {
  padding: 0;
  display: block;
}

#nav-secondary .secondary-nav-item.active {
  padding: 0;
}

#nav-secondary .secondary-nav-item.active span {
  font-weight: bold;
}

#nav-secondary .secondary-nav-item a::after,
#nav-secondary .secondary-nav-item.active::after {
  content: '';
  width: 0;
  height: 0;
  background: #eee;
  display: block;
  margin: 8px 0;
}

#nav-secondary .secondary-nav-item.active a::after {
	content: none;
}

#nav-secondary .secondary-nav-item.child a {
	padding: 5px 0 5px 10px;
}

#nav-secondary .secondary-nav-item.child a::after {
  width: 100%;
}

#nav-secondary li {
  padding: 5px 0;
}

#nav-secondary a {
  color: inherit;
  padding: 5px 0;
  font-weight: 500;
	position: relative;
	text-decoration: none;
	display: block;
}

#nav-secondary a:hover,
#nav-secondary a:focus {
  filter: brightness(120%);
}

.cookie {
  margin-bottom: 1rem;
	margin-left: .75rem;
  text-transform: uppercase;
}

.cookie a {
  vertical-align: middle;
	display: inline-block!important;
}

.cookie-menu {
	margin-left: 1rem;
	font-size: 1.5rem;
	vertical-align: middle;	
}

.secondary-dropdown {
	margin: 0;
	height: 0;
	opacity: 0;
	transition: height .2s ease-in-out;		
}

.secondary-dropdown.display-dropdown {
	height: auto;
	opacity: 1;
	transition: height .2s ease-in-out;	
}

/*.secondary-nav-item.active.parent {
    position: relative;
    padding-right: 1.5rem;
    cursor: pointer;	
}

.secondary-nav-item.active.parent span {
	font-size: 1.5rem;
	position: relative;
	top: 2px;
}

#nav-secondary .secondary-nav-item.active.parent::before {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    top: -6px;
}

li.secondary-nav-item.child {
	height: 0;
	opacity: 0;

  transition: height .2s ease-in-out;	
}

li.secondary-nav-item.child.display-child {
    height: auto;
    opacity: 1;
  transition: height .2s ease-in-out;	
}*/

@media(max-width: 62em) {
  .cookie a::before {
    font-family: "Material Icons";
    content: "\e5cb";
    vertical-align: middle;
  }
  
  .cookie {
    text-align: left;
    padding: 1rem;
    margin-bottom: 0;
  }
  
  #nav-secondary ul {
    padding: 0 2rem;
    margin-bottom: 0;
  }
  
  #nav-secondary ul.nav-parent {
    padding: 1rem 1rem 0;
  }
  
  .nav-secondary {
    transition: all 0.4s ease-in-out;
    top: 54px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 10;
    background-color: var(--light-grey);
    border-top: 1px solid white;
	transform-origin: left top;
	transform: scaleY(0);
	padding-bottom: .75rem;
  }

  .nav-secondary.active {
	transform: scaleY(1);
  }
  
}


@media only screen and (min-width: 62em) {
  .nav-secondary {
    display: block;
  }
	
  .sidebar {
    padding: 3rem 1rem;
  }		
  
  .sidebar .seperator-arrow_down {
    display: none;
  }
  
  .sidebar .seperator-arrow_right {
    display: block;
    position: absolute;
    right: -15px;
    top: 55px;
  }
  
  .current-page {
    display: none;
  }
  
  .cookie a::before {
    font-family: "Material Icons";
    content: "\e5cb";
    vertical-align: middle;
    position: absolute;
    left: -16px;
  }
		
}

@media(min-width: 75em) {
  #nav-secondary .secondary-nav-item a::after,
  #nav-secondary .secondary-nav-item.active::after {
    width: 10%;
    height: 2px;
    background: #fff;
    display: block;
    margin: 8px 0;
	transition: all .3s linear;
  }
	
	#nav-secondary .secondary-nav-item:nth-of-type(1n) a:hover::after {
		background: var(--yellow);
		transition: all .3s linear;
	}	
	
	#nav-secondary .secondary-nav-item:nth-of-type(2n) a:hover::after {
		background: var(--green);
		transition: all .3s linear;
	}
	
	#nav-secondary .secondary-nav-item:nth-of-type(3n) a:hover::after {
		background: var(--orange);
		transition: all .3s linear;
	}
	
	#nav-secondary .secondary-nav-item:nth-of-type(4n) a:hover::after {
		background: var(--pink);
		transition: all .3s linear;
	}	
	
	#nav-secondary .secondary-nav-item.active::after {
		width: 20%;
		background: var(--blue);
	}
  
  #nav-secondary .secondary-nav-item.child a::after {
    width: 10%;
  }  
	
  .sticky-sidebar {
    position: sticky;
    top: 5.5rem;
  }
  
  .sidebar {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
  }		
}

@media only screen and (min-width: 99em) {
	

}

/* Contact Styles */
#school-contact-list,
#school-contact-list-home {
    display: flex;
    flex-wrap: wrap;
}

#school-contact-list .contact-category, #pvss-school-contact-list .contact-category {
    margin-right: 3rem;
    margin-bottom: 2rem;
}

#school-contact-list .contact-category p, #pvss-school-contact-list .contact-category p {
	margin-bottom: 0;
}

#school-contact-list-home .contact-category {
    margin-right: 3rem;

}

#school-contact-list-home .contact-category:last-of-type {
    margin-bottom: 1rem;		
}

/* #school-contact-list .contact-category:last-of-type {
	margin-right: 0;
} */

#school-contact-list h5, #pvss-school-contact-list h5 {
	font-size: 1.2rem;
	margin-bottom: .75rem;
}

#school-contact-list, #pvss-school-contact-list {
	display: inline-flex;
	/* justify-content: space-between; */
}

#school-contact-list-home h5 {
	font-size: 1.2rem;
	margin-bottom: .25rem;	
}

#school-contact-list-home .contact-category a,
.school-info-col .icon-text-container a {
	color: inherit;
}

#school-contact-list-home .contact-category p {
	margin-bottom: 0;
}

.trustees-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 3rem;
}

.trustees-row a {
    display: block;
}

.trustee-type {
    font-size: 1rem;
    margin-bottom: 5px;
}

.trustee-header-link {
    text-decoration: underline;
    margin-bottom: 5px;
}

@media(min-width: 75em) {
	/* #school-contact-list, #pvss-school-contact-list {
		justify-content: space-between;
	} */
}


/* Table Styles */
.table {
  margin: 0 0 2rem;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

@media (max-width: 48em){
	.table {
		overflow-x: scroll;
	}
}

.profiles-wrapper .table {
  color: #2b3f58;
}

.table table {
  border-radius: 5px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  background-color: white;
  margin-bottom: 0;
}

.table table td, 
.table table th {
  padding: 10px 15px;
}

.table table td {
  border-right: 1px solid #F7F6F4;
}

.table table td:last-of-type {
  border-right: 0;
}

.--Board-By-Laws-and-Policies .table table td:last-of-type {
	width: 150px;	
}

.table table thead th {
  color: #ffffff;
  background: #4FC3A1;
}


.table table thead th:nth-child(odd) {
  color: #ffffff;
  background: #324960;
}

.table table tr:nth-child(even) {
  background: #f5f5f5;
}


/* 
FOOTER
*/
.footer-logo {
  width: 290px;
  margin-top: 5.4rem;
  margin-bottom: 2rem;
}

.footer-contact {
  font-family: var(--sans-serif-font);
}

.footer-contact address {
  font-style: normal;
  margin: 0 0 1rem;
}

.main-footer {
	margin-top: 2rem;
}

.main-footer > .row {
  margin-left: -2rem;
  margin-right: -2rem;
}

.main-footer ul li {
  margin-bottom: 1rem;
}

.main-footer a {
    color: var(--dark-grey);
}

.main-footer .footer-social {
  margin-top: 3rem;
}

.footer-social li,
.small-links li {
  display: inline-block;
  margin-right: .75rem;
}

.main-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-footer .small-links {
  font-size: smaller;
  font-family: var(--sans-serif-font);
  margin: 7.5rem 0 2rem;
}

.main-footer ul li a:hover,
.main-footer ul li a:focus {
  color: var(--blue);
}

.external-website-wrapper {
  margin: 5rem auto 2rem;
  text-align: center;
  width: 90%;
}

#footer-trustees {
    margin: 1rem 0;
}

#footer-trustees .footer-trustees-title {
    margin-bottom: 0.5rem;
    font-weight: var(--font-bold);
}

#footer-trustees .trustee-name {
    display: block;
	color:var(--blue);
}

#footer-trustees .secondary-trustees {
    margin-top: .5rem;
}

@media(min-width: 62em) {
  .main-footer.extra-margin-top {
    margin-top: 10rem;
  }
}

@media(min-width: 75em) {
  .external-website-wrapper {
    max-width: 600px;
  }
}

.external-website {
  background: #fff;
  margin-bottom: 1rem;
  padding: 1.25rem 2rem;
}

.external-website a {
  color: inherit;
}

/* Content Tabs */
.ui-widget.ui-widget-content,.ui-widget-content  {
    border: none; 
	background: transparent;
	font-family: var(--sans-serif-font);
	margin: 0;
}

/* Tab Header */
.ui-widget-header {
	border: none;
	background: transparent;
}

.ui-tabs .ui-tabs-nav {
    padding: 0;
	display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
	border-bottom: 2px solid var(--blue);
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav li {
    font-weight: 700;
	border: none;
    background: var(--light-grey);
	transition: all .2s ease-in-out;
	margin: 0 .5rem 0 0;
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav li:hover {
	filter: brightness(1.02);
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0;
	padding-bottom: 0;
	background: var(--blue);
	border: none;
}

/* Tab Content */
.ui-tabs .ui-tabs-panel {
    padding: 1rem 0.25rem;
	margin-top: 0;
}

.ui-widget-content a {
    color: var(--blue);
}

.tab-item-content {
	padding: 1rem 0;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    white-space: pre-wrap;
}

/* Job Board Template */
.form-title {
	font-weight: 700;
	margin: .5rem 0;
}
form.ae-login input {
	border: 1px solid #e0e0e0;
	margin-right: 9px;
	padding: 9px;
}
form.ae-login input:focus {
	filter: brightness(1.02);
}
form.ae-login input[type="submit"] {
	cursor: pointer;
	border: none;
}
form.ae-login input[type="submit"]:hover {
	filter: brightness(1.1);
}
div.ae-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	max-width: 416px;
	padding: 4px 0 18px;
}

form.ce-login input {
	border: 1px solid #e0e0e0;
	margin-right: 9px;
	padding: 9px;
}
form.ce-login input:focus {
	filter: brightness(1.1);
}
form.ce-login input[type="submit"] {
	cursor: pointer;
	border: none;
}
form.ce-login input[type="submit"]:hover {
	filter: brightness(1.1);
}
div.ce-info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	max-width: 416px;
	padding: 4px 0 18px;
}

/* Search Results Page */
.search-container {
	padding: 0;
    margin: 0;
}
.search-section .container.pad-side {
	width: 100%;
}

.search-result {
	margin-bottom: 1rem;
}

.search-result a {
	display: flex;
	column-gap: .5rem;
	border: 1px dashed #cecece;
    padding: 1rem;
}

.search-result strong {
	background: #f6cc0b70;
}

.search-title {
	font-weight: 700;
	font-size: 1.5rem;
}

.search-description {
	color: var(--body-font-color);
}

@media all and (min-width: 62em){
	.search-container {
		margin-right: 0;
	}
	
	.search-section .container.pad-side {
		width: 90%;
		margin: 1rem auto;
	}
}

/* Subscribe Button */
.news-cta_links {
  display: flex;
  align-items: center;
}

.news-cta_links .btn {
	padding-right: 0;
}

.btn.subscribe::before,
.btn.subscribe::after {
  all: unset;
}

.btn.subscribe::before {
  display: block;
  content: ' ';
  background-image: url('/images/Icon-material-notifications.svg');
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  margin-right: .5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Collapsible box - rich text editor */
.collapsible-box {
	width: 100%;
}

.collapsible-box .material-icons {
	color: var(--blue);
}

.collapsible-box-description { 
	display: none;
	margin: 1rem 1rem 0;
}

.collapsible-box-title {
	color: var(--blue);
    background-color: #e0eaf5;
    padding: 0.5rem 2rem 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.3rem;
    position: relative;
}

.collapsible-box-title i {
	right: 0.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.collapsible-bottom-icon {
	cursor: pointer;
}

/* Collapsible boxes - lexical RTE */
.editor details summary {
    background-color: #e0eaf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
	margin: 0;
	cursor: pointer;
    transition: all .3s ease-in-out;
}

.editor details summary i {
    color: var(--blue);
    margin-right: .5rem;
}

.editor details summary h3 {
    color: var(--blue);
	font-size: 1.3rem;
}

.editor details {
    margin-bottom: 1rem;
    transition: all .3s ease-in-out;
}

.editor div[data-lexical-collapsible-content]{
    padding: 1rem;
}

/* School Directory */
#school-directory .collapsible-box-description {
    margin: 1rem 0 2rem;	
}

#school-directory .collapsible-box-description div {
	column-gap: 30px;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
}

#school-directory .collapsible-box-description div a {
    margin-bottom: 0.5rem;
    display: inline-block;	
}

@media(min-width: 48em) {
	#school-directory .collapsible-box-description div {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
	}	
}



/* Form fields */
input {
	flex-grow: 1;
    display: inline-block;
    min-width: 110px;
    margin: 5px;
    padding: 0.3em 0.5em;
    padding: var(--tag-pad, 0.3em 0.5em);
    line-height: inherit;
    position: relative;
    white-space: pre-wrap;
    color: inherit;
    color: var(--input-color, inherit);
    box-sizing: inherit;
}

.year input {
	min-width: unset;
}

[leaflet] .leaflet-control-layers .school-type input[type=checkbox] {
    min-width: unset;
}

/* Modals*/
/* General Styling */
.main-content-wrapper {
	margin: auto;
}

.modal-trigger {
	cursor: pointer;
	margin: 1rem 0;
}

.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    margin: 0!important;
}

.modal-info {
	background-color: white;
	margin: 0 auto;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 1rem;
	overflow-y: scroll;
	max-height: 90vh;
}

.modal-wrapper .close-icon {
    font-size: 1.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

#calendar {
	width: 100%;
}

.calendar-template {
	margin-top: 2.5rem;
	margin-bottom: 0;
}

.calendar-filters-wrapper {
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 2rem;	
}

@media all and (max-width: 1199px){
	.calendar-container {
		padding: 1rem;
	}
	
	.calendar-filters-wrapper {
		display: none;
	}
	
	.calendar-top {
		margin-left: 0;
		margin-right: 0;
	}
}

.filter-checkbox-wrapper {
	display: inline-block;
	margin-right: 1rem;
	margin-bottom: .5rem;
}

.filter-checkbox-wrapper input,
.filter-checkbox-wrapper label {
	vertical-align: middle;
    min-width: auto;
}

/* Error Page */
.error-page-container #search-form {
	width: auto;
	display: inline-flex;
}

.error-page-container #search-form .search-box {
	margin: 0;
    padding: 0.35rem 0.75rem;
}

.error-page-container h3 {
	font-size: 2rem;
}

.error-page-container p {
	font-size: 1.5rem;
}

.error-page-container #search-form #search-button {
    margin: 0 auto 0 0.5rem;
}

@media(min-width: 62em) {
	.error-page-container #search-form .search-box {
		width: 410px;
	}	
}

/* Documents */
.cm-documents-directory a {
    background-color: var(--light-grey);
    border-radius: 0;
    box-shadow: none;
    border-left: 2px solid var(--orange);	
}

.cm-documents-directory a span.folder-title {
    font-weight: bold;
}

.cm-documents-directory a {
    align-items: initial;
}

.cm-documents-directory .folder span.material-icons {
    color: var(--blue);
}

.cm-documents-directory .file span.material-icons {
    display: none;
}

/* Team Bio Modals */
.bio-intro h2 {
	color: var(--dark-font-color);
}

.bio-item-text {
	margin: 0 auto;
	display: block;
}

.bio-item-text h3, .bio-modal h3 {
	color: var(--dark-font-color);
}

.bio-item img {
	width: 90%;
	max-width: 200px;
	display: block;
	transition: all .4s ease-in-out;
	height: auto;
    object-fit: cover;
}

.bio-item img:hover {
	filter: grayscale(60%);
}

.bio-modal img {
	width: 80%;
	max-width: 200px;
	display: block;
	margin: 0 1rem;
	min-height: 300px;
    object-fit: cover;
}

.bio-item-text .subtitle,
.bio-modal-content .subtitle {
	margin: .5rem 0 1rem;
	font-weight: var(--font-bold);
	font-size: 1.05rem;
}

.bio-item-text .subtitle {
	margin: .5rem 0;
}

.bio-modal-content .bio {
	margin: 1rem 0 2rem;
	
}

.add-row {
    margin-bottom: 1rem;
}

.add-row {
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: space-between;
	background-color: #E0EAF5;
	padding: .5rem 1rem;
}

.add-row p {
	margin: 0;
	font-weight: var(--font-bold);
}

.add-icon {
	color: #2D66CC;
}

.add-info {
    /* transition: all .2s ease-in-out; */
    padding: 0 1rem 1rem;
    /* display: block;
    transform: scaleY(0);
	transform-origin: top left;
	height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0; */
    display: none;
}

/* .add-info.active {
	transform: scaleY(1);
	opacity: 1;
	height: auto;
} */

@media all and (min-width: 62em){
	.bio-item img {
		width: 80%;
        max-width: 400px;
		height: auto;
	}
	
	.bio-modal-content {
		width: 60%;
		padding: 2rem;
		overflow-y: auto;
	}
	
	.bio-modal img {
		width: 100%;
		max-width: unset;
		margin: 1rem 0;
		min-height: 350px;
	}

}

/* School Hours Modal */
.school .table {
	color: var(--dark-grey);
}

.hours-modal-content {
	padding: 0;
	overflow-y: auto;
}

.hours-title {
	font-weight: var(--font-bold);
	font-size: 1.5rem;
	padding: 1rem;
    background: var(--primary-brand);
    color: var(--primary-text);
}

.hours-section-title {
	font-weight: var(--font-bold);
	font-size: 1.2rem;
	margin-bottom: .5rem;
	display: block;
	color: var(--dark-grey);
}

.hours-text {
	padding: 1rem;
}

.hours-text .main-content {
	padding: 0;
	margin: 0;
}

.hours-text .table {
	margin: 0;
}

.hours-text .change-font-size,
.school-hours .change-font-size {
	display: none;
}

@media all and (min-width: 62em){
	.hours-modal-content {
		width: fit-content;
	}
}

/* Google Translate Modal */
.translate-modal-wrapper {
	margin-left: 0!important;
}
.translate-modal-info {
	padding: 0;
	width: 90%;
	overflow: auto;
	white-space: pre-wrap;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.translate-text {
	padding: 0 1rem;
}

.translate-title {
	margin: 0;
	padding: 1rem;
	background: var(--primary-brand);
	color: #fff;
}

.translate-title span {
	max-width: calc(100% - 24px);
    display: block;
}

.translate-modal-info p {
	margin: -1.5rem 0 0;
}

#google_translate_element {
	margin-top: -2.5rem;
}


.translate-modal-info .close-icon {
	color: #fff;
}

.school .translate-title,
.school .translate-modal-info .close-icon {
	color: var(--primary-text);
}

@media all and (min-width: 62em){
	.translate-modal-info {
		width: 50%;
	}
}


/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: .5s;
  animation-name: fade;
  animation-duration: .5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


pstgi-school-locator .app-header {
   align-items: center;
}

/* Microsites */
#nav-app.microsite {
	background: var(--secondary-brand);
	width: calc(100% + 4rem);
    margin-left: -2rem;
}

.microsite-intro-wrapper {
	background: var(--blue);
	width: calc(100% + 4rem);
    margin-left: -2rem;
}

.microsite-logo {
	max-width: 260px;
	padding: 1rem;
	margin: auto;
    display: block;
}

.microsite-title {
	text-align: center;
	color: #fff;
	display: flex;
    align-items: center;
    justify-content: center;
	padding-bottom: .75rem;
}

.microsite-title h1 {
	margin: 0;
}

.microsite-intro-text {
	color: #fff;
	font-size: 1.25rem;
    width: 80%;
    display: block;
    margin: auto;
    text-align: center;
	padding: .5rem 0 1rem;
}

.microsite-content {
	width: 100%;
	margin: 2rem auto;
}

.microsite-intro img {
	width: 90%;
	margin: 1rem auto 0;
	display: block;
	max-height: 500px;
    object-fit: cover;
}

.padding-bottom {
	height: 3rem;
}

.microsite-nav-secondary {
	display: none;
    flex-direction: column;
    justify-content: center;
	position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--blue);
	color: #fff;
	padding-left: 10%;
	font-size: 1.2rem;
}

.microsite-nav-secondary.active {
	display: flex;
}

.microsite-nav-secondary ul {
	padding-left: 1.5rem;
}

.microsite-nav-secondary li {
	list-style: none;
	padding: 1rem 0;
}

.microsite-nav-secondary .secondary-nav-item.active {
	font-weight: var(--font-bold);
}

.microsite-nav-secondary a {
	color: #fff;
	position: relative;
}

.microsite-nav-secondary .cookie{
    margin: 0;
}

.microsite-nav-secondary .cookie a::before {
    left: -1.5rem;
	position: absolute;
  }

.microsite-menu {
	font-size: 2.5rem;
	cursor: pointer;
	margin-left: 1rem;
}
.microsite-close {
	position: absolute;
    right: 1rem;
    top: 1rem;
	font-size: 2rem;
	cursor: pointer;
}

.microsite-content .sidebar-wrapper {
	display: none;
}


@media all and (min-width: 62rem){
	#nav-app.microsite {
	  background: var(--light-grey);
	  width: unset;
    }
	
	.microsite-logo {
		margin: auto auto auto 0;
	}
	
	.microsite-content {
		width: 100%;
	}
	
	.microsite-intro img {
		width: 80%;
	}
	
	.microsite-menu,
	.microsite-nav-secondary.active {
		display: none;
	}
	
	.microsite-content .sidebar-wrapper {
		display: block;
		margin-left: -3rem;
	}
	
	.microsite-content-col {
		margin-left: 2rem;
		max-width: 75%;
	}
	
	.microsite-content-col.full {
		max-width: 80%;
		margin: 0 auto;
	}
	
}

/* =============== School Gloabal ==============*/
.bold-text {
	font-weight: var(--font-bold);
}

.icon-text-container {
	display: flex;
	align-items: center;
	margin-bottom: .5rem;
}

.icon-text-container .modal-trigger,
#school-SchoolEmail {
	text-decoration: underline;
	cursor: pointer;
}

.icon-text-container p {
	margin: 0 0 0 0.25rem;
	font-size: 1rem;
	font-family: var(--sans-serif-font)
}

.school .btn-primary {
	background: var(--primary-brand);
	color: var(--primary-text);
}

.school .btn-primary::before {
    background-color: var(--yellow);
}

.school .btn-primary::after {
   border-color: var(--yellow);
}

/* Navigation */
.school .logo {
    background: #FFF;
}

.school .logo-wrapper {
    display: flex;
	align-items: center;
	padding: .75rem 0;
	max-width: calc(100% - 50px);
}

.school .logo-wrapper img {
	margin: 0 .5rem;
	max-width: 70px;
    object-fit: cover;
}

.school .logo-wrapper .no-sitename {
	max-width: 120px;
}

.school .logo-wrapper span {
    margin: .5rem;
    font-size: 1.1rem;
    font-weight: var(--font-bold);
	color: var(--dark-grey);
}

.school .menu-trigger {
	fill: var(--dark-grey);
}

.school .main-menu-wrapper,
.school #main-nav {
	background: var(--menu-bg);
}

.school #main-nav > ul > li, 
.school #main-nav > ul > li a  {
	color: var(--dark-grey);
	font-weight: var(--font-bold);
}

.school #main-nav .main-dropdown, 
.school #main-nav .main-dropdown a  {
	color: var(--dark-grey);
}

.school #main-nav .main-dropdown-menu a {
	color: var(--secondary-text);
	filter: brightness(0.9);
}

.school .close-menu i {
	color: var(--dark-grey);
}

.school .menu-trigger .menu-text {
	color: var(--dark-grey);
}

.school .menu-trigger .single-bar {
    background-color: var(--dark-grey);
}

@media only screen and (min-width: 62em){
	.school .logo {
		border-right: 1px solid var(--menu-bg);
	}	
	
	.icon-text-container {
		margin-bottom: 1rem;
	}

	.icon-text-container p {
		margin: 0 0 0 0.5rem;
		font-size: 1.2rem;
	}
	.school .logo-wrapper {
		max-width: unset;
	}
	
	.school .logo-wrapper .no-sitename {
		max-width: 180px;
		margin: 0 auto;
	}

	.school #nav-app ul li > a {
		color: var(--dark-grey);
	}
	
	.school #main-nav > ul > li {
		border-top: 1px solid #FFF;
	}
	
	.school #main-nav > ul > li {
		padding: 1rem 4.5rem 1rem 1.5rem;
	}	
	
	.school #main-nav > ul > li:first-of-type {
		border-top: 0;
	}
	
	.school .header-row .main-menu-wrapper {
		background: #EDEDED;
	}
	
	.school #main-nav li:hover,
	.school #main-nav li:hover a {
		color: var(--secondary-text);
	}
	
	.school .menu-trigger .menu-text {
		color: var(--secondary-text);
	}

	.school .menu-trigger .single-bar {
		background-color: var(--secondary-text);
	}
	
	.school .sticky-active #main-nav {
		background: var(--menu-bg);
	}
}

/* Banner right col */
.school-info-col {
    padding: .5rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
	background: var(--secondary-brand);
	color: var(--secondary-text);
	position: relative;
}

.school-info-col.smaller h1,
.school-info-col h1 {
    font-size: 1.5rem;
	margin-bottom: .5rem;
}

.btn-primary-school {
	width: fit-content;
	background: #fff;
}

.school .peel-smile {
	width: 28px;
	top: unset;
	left: unset;
	right: 1rem;
	bottom: 1rem;
}

/* Banner left col */
.school .full-width .banner_info {
	padding: .75rem 1.5rem 1rem;
}
.school .full-width .light-grey_bg p {
	color: var(--dark-grey);
	font-size: .85rem;
}

.school .full-width .light-grey_bg h1 {
	color: var(--dark-grey);
	font-size: 1.5rem;
}

.school .swiper, 
.school .swiper-slide {
	min-height: unset;
	height: 280px;
}

.school .banner_img img {
	height: 280px;
}


@media (min-width: 62em){
	.school-info-col {
		padding: 4rem 2.5rem 3rem;
	}
	
	.school .full-width .banner_info {
		text-align: center;
		position: absolute;
		bottom: 1rem;
		left: 0;
		right: 0;
		z-index: 4;
		transform: unset;
		padding: 1.5rem 1rem;
		max-width: 100%;
		width: 65%;
		margin: auto;
	}
	
	.school-info-col h1 {
		font-size: 3rem;
	    line-height: 1;
		margin-bottom: 1.265rem;
	}
	
	.school-info-col.smaller h1 {
		font-size: 2rem;
		margin-bottom: 1.4rem;
	}
	
	.school .full-width .light-grey_bg p {
		font-size: 1.125rem;
	}

	.school .full-width .light-grey_bg h1 {
		font-size: 2rem;
	}
	
	.school .peel-smile {
		right: 2rem;
		width: 36px;
	}
	
	.school .swiper, .school .swiper-slide {
		height: auto;
	}
	
	.school .banner_img img {
		height: 100%;
	}

    .school .menu-column {
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .school .swiper {
		flex-basis: 45.333%;
		max-width: 45.333%;
	}

    .school .school-info-col {
        flex-basis: 38%;
        max-width: 38%;
    }

}

@media (min-width: 99em){
	.school-info-col {
		padding: 0 2.5rem 5rem;
	}	
	
	#school-contact-list-home {
		margin-bottom: 1rem;
	}
}

/* CTA Blocks */
.school .cta-block {
	background: var(--primary-brand);
}

.school .cta-block-wrapper a {
    color: var(--primary-text);
}

.school .cta-block:hover {
	filter: brightness(1.1);
}

.school .cta-block svg,
.school .cta-block i {
	fill: var(--primary-text);
	font-size: 40px;
	width: 40px;
}

.school .cta-block span {
    margin-top: .5rem;
}

/* Home - News */
.school .news-item {
    margin-bottom: 1rem;
}

.school .news-cta_links {
    top: .5rem;
}

.school .quicklinks-wrapper {
	margin-bottom: 2rem;
}

.quicklinks-wrapper h3 {
	color: var(--blue);
}

/* School Home - Bottom CTA */
.school-horizontal-cta {
    position: relative;
	margin-left: -2rem;
    margin-right: -2rem;
	z-index: 1;
}

.school-horizontal-cta img {
	height: 500px;
	object-fit: cover;
	width: 100%;
}

.school-horizontal-cta .horizontal-cta_text {
    position: absolute;
	z-index: 100;
	top: 50%;
    left: 0;
	right: 0;
    transform: translateY(-50%);
	background: var(--primary-brand-a);
	color: var(--primary-text);
	width: 100%;
	padding: 2.5rem;
}

.school-horizontal-cta .horizontal-cta_text h2 {
    font-size: 2rem;
	margin-top: 0;
}

.school-horizontal-cta .horizontal-cta_text p {
    font-size: 1.375rem;
}

.school-horizontal-cta .btn {
    color: var(--primary-text);
}

.school-horizontal-cta .btn-primary-school {
    color: var(--blue);
}

@media all and (min-width: 62em){
	.school-horizontal-cta .horizontal-cta_text {
		left: 3rem;
		width: 80%;
		max-width: 600px;
	}
	
	.school-horizontal-cta img {
		object-position: 50% 45%;
	}
	
	.school-horizontal-cta .horizontal-cta_text h2 {
		font-size: 2.375rem;
	}
}


/* School Footer */
.main-footer.school-footer .footer-logo {
	margin: 2rem 0 1rem;
	width: 120px;
}

.school-footer .footer-links {
	margin-top: 1.6rem;
}

.school-footer h3 {
	margin-bottom: 1rem;
	color: var(--blue);
}

.school-footer a:hover,
.school-footer ul li a:hover {
    color: var(--primary-brand);
}

.school-footer .small-links {
	margin: 3rem 0 2rem;
}

.school-footer .footer-social {
	margin-top: 2rem;
}

.school-footer .footer-social svg path {
	fill: var(--primary-brand);
}

.school-footer .external-website-wrapper {
    margin: 2rem auto;
	text-align: left;
}

.school-footer .external-website-title {
	margin: 1rem 0;
}

.school-footer .external-website-title img {
	width: 80%;
	margin-bottom: 1rem;
}

@media all and (min-width: 48em){
	.main-footer.school-footer .footer-logo {
		margin: 1.3125rem 0 1rem;
		width: 120px;
	}
	
	.school-footer .footer-info {
		margin-top: 2rem;
	}
	
	.school-footer .external-website-wrapper {
		margin: 5rem auto 0;
	}
	
	.school-footer .external-website-title {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 1rem 0 2rem;
		row-gap: .5rem;
		flex-wrap: wrap;
	}
	
	.school-footer .external-website-title img {
		max-width: 230px;
		margin-bottom: 0;
	}
}

/* Lightbox Image Text Template */
.lb-img img {
	max-width: 350px;
	width: 100%;
}

.lb-img {
	position: relative;
	display: block;
    max-width: 350px;
	margin-bottom: 1rem;
}

.lb-item {
	border-bottom: 2px solid var(--light-grey);
	margin: 0 0 2rem;
}


.lb-item h2 {
	color: var(--body-font-color);
	font-size: 1.8rem;
	margin: 1rem 0 .5rem;
}

.lb-text {
	margin-bottom: 1rem;
}

.zoom-in {
	position: absolute;
    top: .25rem;
    left: 1.25rem;
    color: #fff;
    background: rgba(0, 0, 0, .6);
	padding: .25rem;
    border-radius: 5px;
}

@media all and (min-width: 62em){
	.lb-img img {
		max-width: 100%;
	}
	
	.lb-item h2 {
		font-size: 2.5rem;
		margin: 1rem 0;
	}
	
	.zoom-in {
		font-size: 2rem;
	}
}

/* Server render templates e.g. search results, permission required */
.container.pad-side >.row > h1 {
	width: 100%;
}

.no-results-container {
	margin-left: -2rem;
}
.no-results-container h1 {
	width: 100%;
}

.no-results-container section {
	margin-top: 3rem;
}

.no-results-container.permission .col.s11 p.search-description {
	margin-left: 1rem;
}

#cm-documents-view {
	max-width: 100%;
	margin-top: 2rem;
}

@media (min-width: 62em){
	.search-container, .no-results-container {
		margin-right: 0;
	}
	
	.container.pad-side >.row > h1 {
		margin-top: 4rem;
	}
}

/* custom default.css */
figcaption {
	font-size: 0.8rem;
	margin-top: 0px;
}

/* New Policy Page */
.table.policy {
	box-shadow: none;
}

.table.policy table thead th {
    background: #224194;
	border-left: 1px solid white;
	text-align: left;
	white-space: nowrap;
}

.policy-row.hide {
	display: none;
}

.filter-wrapper {
	background: var(--light-grey);
	margin-bottom: 1.5rem;
	padding: .5rem;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 1rem;
	row-gap: 1rem;
}

.filter-wrapper input[type=search] {
    border: none;
    margin: 0;
	width: 100%;
}

.filter-wrapper select {
	background: var(--secondary-action);
    color: white;
	background-image: linear-gradient( 45deg, transparent 50%, white 50%), linear-gradient( 135deg, white 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
	max-width: 200px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 0;
	padding: 0.75rem 2.5rem 0.75rem 1rem;
}

.filter-wrapper select:focus {
    outline:none;
}

.filter-col {
	width: 100%;
}

#category-dropdown {
	margin-bottom: .5rem;
	margin-right: 0.5rem;
}

#reset-table {
	display: block;
	background: var(--medium-grey);
	width: fit-content;
    margin-left: auto;
    margin-top: 1rem;
}

#filter-table .sort {
	display: flex;
    flex-direction: column;
    justify-content: center;
	cursor: pointer;
}

#filter-table .sort:hover {
	color: var(--secondary-action);
}

#filter-table .sort-wrapper {
	display: flex;
	align-items: center;
	gap: .5rem;
}

#filter-table .sort:after {
	font-family: 'Material Icons';
	content: "swap_vert";
}

#filter-table .sort.asc:after {
	content: "arrow_upward";
	color: var(--secondary-action);
}
#filter-table .sort.desc:after {
	content: "arrow_downward";
	color: var(--secondary-action);
}

@media (min-width: 62em){
	.filter-wrapper input[type=search] {
		width: 40%;
	}
	
	.filter-col {
		display: flex;
    	align-items: center;
		gap: 1rem;
		width: 100%;
		justify-content: space-between;
	}
	
	#category-dropdown {
		margin-bottom: 0;
	}
	
	#reset-table {
		margin-top: 0;
	}
}

@media (min-width: 99em){
	.docName-wrapper {
		width: 40%;
	}
	
	.filter-wrapper input[type=search] {
		max-width: 40%;
	}
	
	.filter-col {
		width: auto;
		justify-content: unset;
	}
	
	#category-dropdown {
		margin-bottom: 0;
	}
	
	#reset-table {
		width: auto;
		margin-left: unset;
	}
}

.school .swiper, 
.school .swiper-slide,
.school .full-width .banner_media,
.school .banner_img img {
	aspect-ratio: 4/3;
	height: auto;
}

.school .school-info-col h1 {
	margin-top: .5rem;
}

@media (min-width: 62em){
	.school .full-width .banner_media {
		aspect-ratio: 4/3;
		width: 100%;
		height: auto;
	}
	
	.school .swiper, 
	.school .swiper-slide {
		aspect-ratio: 4/3;
	}
	
	.school .school-info-col {
		height: auto;
	}
	.school .menu-column {
		background: var(--menu-bg);
	}
	
	.school #school-contact-list-home {
		column-gap: 1.5rem;
		row-gap: .5rem;
		margin-bottom: 1rem;
	}
	
	.school #school-contact-list-home .contact-category {
		margin-right: 0;
	}
	
	.school #school-contact-list-home .contact-category:last-of-type {
		margin-bottom: 0;
	}
	
	.school #school-contact-list-home .contact-category h5 {
		margin-top: 0;
	}
}

@media (min-width: 62em) and (max-width: 80em){
	.school .school-info-col h1 {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
	
	.school .school-info-col * {
		font-size: .9rem;
	}
	
	.school .logo-wrapper {
		padding: 0;
	}
	
	.school .logo-wrapper img {
		max-width: 45px;
	}
	
	.school .logo-wrapper span {
		font-size: 1rem;
	}
	
	.school .school-info-col {
		padding: 0.5rem 1.5rem 1.2rem;
	}
	
	.school #school-contact-list-home {
		margin-bottom: .5rem;
	}
	
	.school #main-nav > ul > li {
		padding: 1rem;
	}
	
	.school .icon-text-container {
		margin-bottom: 0.5rem;
	}
}

@media (min-width: 80em) and (max-width: 99em){
	.school .school-info-col h1 {
		font-size: 2rem;
	}

	.school .school-info-col {
		padding: 3rem 2rem 2rem;
	}
	
	.school #main-nav > ul > li {
		padding: 1rem 2.5rem 1rem 1.5rem;
	}

}

/* School homepage banner carousel */
.school .full-width .light-grey_bg h1,
.school .full-width .light-grey_bg p {
    color: white;
}

.school .full-width .banner_info {
    background: rgba(0, 0, 0, 0.5);
	min-width: 80%;
	bottom: 0;
}

.school .swiper-button-next-1,
.school .swiper-button-prev-1 {
	background-color: var(--primary-brand);
	color: white;
	top: 1.25rem;
}

.school .swiper-button-next-1 {
	right: 0;
}

.school .swiper-button-prev-1 {
	opacity: 0.89;
	right: 40px;
}

.school .swiper-pagination-bullet {
  background: none;
  border: 2px solid white;
  opacity: 1;
}

.school .swiper-pagination-bullet-active {
  background: white;
}

.school .swiper-pagination-1 .swiper-pagination-bullet {
  opacity: 0.57;
}

.school .swiper-pagination-1.swiper-horizontal > .swiper-pagination-bullets,
.school .swiper-pagination-1.swiper-pagination-bullets.swiper-pagination-horizontal {
 	width: fit-content;
	top: 0.5rem;
    left: 1rem;
}

@media (min-width: 62em){
	.school .full-width .banner_info {
		min-width: unset;
	}
	
	.school .swiper-button-next-1 {
		top: auto;
		bottom: 0;
	}
	
	.school .swiper-button-prev-1 {
		top: auto;
		bottom: 0;
	}
	
	.school .swiper-pagination-1.swiper-horizontal > .swiper-pagination-bullets,
	.school .swiper-pagination-1.swiper-pagination-bullets.swiper-pagination-horizontal {
		top: auto;
	  	left: 1.5rem;
		bottom: 0.5rem;
	}

}

.arrow-up-link{
    text-align: right;
    color: white;
    display: none;
    width: fit-content;
    margin-left: auto;
    margin-right: .5rem;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 100;
	/* display: none; */
}

.arrow-up {
	background-color: #aeaeae;
    padding: .25rem;
    font-size: 2rem;
    transition: all .3s ease;
}

/* SIEP Page */
.siep-content {
	font-family: var(--sans-serif-font)!important;
}

#siep p,
#siep span {
	font-size: 1.2rem!important;
}

.step-goal-content {
	margin: 0;
	padding: 1rem 1rem 0;
}

.siep-link {
	margin-top: 2rem;
    display: block;
    font-weight: var(--font-bold);
}


/* nested ordered list styling */
.editor-nested-listitem {
    list-style-type: none;
}
.editor-nested-listitem:before,
.editor-nested-listitem:after {
    display: none;
}

.editor-list-ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}
.editor-list-ol > .editor-listitem:not(.editor-nested-listitem) {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}
.editor-list-ol > .editor-listitem:not(.editor-nested-listitem):before {
    content: counters(item, '.') '. ';
    display: table-cell;
    padding-right: 0.6em;
}
.editor-listitem:not(.editor-nested-listitem) .editor-list-ol > .editor-listitem:not(.editor-nested-listitem) {
    margin: 0;
}
.editor-listitem:not(.editor-nested-listitem) .editor-list-ol > .editor-listitem:not(.editor-nested-listitem):before {
    content: counters(item, '.') ' ';
}
.editor-list-ol {
    padding: 0;
    margin: 0;
    margin-left: 16px;
}

/* Alert Pop-up */
.modal {
	max-width: 2560px;
    right: 0;
    margin: auto;
}

#popup-container .popupImage img {
    height: 100%;
	max-height: unset;
	aspect-ratio: 4 / 1;
}

#popup-container .modal-content {
	background: #eaeaea;
    border: none;
    padding: 0;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
	width: 70%;
}

.popupContent h2 {
	margin-top: 0;
}

.popupContent p {
	margin-bottom: 0;
	padding: 0 1rem;
}

.popupContent .btn {
	margin-top: 1.5rem;
}

#popup-container .popupContent {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

@media (max-width: 991px) {
	#popup-container .popupImage img  {
		aspect-ratio: 3 / 1;
	}

	#popup-container .modal-content {
		width: 90%;
		top: 40%;
	}
}

/* News Archive v2 */
.news-archive-title {
	margin-top: 2rem;
	margin-bottom: 1.5rem;
}
.filter-sidebar {
	background: var(--light-grey);
}

.filter-sidebar-wrapper {
	padding: 2rem 1rem;
}

.filter-sidebar-wrapper h3 {
	margin: 0 0 .5rem;
}

.filter-tags {
	margin-bottom: 2rem;
}

.news-archive-post .news-title {
	margin-bottom: .5rem;
}

.news-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.news-post-tag {
	font-size: .9rem;
	/* text-transform: capitalize; */
	color: var(--body-font-color);
}

.news-post-tag::before {
	content: "";
	width: 0.5rem;
    height: 0.5rem;
	border-radius: 50%;
	margin-right: 5px;
	background: var(--dark-grey);
	display: inline-block;
}

.side-filter-group {
	padding: 0 0.75rem;
    margin-bottom: 1rem;
	display: flex;
	gap: .5rem;
	align-items: center;
	/* border-left: 2px solid var(--dark-grey); */
	position: relative;
}

.side-filter-group label {
	/* text-transform: capitalize; */
	font-size: .9rem;
}

.side-filter-group::before {
	content: '';
    width: 2px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-grey);
}

input[type="checkbox"].checkbox-tag {
    margin: 0;
    flex-grow: unset;
}

.filter-title {
	align-items: center;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.filter-title h3,
.filter-date h3 {
	color: var(--body-font-color)
}

.filter-title h3 {
	margin: 0;
}

.filter-date {
	margin-top: 1.5rem;
}

.ui-datepicker-header, #ui-datepicker-div {
	background-color: white;
}

#ui-datepicker-div {
	border: 1px solid #c5c5c5;
}

#reset, #reset-date {
	cursor: pointer;
	color: var(--secondary-brand);
	margin-left: auto;
    display: block;
    width: fit-content;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.date-picker label {
	display: block;
	font-weight: var(--font-medium);
}

.date-picker input[type="text"] {
	border-radius: 5px;
	border: none;
	margin: .5rem 0;
    min-width: unset;
}

.date-picker .date-input {
	position: relative;
}

.date-picker .date-input button {
	position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
	appearance: none;
    border: none;
    background: none;
	color: var(--secondary-brand);
}

.date-picker .date-input button::after {
	display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f073";
}

#date-apply {
	border: none;
	margin-top: 1rem;
}

#date-apply::before,
#date-apply::after {
	content: none
}

#date-apply:hover,
#date-apply:focus {
	filter: brightness(1.1);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: .5rem;
	margin-bottom: 2rem;
    justify-content: center;
}

.pagination-controls i {
	cursor: pointer;
	color: var(--secondary-brand);
	font-weight: bold;
}

@media (max-width: 991px) {
	.filter-title {
		margin-bottom: 0;
	}

	.filter-content {
		display: none;
	}

	.filter-sidebar-wrapper {
		padding: 1rem 0;
	}

	.expand-filter-icon {
		color: var(--secondary-brand);
	}
}

@media (min-width: 62em) {
	.expand-filter-icon {
		display: none;
	}

	.filter-content {
		display: block!important;
	}

	.news-container {
		padding: 0 3%;
	}

	.filter-sidebar {
		margin-bottom: 2rem;
	}

	#reset, #reset-date {
		margin-top: -1rem;
	}
}

@media (min-width: 99em) {
	.filter-sidebar {
		max-width: 380px;
	}
}

@media (min-width: 120em) {
	.filter-sidebar {
		max-width: 400px;
	}
	.news-item-col {
		flex-basis: 25%;
		max-width: 25%;
	}

	input[type="checkbox"].checkbox-tag {
		width: 18px;
		height: 18px;
	}

	.side-filter-group::before {
		height: 18px;
		width: 2.5px;
	}

	.side-filter-group label {
		font-size: 1rem;
	}
}

/* News Filter Legend */
.news-post-tag[data-name="board news"]::before,
.side-filter-group[data-name="board news"]::before {
	background: var(--board-news);
}

.news-post-tag[data-name="school news"]::before,
.side-filter-group[data-name="school news"]::before {
	background: var(--school-news);
}

.news-post-tag[data-name="spotlight"]::before,
.side-filter-group[data-name="spotlight"]::before {
	background: var(--spotlight);
}

.news-post-tag[data-name="story"]::before,
.side-filter-group[data-name="story"]::before {
	background: var(--story);
}

.news-post-tag[data-name="blog"]::before,
.side-filter-group[data-name="blog"]::before {
	background: var(--blog);
}

.news-post-tag[data-name="board and committee meetings"]::before,
.side-filter-group[data-name="board and committee meetings"]::before {
	background: var(--board-and-committee-meetings);
}

/* .side-filter-group[data-name="board news"] {
	border-color: var(--board-news);
}

.side-filter-group[data-name="school news"] {
	border-color: var(--school-news);
}

.side-filter-group[data-name="spotlight"] {
	border-color: var(--spotlight);
}

.side-filter-group[data-name="story"] {
	border-color: var(--story);
}

.side-filter-group[data-name="blog"] {
	border-color: var(--blog);
}

.side-filter-group[data-name="board and committee meetings"] {
	border-color: var(--board-and-committee-meetings);
} */

