*,
*: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;
}

:root {
	--mhpsd: #e1534a;
	--elementary: #f7ab33;
	--middle-school: #4FA3A5;
	--high-school: #3a5698;
  --dark-font-color: #000;
  --medium-grey: #707070;
  --light-grey: #e4e4e4;
}

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

body, .article {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: usual, sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;  
  overflow-x: hidden;
}

body.no-overflow {
  overflow-y: hidden;
}

h1, .h1 {
  font-family: fatfrank, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2, h3, h4, h5, h6,
.h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  font-style: normal;
}

h1, .h1 {
  font-size: 1.75rem;
  line-height: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.525rem;
}

h2, .h2 {
  color: #A3A3A3;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1.3125rem;
  margin-bottom: 1.3125rem;
}

h3, .h3 {
  font-size: 1.25rem;
  line-height: 1.85rem;
  margin-top: 1.3125rem;
  margin-bottom: 1rem;
}

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

h5, .h5, h6, .h6 {
  font-size: 1rem;
  line-height: 1.3125rem;
  margin-top: 1.3125rem;
  margin-bottom: 0rem;
}

h1 + h2 {
  margin-top: 0;
}

@media only screen and (min-width: 62em) {
  h1, .h1 {
    font-size: 2.75rem;
    line-height: 4rem;
  }
  
  h2, .h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
  } 
}

@media only screen and (min-width: 75em) {
  h1, .h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
  
  h2, .h2 {
    font-size: 2.25rem;
    line-height: 2.45rem;
  }  
  
  h3, .h3 {
    font-size: 1.65rem;
    line-height: 1.85rem;
  }  
}


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

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

/* Let's make sure all's aligned */
hr, .hr {
  width: 50%;
  height: 2px;
  background: #eee;
  margin: 2rem 0;
  border: 0;
}

a, b, i, strong, em, small, code {
  line-height: 1;
}

p {
  margin: 0 0 1.5rem 0;
}

.lead {
  font-size: 120%;
}

em {
  font-weight: 700;
  font-style: italic;
}

b, strong {
  font-weight: 700;
  font-style: normal;
}

a {
  text-decoration: none;
  outline: none;
  -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;
}

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

img,
.img-responsive {
  max-width: 100%;
  height: auto;
}

.image {
  margin: 0;
}

figure.image-style-side {
  float: right;
  margin: 20px;
}

figure.image-style-side img {
  max-height: 500px;
}

.invisible {
  visibility: hidden;
}

.aria-hide {
  display: none;
}

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

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

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

.no-padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.uppercase {
	text-transform: uppercase;
}

.btn,
input[type="submit"] {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75em;
  line-height: 1.2;
  letter-spacing: 2px;
  padding: 1rem 2.5rem 1rem 2rem;
  display: inline-block;
  text-decoration: none;
  -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;  
}

@media(min-width: 75em) {
  .btn, input[type="submit"] {
    font-size: 0.95rem;
  }
}

.btn-primary,
input[type="submit"] {
  border-radius: 5px;
}

.btn-secondary {
  padding-left: 0;
}

.btn::before {
  content: '';
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 250ms 0s ease;
  -o-transition: all 250ms 0s ease;
  transition: all 250ms 0s ease;
  -webkit-transform: translate3D(0,0,0) rotate(135deg);
  -ms-transform: translate3D(0,0,0) rotate(135deg);
  transform: translate3D(0,0,0) rotate(135deg);
  background-color: transparent;
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: 7px;
  height: 7px;
}

.btn::after {
  content: '';
  height: 2px;
  width: 10px;
  background-color: #fff;
  position: absolute;
  right: 20px;
  bottom: 17px;
  -webkit-transition: all 250ms 0s ease;
  -o-transition: all 250ms 0s ease;
  transition: all 250ms 0s ease;
}

.btn:hover::before {
  bottom: 24px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: translate3D(0,50%,0) rotate(135deg);
  -ms-transform: translate3D(0,50%,0) rotate(135deg);
  transform: translate3D(0,50%,0) rotate(135deg);
}

.btn:hover::after {
  bottom: 24px;
  -webkit-transform: translate3D(0,50%,0);
  -ms-transform: translate3D(0,50%,0);
  transform: translate3D(0,50%,0);
}

@media(min-width: 72em) {
  .links-list {
    column-count: 2;
    column-gap: 30px;
  }
}


/* Brand specific */
a {
  color: #EB5270;
}

a:hover,
a:focus {
  color: #c7304e;
}

.btn-primary {
  background: #EB5270;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
}

.btn.btn-secondary::after {
  background: #DC5270;
}

.btn.btn-secondary:hover::before {
  border-color: #DC5270;
  border-color: #DC5270;  
}

/* */

.btn i {
  vertical-align: middle;
  -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;  
}

.btn:hover i,
.btn:focus i {
  padding-left: 5px;
}

/* SERVICES */
#nav-app { 
  margin: 0 1rem;     
  position: absolute;
  top: 0.5rem;
  right: 0; 
}

#nav-app ul { display: flex; margin: 0; padding: 0; text-align: center; margin: 0px; padding: 0; white-space: nowrap }
#nav-app li { list-style: none; white-space: nowrap }
#nav-app a { display: inline-block; padding: 0; color: #FCDC98; cursor: pointer; }
#nav-app a:hover { text-decoration: none }

#op-services .service { 
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#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: 60%;
  line-height: .6;
}

@media(min-width: 62em) {
  #op-services img { 
    max-height: 50%;
    max-width: 100%;
  }  

  #op-services span { 
    letter-spacing: 2px;
  }  
}

@media(min-width: 75em) {
  #op-services span { 
    text-transform: uppercase;
  }
}

#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 {
  background: #505050;
}

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

/* Resources Page Services */
#import-waffle-links {
  margin-bottom: 2rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 2px;
  line-height: 1.3;
}

#import-waffle-links .service-icon img {
  max-width: 60px;
  max-height: 60px;
  margin: 0 auto 10px;
}

#import-waffle-links .service {
  display: flex;
  flex-basis: 50%;
  width: 50%;
  max-width: 50%;  
}

@media(min-width: 62em) {
  #import-waffle-links .service {
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
}

@media(min-width: 75em) {
  #import-waffle-links .service {
    flex-basis: 16.667%;
    width: 16.667%;
    max-width: 16.667%;
  }
}

#import-waffle-links .service a {
  flex: 1;
  width: 100%;
  margin-bottom: 20px;
  background: #3e3e3e;
  border-radius: 4px;
  padding: 1rem;
  color: #fff;  
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

@media(min-width: 62em) {
  #import-waffle-links .service a {
    letter-spacing: 1px;
  }
}

/* Option Box */
.optionbox {
  position: absolute;
  box-sizing: border-box;
  display: none;
  z-index: 30000;
  background: #3e3e3e;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem; 
  margin-left: -1rem;
}

#op-search {
  padding-left: 0;
  padding-right: 0;
}


@media (min-width: 62em) {
  #op-services {
    max-width: 650px;
  }

}

@media (min-width: 62em) {
  .optionbox {
    margin-left: 0;
  }
} 

.optionbox-padding { 
  padding: 10px;
}

.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: #fff; 
  cursor: pointer;
}

.optionbox a:hover,
.optionbox a:focus {
  color: #fff;
}

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

@media(min-width: 62em) {
  .arrow-clip {
    margin-left: -10px;
  }
}

.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;
}


/* HEADER */
.logo {
  background: #000;
  padding: 3.5rem 1rem 0 1rem;
}

.logo img {
  width: 3.5rem;
  max-width: 3.5rem;
  object-fit: cover;
}

.logo a {
  z-index: 100;
}

@media(min-width: 62em) {
  .logo {
    padding: .5rem;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;  
	flex-direction: column;
    justify-content: center;
  }
  
  .logo img {
    width: 6rem;
    max-width: 6rem;
    /*max-height: 6.5rem;*/
  }  
}

.site-name {
  width: 190px;
  font-family: usual, sans-serif;
  position: absolute;
  font-size: .9rem;
  line-height: 1.25;
  font-weight: 600;
  left: 5.5rem;
  top: 65%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 100;
}

.site-name a {
  color: inherit;
}

.site-slogan {
  display: block;
  font-size: 60%;
}

@media(min-width: 62em) {
  .site-name {
    margin: 1rem 0;
    top: 55%;
    left: 8rem;
    color: #000;
  }
}

@media(min-width: 75em) {
  .site-name {
    font-size: 1.25rem;    
  }
}

@media(min-width: 99em) {
  .site-name {
    width: auto;
    font-size: 1.5rem;
    left: 8rem;
  }
}

.main-header {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.top-menu-wrapper {
  padding: .5rem 0 1rem;
  background: #000;
  color: #fff;
}

.top-menu-wrapper .top-menu {
  display: none;
}

.top-menu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0 .5rem;
}

.top-menu-wrapper ul li {
  display: inline-block;
}

.top-menu-wrapper ul li a {
  color: #fff;
  font-size: .75rem;
  margin: 0 0.4rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.top-menu-wrapper ul li a:hover,
.top-menu-wrapper ul li a:focus {
  opacity: 0.8;
}

.top-phone, .top-social {
  line-height: 2;
}

.top-phone, .top-social, .float-right-md, #nav-app, .top-menu {
  display: inline-block;
  vertical-align: text-top
}

@media(min-width: 62em) {
  .top-menu-wrapper .top-menu {
    display: inline-block;
  }  
  
  .top-menu-wrapper {
    text-align: right;
    padding: 0.5rem 0;
  }
  
  .top-menu-wrapper ul {
    margin: 0 2rem 0 0;
  }
  
  .top-phone, .top-staff {
    font-size: 0.9rem;  
    margin-left: 8rem;
    margin-right: 2rem;
  }
  
  .top-phone, .top-social, .top-staff {
    float: left;
  }
  
  .top-staff {
    vertical-align: bottom;
    line-height: 1;
    padding: 5px 0;
    font-style: italic;    
  }
  
  .top-staff i {
    color: #d59e00;
    vertical-align: middle;    
  }
  
  #nav-app {
    position: initial;
    margin-top: 0;
    margin-right: 1rem;
  }
  
  .main-menu-wrapper {
    height: 5.5rem;
    line-height: 4rem;    
  }  
}

/* Main Menu */
#main-nav ul {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

#main-nav ul li {
  padding: 15px 10px;
}

/* .connaught #main-nav ul li.programs, 
.crestwood #main-nav ul li.programs
.dr-ken #main-nav ul li.programs,
.elm-street #main-nav ul li.programs,
.herald #main-nav ul li.programs,
.river-heights #main-nav ul li.programs,
.ross-glen #main-nav ul li.programs,
.vincent-massey #main-nav ul li.programs,
.webster #main-nav ul li.programs { 
  display: none;
} */

#main-nav ul li {
  vertical-align: middle;
}

#main-nav ul li a {
  color: #000;
  padding: 5px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: .95rem;  
}

#main-nav ul li a.active::after {
  content: '';
  width: 50%;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-55%);
}

#main-nav ul li a:hover,
#main-nav ul li a:focus {
  background: rgb(0 0 0 / 15%);
}

/*Mobile Menu*/
.hamburger-menu,
.secondary-hamburger-menu {
  position: relative;
  z-index: 1000;
  display: none;
}

input.hamburger-menu[type="checkbox"],
input.secondary-hamburger-menu[type="checkbox"] {
  display: none;
}

@media only screen and (max-width: 62em) {  
  #main-nav,
  #nav-secondary {
    background: #fff;
    width: 100%;
    min-height: 100vh;
    right: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    position: fixed;
    z-index: 1100;
    top: 0;
  }

  #main-nav ul,
  #nav-secondary ul {
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  input.hamburger-menu[type="checkbox"] {
    display: none;
  }

  input.hamburger-menu[type="checkbox"]:checked ~ #main-nav,
  input.secondary-hamburger-menu[type="checkbox"]:checked ~ #nav-secondary {
    transform: translateX(0%);
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .bar {
    background-color: #000;
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .top,
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon .top {
    -webkit-transform: translateY(7px) rotateZ(45deg);
    -moz-transform: translateY(7px) rotateZ(45deg);
    -ms-transform: translateY(7px) rotateZ(45deg);
    -o-transform: translateY(7px) rotateZ(45deg);
    transform: translateY(7px) rotateZ(45deg);
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .bottom,
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon .bottom {
    -webkit-transform: translateY(-9px) rotateZ(-45deg);
    -moz-transform: translateY(-9px) rotateZ(-45deg);
    -ms-transform: translateY(-9px) rotateZ(-45deg);
    -o-transform: translateY(-9px) rotateZ(-45deg);
    transform: translateY(-9px) rotateZ(-45deg);
  }

  input.hamburger-menu[type="checkbox"]:checked ~ .hamburger-icon .middle,
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon .middle {
    width: 0;
  }

  .middle {
    margin: 0 auto;
  }

  .hamburger-icon {
    background: transparent;
    top: 50%;
    right: 1.5rem;
    display: inline-block;
    padding: 7px 0;
    cursor: pointer;
    position: absolute;
  }
  
  .secondary-hamburger-menu + .hamburger-icon {
    right: 0;
  }
  
  input.hamburger-menu[type="checkbox"]:checked + .hamburger-icon,
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon {
    z-index: 1200;
  }  
  
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon {
      position: fixed;
      top: 5%;
      right: 11%;
  }
  
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon {
    position: fixed;
    top: 5%;
    right: 11%;
  }  

  .bar {
    display: block;
    background-color: #fff;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    margin: 5px auto;
    transition: background-color 0.4s ease-in, transform 0.4s ease-in,
      width 0.4s ease-in;
  }
  
  .sidebar .bar {
    background-color: #000;
  }
  
  .hamburger-icon::before {
    content: 'menu';
    color: #fff;
    position: absolute;
    left: -40px;
    top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .5rem;
  }
  
  .sidebar .hamburger-icon::before {
    content: 'related pages';
    color: #000;
    width: 60px;
    left: -70px;
    top: 13px;
    text-align: right;
    font-size: .5rem;
    line-height: 1.2;
  }    
  
  input.secondary-hamburger-menu[type="checkbox"]:checked + .hamburger-icon::before {
    display: none;
  }
  
  #main-nav ul,
  #nav-secondary ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
  }
}

@media only screen and (min-width: 62em) {
  #main-nav {
    text-align: right;
    width: 100%;
    /*vertically center*/
    position: relative;
    top: 50%;
    transform: translateY(-50%);    
  }
  
  #main-nav ul li a {
    font-size: .75rem;
    letter-spacing: 0;
  }
  
  .school-body #main-nav {
    padding: .25rem 0 .5rem;
  }
  
  .hamburger-menu, .hamburger-icon {
    display: none;
  }
  
  #main-nav ul {
    padding: 0;
    margin-right: 1rem;
  }  
  
  #main-nav ul li {
    display: inline-block;
    padding: 5px 0;
  }
}

@media only screen and (min-width: 75em) { 
  #main-nav ul {
    padding: 0 1rem;
  } 
  
  #main-nav ul li a {
    letter-spacing: 2px;
  }  
}

@media only screen and (min-width: 99em) { 
  #main-nav {
    letter-spacing: 1px;
  }
  
  #main-nav ul {
    text-align: right;
    padding: 0 1.35rem;
    margin-right: 0;
  }
  
   #main-nav ul li {
    font-size: 1.2rem;
    padding: 5px;     
  }
  
  #main-nav ul li a {
    font-size: .95rem;
  }  
}

/*PRIDE MONTH*/
@media only screen and (min-width: 62em) {
  /* 2025 - Rainbow banner for all sites except for Medicine Hat Christian School */
	/* .sticky-header .main-menu-wrapper:not(.no-rainbow-banner){
		background: linear-gradient(to right, rgb(237, 34, 36), rgb(243, 91, 34), rgb(249, 150, 33), rgb(245, 193, 30), rgb(241, 235, 27) 27%, rgb(241, 235, 27), rgb(241, 235, 27) 33%, rgb(99, 199, 32), rgb(12, 155, 73), rgb(33, 135, 141), rgb(57, 84, 165), rgb(97, 55, 155), rgb(147, 40, 142))
	}
	.main-menu-wrapper:not(.no-rainbow-banner) #main-nav ul li a {
		color: #fff;
	} */

    /* 2024 - For the following schools only:
    Crescent Heights
    Medicine Hat High School
    George Davison School
    River Heights School
    Ecole Connaught School
    Ross Glen School
    Alexandra Middle School
    Herald School
    Dr Roy Wilson Learning Centre
    */
    /* .crescent-heights .sticky-header .main-menu-wrapper,
    .mh-high .sticky-header .main-menu-wrapper,
    .george-davison .sticky-header .main-menu-wrapper,
    .river-heights .sticky-header .main-menu-wrapper,
    .connaught .sticky-header .main-menu-wrapper,
    .ross-glen .sticky-header .main-menu-wrapper,
    .alexandra .sticky-header .main-menu-wrapper,
    .herald .sticky-header .main-menu-wrapper,
    .dr-roy .sticky-header .main-menu-wrapper {
		background: linear-gradient(to right, rgb(237, 34, 36), rgb(243, 91, 34), rgb(249, 150, 33), rgb(245, 193, 30), rgb(241, 235, 27) 27%, rgb(241, 235, 27), rgb(241, 235, 27) 33%, rgb(99, 199, 32), rgb(12, 155, 73), rgb(33, 135, 141), rgb(57, 84, 165), rgb(97, 55, 155), rgb(147, 40, 142))
	}
	.crescent-heights .main-menu-wrapper #main-nav ul li a,
    .mh-high .main-menu-wrapper #main-nav ul li a,
    .george-davison .main-menu-wrapper #main-nav ul li a,
    .crescent-heights .main-menu-wrapper #main-nav ul li a,
    .river-heights .main-menu-wrapper #main-nav ul li a,
    .ross-glen .main-menu-wrapper #main-nav ul li a,
    .alexandra .main-menu-wrapper #main-nav ul li a,
    .herald .main-menu-wrapper #main-nav ul li a,
    .dr-roy .main-menu-wrapper #main-nav ul li a {
		color: #fff;
	} */
} 


/* Sticky Nav */
@media only screen and (min-width: 99em) {
  .sticky-header {
    width: 100%;
    transition: all 0.3s;
    position: sticky;
    z-index: 1001;
    top: 0;
  }
  .sticky-header .main-menu-wrapper {
    background: rgba(255, 255, 255, 0.75);
  } 

  /* .sticky-header .top-menu-wrapper,
  .sticky-header .logo img,
  .sticky-header .site-name,
  .sticky-header #main-nav ul li a,
  .sticky-header .material-icons,
  .sticky-header .main-menu-wrapper {
    transition: all 0.3s;
  } */

  .sticky-header.sticky-active {
    background: #fff;
    box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.15);
  }
  
  .sticky-header.sticky-active .top-menu-wrapper {
    position: absolute;
    top: -100px;
  }
  
  .sticky-header.sticky-active .logo {
    padding: .5rem .75rem;
    bottom: auto;
  }

  .sticky-header.sticky-active .logo img {
    max-width: 4rem;
    max-height: 4.5rem;
    min-height: 2.5rem;
  }

  .sticky-header.sticky-active .main-menu-wrapper {
    height: 3.5rem;
    line-height: 2rem;
  }

  .sticky-header.sticky-active #main-nav ul li a {
    font-size: .75rem;
  }

  .sticky-header.sticky-active .site-name {
    font-size: 1rem;
    top: 50%;
    margin: 0;
    left: 6rem;
    transform: translateY(-50%);
  }

}

/* HOME */

/* content-slider-wrapper Styles */
#content-slider-wrapper {
  height: 400px;
  color: #fff;
}

#content-slider-wrapper h1 {
  color: #fff;
  letter-spacing: 4px;
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;  
}

/* content-slider-wrapper Styles */
#content-slider-wrapper .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

#content-slider-wrapper .content-slider input {
  display: none;
}

#content-slider-wrapper .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}

#content-slider-wrapper .content-slider .slider .banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: inherit;
  height: inherit;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.5s ease;
}

.content-slider .slider .banner .banner-inner-wrapper {
  background-image: linear-gradient(rgba(0,0,0, 0), rgba(0,0,0, 0.75));
  box-sizing: border-box;
  padding: 10rem 1rem 50px;
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
}

.content-slider .slider .banner .banner-inner-wrapper h2 {
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.content-slider .slider .banner .banner-inner-wrapper h1 {
  margin-bottom: 4rem;
  font-size: 4.5rem;
}

@media(max-width: 48em) {
  .content-slider .slider .banner .banner-inner-wrapper .btn {
    padding: .5rem 1.5rem .5rem 1.5rem;
  }

  .content-slider .slider .banner .banner-inner-wrapper .btn::after {
    display: none;
  }
}

.content-slider .slider .banner .banner-inner-wrapper .line {
  display: block;
  width: 4rem;
  height: 0.1875em;
  margin: 2.5em auto;
  background: #fff;
}

.content-slider .slider .banner .banner-inner-wrapper .learn-more-button {
  padding-bottom: 5em;
  z-index: 15 !important;
}

.content-slider .slider .banner .banner-inner-wrapper .learn-more-button a {
  padding: 0.5em 2em;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 0.875em;
  color: #fff;
  text-transform: uppercase;
  border: 0.1875em solid #fff;
}

.content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
  color: #e88382;
  border-color: #e88382;
  transition: 0.3s;
}

.content-slider .slider {
  background-size: cover!important;
  background-position: center bottom!important;
}

.content-slider nav {
  position: absolute;
  bottom: 0.5em;
  width: 100%;
  z-index: 10;
  text-align: center;
}

.content-slider nav .controls {
  display: block;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  color: #fff;
}

.content-slider nav .controls label {
  position: relative;
  display: inline-block;
  width: 15%;
  height: 10px;
  overflow: hidden;
  margin: 0 1rem;
  padding-top: 10px;
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  color: #f6eac5;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}

.content-slider nav .controls label .progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #f6eac5;
  z-index: 100;
}

.content-slider nav .controls label .progressbar .progressbar-fill {
  position: inherit;
  width: inherit;
  height: inherit;
  margin-left: -100%;
  background: #e88382;
}

.content-slider nav .controls label span {
  font-size: 1.4em;
  font-weight: 700;
}

.content-slider nav .controls label:hover {
  color: #e88382;
}

.content-slider #banner1:checked ~ .slider #top-banner-1,
.content-slider #banner2:checked ~ .slider #top-banner-2,
.content-slider #banner3:checked ~ .slider #top-banner-3,
.content-slider #banner4:checked ~ .slider #top-banner-4 {
  opacity: 1;
  z-index: 1;
}

.content-slider #banner1:checked ~ nav label:nth-of-type(1),
.content-slider #banner2:checked ~ nav label:nth-of-type(2),
.content-slider #banner3:checked ~ nav label:nth-of-type(3),
.content-slider #banner4:checked ~ nav label:nth-of-type(4) {
  cursor: default;
  color: #fff;
  transition: all 0.5s;
}

.content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
.content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
.content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
.content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar {
  background: #fff;
}

.content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
.content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
.content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
.content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill {
  animation: progressBarFill 5s linear;
}

/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}

@media(min-width: 62em) {
  #content-slider-wrapper {
    height: 50vh;
  }
  
  #content-slider-wrapper h1 {
    font-size: 2.75rem;
  }
  
  .content-slider .slider .banner .banner-inner-wrapper {
    padding: 7rem 1rem 7rem;
  } 
  
  .content-slider .slider .banner .banner-inner-wrapper h2 {
    font-size: 1.2rem;
  }
  
  .content-slider nav .controls {
    width: 70%;
  } 
  
  .content-slider nav .controls label {
    width: 20%;
    font-size: .75rem;
    height: 3rem;
  }  
}

@media(min-width: 99em) {
    #main-content {
         margin-top: -136px;
    }
  #content-slider-wrapper {
    height: 100vh;
  }  
  
  .school-body #content-slider-wrapper {
    height: 75vh;
  }  
  
  #content-slider-wrapper h1 {
    font-size: 4.5rem;
  }
  
  .content-slider .slider .banner .banner-inner-wrapper {
    padding: 7rem 1rem 9rem;
  }   
  
  .content-slider nav .controls label {
    font-size: 1rem;
  }    
}

/* Animation on home page waffle tooltip */
@keyframes fade {
  0% { opacity: 1 }
  100% { opacity: 0 }  
}

@keyframes shake {
   0% { transform:translate(0,0) }
   19% { transform:translate(0,0) }  
  20% { transform:translate(8px,0) }
  23% { transform:translate(0,0) }
  25% { transform:translate(8px,0) }
  27% { transform:translate(0,0) }
  28% { transform:translate(8px,0) }
  30% { transform:translate(0,0) }
  100% { transform:translate(0,0) } 
}

.services-trigger {
  position: relative;
}

.home .services-trigger i {
  animation: shake 4s ease 2;
}

.services-trigger:hover .tooltip-shake {
  animation-fill-mode: forwards;
  animation-play-state: running; 
}

.home .tooltip-shake {
  background: #6e6e6e;
  color: #fff;
  position: absolute;
  top: 130%;
  right: 0;
  padding: 5px;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: shake 4s ease 2, fade 100ms backwards paused;
 
}

.home .tooltip-shake::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #6e6e6e;
  position: absolute;
  left: 89%;
  top: -7px;
}

/* 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 */

.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;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.upcoming-events li:hover,
.upcoming-events li:focus,
.recent-news li:hover,
.recent-news li:focus {
  filter: brightness(0.9);
}

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

.upcoming-events svg {
  margin: 1.5rem 1rem 1.5rem 1.5rem;
  width: 8%;
}

.upcoming-events .event-details {
  border-left: 1px solid #fff;
  padding: 1.5rem;
  width: 75%;
}

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

.upcoming-events .format-date,
.recent-news .news-date {
  text-transform: uppercase;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  display: block;  
  font-size: 80%;
}

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

.recent-news li {
  padding: 1.25rem;
}

.recent-news .news-title {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
}

.recent-news .news-date {
  letter-spacing: 1px;
  opacity: .5;
  font-size: .7rem;
}


/* */

.news-section {
  margin-bottom: 6rem;
}

.news-item {
  position: relative;
  border-radius: 5px;
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  margin-bottom: 1.5rem;  
  padding-right: 1rem;
  padding-left: 1rem;
  background-size: cover!important;
  background-position: center!important;
  display: flex;
  flex-direction: column;
  height: 20rem;
}

.news-item.no-cover {
  background-color: #EBECEB;
  background-image: url(/images/footer-bg.svg);
  background-repeat: no-repeat;
  background-size: 400%!important;  
}

.news-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 5px;  
  background: rgba(0,0,0,0.65);
  transition: all 0.2s;
}

.news-item:hover .overlay,
.news-item:focus .overlay {
  background: rgba(0,0,0,0.7);
}

.news-item .news-details {
  position: relative;
  z-index: 100;
  margin: auto 0 1rem 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: bold;  
}

@media(min-width: 48em) {
  .news-item .news-details {
    margin: auto 0 2rem 1rem;
  }
} 

.news-item .news-date {
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: #d0d0d0;
  letter-spacing: 1px;
}

.news-item.first {
  height: 30rem;
}

.news-item.second {
  height: 14rem;
  margin-bottom: 2rem;
}

.news-item.third, .news-item.fourth {
  height: 14rem;
}

/* Dates, cover images */
.publish-date {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  background-color: #EBECEB;
  border: 1px solid #dedede;
}

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

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

/* School lists */
.schools-wrapper {
  border-radius: 5px;
  padding: 2.5rem;
  margin-bottom: 2rem;  
}

.schools-wrapper h2 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-size: 1.25rem;
}

.schools-wrapper ul {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;  
}

.schools-wrapper ul li {
  margin-bottom: 1rem;
  color: #ccc;
}

.schools-wrapper ul li a {
  color: #fff;
}

.schools-wrapper ul li a:hover,
.schools-wrapper ul li a:focus {
  color: #FCDC98;
}

.elementary-wrapper {
  background: #1E689E;
}

.secondary-wrapper {
  background: #447890;
}

.online-wrapper {
  background: #77A0BA;
}

.alternative-wrapper {
  background: #273045;
}

@media(min-width: 48em) {
  .elementary-wrapper {
    height: 100%;
  }

  .schools-wrapper {
    margin-bottom: 0;
  }
  
  .secondary-wrapper, .online-wrapper {
    margin-bottom: 2rem;
  }  
}

/* CONTENT  */
.featured-img-bg {
  position: relative;
  padding: 20% 0 15%;
  background-size: cover!important;
}

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

.featured-img-text {
  text-align: center;
  color: #fff;
  padding: 1rem 2rem;
}

.featured-img-text h1 {
  margin: 0;
  background: rgba(0,0,0,0.5);
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 5px;
  outline: 1px solid #8f8f8f;
  outline-offset: -5px;  
}

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

@media(min-width: 99em) {
  .content-container {
    padding-top: 8.5rem;
  }
  
  .featured-img-bg+.content-container {
    padding-top: 0;
  }  
}

.intro-content {
  padding: 3rem 0 2rem;
  background: #eeefee;
}

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

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

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

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

.content-row img {
  border-radius: 5px;
  outline: 1px solid #fff;
  outline-offset: -5px;
  max-height: 600px;
  display: block;
  margin: 1.5rem auto;
}

.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%;
}

.content-boxes {
  margin-top: 1.3125rem;
}

.content-box {
  line-height: 1.4rem;
  margin-bottom: 2rem;
  height: calc(100% - 2rem);
  background-color: #EBECEB;
  text-align: center;
  border: 1px solid #dedede;
  border-radius: 5px;
  transition: all .1s ease-in-out;
  box-shadow: 0 2px 4px 0 rgb(46 46 46 / 20%);
}

.content-box-link .content-box:hover,
.content-box-link .content-box:focus {
  box-shadow: none;
  transform: translateY(2px);
  border-color: #dedede;
}

.content-box-link {
  display: block;
  height: 100%;
  cursor:pointer;
  pointer-events: auto;
}

.box-img {
  width: 100%;
  border-radius: 5px;
  outline: 1px solid #fff;
  outline-offset: -5px;
}

.content-box h3 {
  padding: 0 2rem;
  margin-bottom: 1.3125rem;
}

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

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

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

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

.useful-link span {
  font-size: 80%;
  letter-spacing: 1px;
}

.staff-directory-page h2 {
  margin-bottom: 3rem;
}

.biography h3,
.directory h3 {
  margin-top: 0;
}

.directory h3 {
  font-size: 1.35rem;
  margin-bottom: .75rem;
}

.directory h4 {
  margin-top: 0.5rem;
}

.biography h4 {
  margin-bottom: 1rem;
}

.biography p,
.directory p {
  margin-bottom: .5rem;
  color: #646464;  
}

.directory p {
  font-size: .85rem;
}

.biography a,
.directory a {
  vertical-align: middle;
}

.biography i,
.directory i {
  font-size: 15px;
  vertical-align: middle;
  color: #646464;
}

.biography a span {
  color: #646464;
}

.bio-img img {
  border-radius: 5px;
  outline: 1px solid #fff;
  outline-offset: -5px;
  width: 100%;
}

.school-logo img {
  max-height: 10rem;
  display: block;
  margin: 0 auto;
}

.staff-directory-link {
  margin: 1rem 0 2rem;
}

.directory h4 + h4 {
  color: #a3a3a3;
  margin-bottom: .5rem;
}

/*Search Results*/
.search-results {
  padding: 0 1rem;
}

.search-results-heading {
  margin-top: 2rem;
}

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

.search-description {
  color: initial;
}

.search-title,
.search-description {
  line-height: 1.5;
}

@media(min-width: 62em) {
  .search-results-heading {
    margin-top: 10rem;
  }
}


/* Sidebar Styles */
.sidebar {
  margin-top: 1rem;
  margin-bottom: 3rem;
  position: relative;
}

@media only screen and (min-width: 62em) {
  .sticky-sidebar {
    position: sticky;
    margin-top: 5rem;
    top: 5rem;
  }
}

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

@media(max-width: 62em) {
  .cookie {
    text-align: center;
    padding: 10px 0;
  }
}

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

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

#nav-secondary .secondary-nav-item {
  padding: 0.5rem 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: 100%;
  height: 2px;
  background: #eee;
  display: block;
  margin: 8px 0;
}

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

@media(min-width: 75em) {
  #nav-secondary .secondary-nav-item a::after,
  #nav-secondary .secondary-nav-item.active::after {
    width: 10%;
  }
  
  #nav-secondary .secondary-nav-item.child a::after {
    width: 20%;
  }  
}

#nav-secondary a {
  color: inherit;
}

#nav-secondary a:hover {
  font-style: italic;
}

#nav-secondary ul li.secondary-nav-item.child a {
  font-size: 90%;
}

.cookie a {
  vertical-align: middle;
}

.cookie a::before {
  font-family: "Material Icons";
  content: "\e5cb";
  vertical-align: middle;
}

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

.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;
}

.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;
}

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

.table table thead th, 
.editor-table th {
    color: white!important;
   background: #324960!important;
   border: 1px solid white!important;
}

.table table p {
	margin-bottom: .5rem;
}

.table table p:last-of-type,
.editor-table p:last-of-type {
	margin: 0;
}

/* Responsive Tables Styling */
@media(min-width: 62em) {
	.table {
		width: fit-content;
	}
	
	.table table td, 
	.table table th {
	  min-width: 200px;
	}
}

/*Calendar*/
.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
  color: inherit;
}

.fc-h-event .fc-event-title-container,
.fc-daygrid-dot-event .fc-event-title {
  white-space: normal;
}

.fc-daygrid-dot-event {
  align-items: flex-start!important;
  flex-wrap: wrap;
} 

.fc-daygrid-event-dot {
  margin: 3px 4px!important;
}

.fc-daygrid-block-event .fc-event-time {
  display: none;
}

.fc-daygrid-dot-event .fc-event-title {
  padding: 5px 3px;
}

#mobile-calendar-list ul {
  padding: 0 0 1rem;
  margin: 0;
  list-style: none;
}

#mobile-calendar-list h5 {
  margin-bottom: .5rem;
}

#mobile-calendar-list ul li {
  padding: 5px 0;
}

#mobile-calendar-list ul li a {
  padding: 5px 0;
}

/*Responsive Calendar Styles*/
@media(max-width: 62em) {
  #calendar {
    display: none;
  }
  
  .list-view-link {
    display: none!important;
  }
}

@media(min-width: 62em) {
  .list-view-link {
    float: right;
    padding: 1rem 0;
    display: none;
  }

  .list-view-link a {
    color: inherit;
      line-height: 1;
  }

  .list-view-link i {
    vertical-align: top;
  }  
  
  #mobile-calendar-list {
    padding-top: 3rem;
  }  

}

/* Calendar Filter */	
.calendar-filters-container {
	display: none;
}
	
@media (min-width: 62em){
	.calendar-filters-container {
		display: block;
		margin-top: 4rem;
		margin-bottom: 2rem;
		background: #f4f4f4;
		padding: 1.5rem;
	}
	
	.calendar-filters-heading h3 {
		margin-top: 0;
		font-size: 1.375rem;
	}
	
	.target-calendar-filters {
		display: flex;
		gap: 1rem;
	}
	
	.filter-checkbox-wrapper {
		padding: 0.5rem 1rem;
		border-radius: 5px;
	}
	
	.filter-checkbox-wrapper:first-of-type {
		padding-left: 0;
	}
	
	.fc-daygrid-event {
		color: #3788D8;
	}
	
	.filter-checkbox-wrapper.--mhpsd {
		background: var(--mhpsd);
		color: white;
	}
	
	.fc-daygrid-event.--mhpsd .fc-daygrid-event-dot {
		border-color: var(--mhpsd);
	}
	
	.fc-daygrid-event.--mhpsd {
		color: var(--mhpsd);
		border-color: var(--mhpsd);
	}
	
	.fc-daygrid-event.--mhpsd .fc-event-main{
		background: var(--mhpsd);
	}
	
	.filter-checkbox-wrapper.--elementary {
		background: var(--elementary);
		color: white;
	}
	
	.fc-daygrid-event.--elementary .fc-daygrid-event-dot {
		border-color: var(--elementary);
	}
	
	.fc-daygrid-event.--elementary {
		color: var(--elementary);
		border-color: var(--elementary);
	}
	
	.fc-daygrid-event.--elementary .fc-event-main{
		background: var(--elementary);
	}

	.filter-checkbox-wrapper.--middle-school {
		background: var(--middle-school);
		color: white;
	}
	
	.fc-daygrid-event.--middle-school .fc-daygrid-event-dot {
		border-color: var(--middle-school);
	}
	
	.fc-daygrid-event.--middle-school {
		color: var(--middle-school);
		border-color: var(--middle-school);
	}
	
	.fc-daygrid-event.--middle-school .fc-event-main{
		background: var(--middle-school);
	}
	
	.filter-checkbox-wrapper.--high-school {
		background: var(--high-school);
		color: white;
	}
	
	.fc-daygrid-event.--high-school {
		color: var(--high-school);
		border-color: var(--high-school);
	}
	
	.fc-daygrid-event.--high-school .fc-daygrid-event-dot{
		border-color: var(--high-school);
	}
	
	.fc-daygrid-event.--high-school .fc-event-main{
		background: var(--high-school);
	}
}


/* Collapsible Box */

.collapsible-box { 
  background: #fff; 
  border-radius: 4px; 
  box-sizing: border-box; 
  user-select: none; 
  margin-bottom: 20px;
} 

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

.collapsible-box:hover { 
  border-radius: 4px;
}

.collapsible-box-title { 
  display: inline-block; 
  margin: 0; 
  padding: 1rem; 
  cursor:pointer; 
  width: 100%;
  font-size: 1.4rem !important;
  vertical-align: middle;  
  background: #ebeceb; 
  border: 1px solid #dedede;
  transition: all .2s ease-in-out;    
}

.collapsible-box-title:hover {
  background: #f7f7f7;   
}

.collapsible-box-icon { 
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 18px;
  color: #a3a3a3;
}

.collapsible-box-description { 
  overflow: hidden; 
  display: none; 
  padding: 1rem 1rem 0.5rem;
  user-select: text;
}

.collapsible-box h5 { 
  font-size: 1.2rem;
  margin: 10px 0px 10px 0px;
}

/* Collapsible boxes - lexical rte */
.editor details summary {
    background-color: #ebeceb;
    display: flex;
    align-items: center;
    padding: 1rem;
	margin: 0;
    border: 1px solid #dedede;
	cursor: pointer;
    transition: all .2s ease-in-out;
}

.editor details summary i {
    color: #a3a3a3;
    margin-right: .5rem;
}

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

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

/* Form Styles */
input[type="submit"] {
  border: 0;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  filter: brightness(85%);
}

.input { margin-bottom: 15px }
.input-field { position: relative; margin-bottom: 15px }
.input-field label {
  box-sizing: border-box;
  padding: 0px 5px;
  cursor: text;
  position: absolute;
  left: 10px;
  top: -12px;
  background: #ffffff;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.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"], 
textarea {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  border: solid 1px #e4e4e4;
  border-radius: 4px;
  transition: 0.5s;
  padding-left: 10px;
}

.input-field textarea { 
  margin-top: 10px; 
  padding-top: 15px; 
  min-height: 180px;
}

.input-field input[type="text"]:focus, 
.input-field input[type="password"]:focus, 
.input-field input[type="date"]:focus, 
.input-field input[type="tel"]:focus, 
.input-field input[type="email"]:focus, 
.input-field textarea:focus, 
.input-field select:focus {
  border: solid 1px #0274bb; 
  outline: none; 
  transition: 0.5s;
}

.input-field select {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  border: solid 1px #e4e4e4;
  border-radius: 4px;
  transition: 0.5s;
  padding-left: 10px;
}

.input-field:focus { 
  border: solid 10px blue; 
}

.error { 
  color: #ee3340; 
  border: solid 2px #f15d43 !important; 
}

/* FOOTER */
.main-footer {
  background-color: #EBECEB;
  background-image: url('/images/footer-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0 4rem;  
  margin-top: 8rem;  
  text-align: center;
  border-top: 1px solid #dedede;
}

@media(min-width: 48em) {
  .main-footer {
    text-align: left;
  }
}

.main-footer h2 {
  color: #A3A3A3;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: usual, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 1rem;  
}

.footer-social svg {
    width: auto;
    height: 35px;
}

@media(min-width: 75em) {
  .main-footer h2 {
  	font-size: 2rem;
  }
}

.main-footer .address {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

.main-footer .phone-fax {
  font-size: 1.25rem;
  line-height: 2rem; 
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 10rem;
  margin: 0 .5rem 1rem;
}

@media(min-width: 75em) {
  .footer-logo img {
    max-height: 18rem;
    height: auto;
  }
}

.footer-social {
  padding: 0;
  margin: 1rem 0 3rem 0;
  list-style: none;
}

.footer-logo, .footer-social {
  text-align: center;
}

.footer-social li {
  margin: 0 .5rem;
  display: inline-block;
}

.footer-social a:hover,
.footer-social a:focus {
  opacity: 0.75;
}

.footer-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1.5;
}

.footer-navigation li {
  margin: 0 0 1rem 0;
}

.footer-navigation a {
  color: #000;
}

.footer-navigation a:hover,
.footer-navigation a:focus {
  text-decoration: underline;
}
  
.main-footer hr {
  background: #fff;
  width: 50%;
  margin: 1rem auto 3rem;  
}

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

.district-logo, .footer-credit-wrapper {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 1rem;
  max-width: 40%;
}

.district-body .footer-bottom .district-logo {
  display: none;
}

.footer-credit {
  color: #ACACAC;
  font-size: .75rem;
}

#footer-imagine-everything {
  width: 190px;
  margin: 0 auto;
  display: block;
}

.feedback-button a {
  position: fixed;
  z-index: 1100;
  right: 20px;
  bottom: 20px;  
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.5em;
  letter-spacing: 2px;
  padding: 0.65rem;
  display: inline-block;
  text-decoration: none;
  -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;
  background: #eeefee;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 4px 1px rgb(0 0 0 / 15%);
  box-shadow: 0 1px 4px 1px rgb(0 0 0 / 15%);
  border: 1px solid #fff;
}

.feedback-button a i {
  vertical-align: middle;
}

@media(min-width: 75em) {
  .feedback-button a {
    font-size: 0.75em;
    padding: 1rem;
  }
}

@media (min-width: 99em){
    .cm-documents {
        padding-top: 8.5rem;
    }
}

/* Alerts */
@media all and (min-width: 99em){
	.banner-alert-wrapper {
		/* position: absolute;
		top: 136px; */
		left: 0;
		right: 0;
		z-index: 1000;
	}
}

.about h2 {
    color: #000;
    font-family: fatfrank, sans-serif;
}

.about h3 {
  color: #A3A3A3;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1.3125rem;
  margin-bottom: 1.3125rem;
}

@media only screen and (min-width: 62em) {
  .about h2 {
    font-size: 2.75rem;
    line-height: 4rem;
  }
  
  .about h3 {
    font-size: 2.25rem;
    line-height: 2.25rem;
  } 
}

@media only screen and (min-width: 75em) {
  .about h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
  
  .about h3 {
    font-size: 2.25rem;
    line-height: 2.45rem;
  }   
}

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

#skip a:focus {
    position:static;
    width:auto;
    height:auto;
}


.goog-te-gadget .goog-te-combo {
    width: 100%;
    padding: .5rem;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    border-radius: 4px;
    transition: 0.5s;
    margin: 0 0 5px!important;
    background-image: linear-gradient(45deg, transparent 50%, #3e3e3e 50%), linear-gradient(135deg, #3e3e3e 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em), calc(100% - 15px) calc(1em), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}

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

#logout {
  margin-bottom: 10px;
}

#google_translate_element a {
  display: inline-block;
  color: white;
}

#google_translate_element a:hover,
#google_translate_element a:focus {
  color: #000;
}

.goog-te-gadget {
  color: white!important;
}