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

.less-gap {
	margin-left: -.5rem;
	margin-right: -.5rem;
}

.less-gap>div {
	padding-left: .5rem;
	padding-right: .5rem;
}

.mt0 {
	margin-top: 0;
}

.mb0 {
	margin-bottom: 0;
}


/* Variables */
:root {
	--primary: #ba0c2f;
	--primary20: #ba0c2f33;
	--secondary: #646a6e;
	--secondary20: #646a6e33;
	--accent1: #F7B538;
	--yellow: #F7B538;
	--yellow20: #F7B53833;
	--orange: #DB7C26;
	--orange20: #DB7C2633;
	--green: #24672E;
	--green20: #24672E33;
	--purple: #391057;
	--purple20: #39105733;
	--dark-font-color: #1E1E1E;
	--light-font-color: #fff;
	--dark-grey: #666666;
	--light-grey: #F5F5F5;

	--body-font: "Manrope", sans-serif; 
	--heading-font: "Manrope", sans-serif; 

	--font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
	--font-bold: 700;
    --font-black: 900;
}

/* background-colors */
.bg-primary {
	background-color: var(--primary);
	color: white;
}

.bg-secondary {
	background-color: var(--secondary);
    color: white;
}

.bg-light-grey {
	background-color: var(--light-grey);
}

.bg-accent-1 {
	background-color: var(--accent-1);
	color: white;
}

.bg-green {
	background-color: var(--green20)!important;
}

.primary {
	color: var(--primary)
}

.secondary {
	color: var(--secondary)
}

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

@media (min-width: 99em) {
	html {
		font-size: 18px;
	}
}

@media (min-width: 125em) {
	html {
		font-size: 20px;
	}
}

body {
	max-width: 2560px;
	padding: 0;
	margin: 0 auto;
	font-family: var(--body-font);
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--dark-font-color);
	display: flex;
	flex-direction: column;
}

body.lb-disable-scrolling {
	overflow: hidden;
}

.wrapper {
	flex: 1 0 auto;
	background-color: var(--light-grey);
}

footer {
	flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
	font-weight: var(--font-semibold);
}

/* Font Sizer */
.change-font-size {
    padding: 0.5rem 1rem;
    background: white;
    font-weight: var(--font-medium);
    width: fit-content;
    z-index: 50;
    margin: 0 0 1rem auto;
    border-radius: 100px;
}

.change-font-size a {
    display: inline-block;
    margin-left: 0.75rem;	
	cursor: pointer;
    text-decoration: none!important;
    font-weight: var(--font-regular);
	color: var(--dark-font-color);
}


/* Font size within main content */
.resize-text h1 {
	font-size: 3em;
}

.resize-text h2 {
	font-size: 2em;
}

.resize-text h3 {
	font-size: 1.375em;
}

.resize-text h4,
.resize-text h5 {
	font-size: 1em;
}

h1,
.h1 {
	font-style: normal;
	font-size: 3rem;
	margin-top: 1.3125rem;
	margin-bottom: 2.625rem;
}

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

h3,
.h3 {
	font-size: 1.375rem;
	margin-top: 1rem;
	margin-bottom: 0.75rem;
}

h4,
.h4 {
	font-size: 1.2rem;
	margin-top: 1.3125rem;
	margin-bottom: 0.75rem;
}

h5,
.h5 {
	font-size: 1rem;
	margin-top: 1.3125rem;
	margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
    .no-content-msg {
        text-align: center;
    }
}

@media all and (max-width: 1199px) {

	h1,
	.h1 {
		font-size: 1.8rem;
	}

	h2,
	.h2 {
		font-size: 1.5rem;
		margin: 1rem 0;
	}

	h3,
	.h3,
	.page-content h3 {
		font-size: 1.2rem;
		margin: 1rem 0;
	}

	.resize-text h1 {
		font-size: 1.8em;
	}

	.resize-text h2 {
		font-size: 1.5em;
	}

	.resize-text h3 {
		font-size: 1.2em;
	}

	.editor details summary h3 {
		margin: 0;
	}

	.page-template>.row {
		row-gap: 1rem;
	}
}

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

h1+h2 {
	margin-top: 0;
}

p {
	line-height: 1.6;
}

hr {
	border: 0;
	height: 1px;
	background-color: #e6e6e6;
	margin: 2rem 0;
	clear: both;
}

img {
	height: auto;
	max-width: 100%;
	object-fit: cover;
	display: block;
}

a {
	text-decoration: none;
}

blockquote {
	background: var(--light-grey);
	border-left: 5px solid var(--secondary);
    border-radius: 0 10px 10px 0;
	padding: 1.5rem;
	margin: 0 0 1.5rem;
	position: relative;
	font-weight: 300;
}

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

ul {
	padding-left: 0;
	list-style: none;
}

strong {
	font-weight: var(--font-bold);
}

section {
	margin-bottom: 2rem;
}

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

.no-padding {
	padding: 0;
}

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

.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.auto-margin {
	margin: auto;
}

.flex-row {
	display: flex;
	align-items: center;
	gap: .5rem;
}

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

.flex-column-center {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.flex-column-between {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.less-gap {
	margin-left: -.5rem;
	margin-right: -.5rem;
}

.less-gap>* {
	padding-left: .5rem;
	padding-right: .5rem;
}

.content {
	width: 100%;
}

.font-bold {
	font-weight: var(--font-bold);
}

.align-right {
	margin-left: auto;
}

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

.text-uppercase {
	text-transform: uppercase;
}

.font-smaller {
	font-size: 80%;
}

.row {
	row-gap: 2rem;
}

.row.less-gap {
	row-gap: 1rem;
}

@media all and (min-width: 75em) {
	.full-container {
		padding: 0 2rem;
	}

	blockquote {
		padding: 2rem
	}
}

.cm-edit {
    margin-bottom: .5rem;
}

.cm-edit img {
    width: 30px;
}

/* Google Translate */
.goog-te-gadget .goog-te-combo {
	margin: 0 0 1rem !important;
	padding: 0.75rem;
	border: none;
	border-right: 0.5rem solid #fff;
	font-weight: var(--font-medium);
	width: 100%;
    border-radius: 10px;
}

/* Layout */
.content-container,
.container.pad-side{
	padding: 0 1rem;
}

.container.pad-side {
	margin: 0 1rem;
}

ie-query {
	min-height: unset!important;
}

@media all and (min-width: 48em) {

	.content-container,
	.container.pad-side {
		padding: 0 5%;
		width: auto;
	}
}

@media all and (min-width: 62em) {
	.container.pad-side {
		margin-top: 3rem;
	}
}

/* show and hide on different screen sizes */
.mobile-only {
	display: block;
}

.desktop-only {
	display: none;
}

@media all and (min-width: 62em) {
	.desktop-only {
		display: block;
	}

	.mobile-only {
		display: none;
	}
}

/* BUTTON & LINKS */
a {
	transition: all .3s ease-in-out;
	color: var(--primary);
}

a:hover,
a:focus {
	filter: brightness(0.9)
}

.btn {
	display: block;
	width: fit-content;
	font-weight: var(--font-semibold);
	padding: .5rem 1.25rem;
    border-radius: 100px;
}

.btn-primary {
    background-color: var(--primary);
    color: white!important;
}

.btn-accent-1 {
    background-color: var(--accent1);
    color: var(--dark-font-color)!important;
}

.btn-red {
    background-color: #EC4029;
    color: white!important;
}

.btn-link {
    color: var(--primary);
    font-weight: var(--font-bold);
}

.btn-link-white {
    color: white;
}

/* INPUT FIELDS */
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;
}

.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: 0.75rem 1rem;
    border-radius: 10px;
}

textarea {
	min-height: 150px;
	font-family: var(--body-font);
}

input[type="submit"] {
	font-weight: var(--font-medium);
	background: var(--secondary);
	color: white;
	border: 0;
	cursor: pointer;
    border-radius: 10px;
	padding: .5rem 1.25rem;
	-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;
}

.contact-form-button {
    margin-top: 1rem;
}

.input-field {
	margin-bottom: 1rem;
}

.input-field label {
	margin-bottom: .5rem;
	display: block;
}

.input-row {
    display: flex;
    gap: 1rem;
}

.input-row .input-field {
    width: calc(50% - .5rem);
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    transition: 0.5s;
    padding: 0.75rem 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border-radius: 10px;
	border: solid 1px #e4e4e4;
}

.custom-select-wrapper i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--secondary);
}

#schools-dropdown {
	background-color: white;
    border: none;
    color: #666666;
    border-radius: 10px;
}

#schools-dropdown option {
    color: #000000;
}

.schools-select .custom-select-wrapper {
	flex: 1;
}

.schools-select button {
    color: var(--primary);
	border-radius: 50%;
	border: 1px solid var(--primary);
	-webkit-appearance: none;
    appearance: none;
	cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
	padding: 0;
	margin: 0;
}

.schools-select button i {
	color: var(--primary);
}

/* Alerts */
#popup-container .modal-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    margin: 0 auto;
}

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

#bannerAnchor {
    font-size: .9rem;
    color: var(--primary-accent);
}

.banner-alert-wrapper p {
    margin: .5rem 0;
}

@media (min-width: 62em) {
    #popup-container .modal-content {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Table Styles */
.editor-table-wrapper {
	width: 100%;
	overflow-x: auto;
}

.table,
.editor-table,
.editor table {
  margin: 0 0 2rem;
  overflow-x: auto;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.table thead th a,
.editor table thead th a {
	color: white;
}

.editor-table th a,
.editor table th a {
	color: unset;
}

.table th a:hover,
.table th a:focus,
.editor-table th a:hover,
.editor-table th a:focus, 
.editor table th a:hover,
.editor table th a:focus {
	text-decoration: underline;
}

.table.bell-schedule {
	box-shadow: none;
}

.table table,
.editor-table,
.editor 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,
.editor-table td,
.editor-table th,
.editor table td,
.editor table th {
  padding: 10px 15px;
	width: auto!important;
}

.table table td,
.editor-table td,
.editor table td {
	border: none!important;
  border-right: 1px solid #F7F6F4!important;
  width: auto!important;
}

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

.table table thead th,
.editor-table th,
.editor table th {
	border: none!important;
  border-right: 1px solid #F7F6F4!important;
  color: #ffffff;
  background: var(--primary-brand);
}

.table table thead th > * {
  color: #ffffff;
}

.table table thead th,
.editor-table th,
.editor table th{ 
  color: #ffffff!important;
  background: var(--primary)!important;
}

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

.table h3,
.editor-table h3,
.editor table h3 {
	margin: .5rem 0;
}

.table img,
.editor-table img,
.editor table img {
	width: 100%;
}

.editor-table th,
.editor-table th:nth-child(even),
.editor table th, 
.editor table th:nth-child(even)  {
	color: #000;
}

.editor-tableCell {
	border-color: #F0F0F0!important;
}

/* Lexical */
.editor-table tr:nth-child(odd) {
	background: white;
}

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

/* Collapsible box - CK editor */
.collapsible-box {
	width: 100%;
	margin-bottom: 1rem;
}

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

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

.collapsible-box-title {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: .5rem;
	margin: 0;
	cursor: pointer;
    border-radius: 10px;
}

.collapsible-box-title i {
	margin-right: .5rem;
}

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

/* Collapsible boxes - lexcial */
.editor details summary {
    background-color: white;
    display: flex;
    align-items: center;
    padding: .5rem;
	margin: 0;
	cursor: pointer;
    transition: all .3s ease-in-out;
    border-radius: 10px;
}

.editor details summary h3 {
    margin: 0;
}

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

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

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


/* Subpage Template */
.page-content {
	padding: 0;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    font-weight: var(--font-semibold);
}

.page-title {
	color: white;
	margin-bottom: 1rem;
	position: relative;
    z-index: 5;
}

.title-bg {
	background-color: var(--secondary);
	background-size: cover;
    background-position: center;
    overflow: hidden;
    color: white;
}

.page-title-text {
	width: fit-content;
	margin: auto;
	padding: 2rem 1rem 2.5rem;
	z-index: 11;
	position: relative;
    text-align: center;
}

.page-title-text h1 {
    font-size: 2rem;
}

.page-title-text p {
    font-style: italic;
    margin-top: .5rem;
}

.page-template>.row {
	margin-left: 0;
	margin-right: 0;
}

.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: .5rem;
}

.page-content h2, 
.page-content h3,
.page-content h4, 
.page-content h5 {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.page-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.page-content ul {
	list-style: unset;
	padding-left: 1rem;
}

.side-container {
	padding: 0 1rem;
}

.editor figure {
	margin: 0;
}

.editor figure a {
	display: block;
	width: fit-content;
}

.editor img {
	border-radius: 10px;
}

.editor :first-child {
	margin-top: 0;
}

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

.page-content-inner ul,
.page-content-inner ol {
    list-style: revert;
    line-height: 1.8;
}

.page-content-inner ul {
    padding-left: 1rem;
}

.page-content-inner .editor-nested-listitem::marker {
    content: none;
}

.editor-nested-listitem {
    padding-left: 1rem;
}


/* Responsive Iframe for Embed Videos */
.editor iframe {
    border: none
}
.responsive-iframe {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embedly-card-hug {
    position: relative !important;
    padding-bottom: 56.25% !important;
    height: 0;
    max-width: 100% !important;
}

.embedly-card-hug iframe,
.responsive-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute !important;
    min-height: unset;
}

@media (min-width: 62em) {
	.page-title {
		margin-bottom: 0;
	}

	.page-content {
		padding: 2rem 0 0 2rem;
	}

	.side-container {
		padding: 0 7.5% 0 0;
	}
}

@media (min-width: 75em) {
	.page-title-text {
		padding-top: 4.5rem;
        padding-bottom: 4.5rem;
		max-width: 80%;
	}

	.side-container {
		padding: 0 7.5% 0 0;
	}

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

	.page-content.no-side-nav {
		padding: 1rem 0 2rem;
	}
}

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

/* Side Navigation */
.sidebar {
  background: white;
  color: var(--dark-font-color);
  padding: 0.5rem 0;
}

.sidebar-wrapper {
	height: fit-content;
	background-color: white;
	border-radius: 10px;
}

.sidebar-wrapper a {
  color: var(--dark-font-color);
}

.nav-secondary {
  display: none;
  margin-top: .5rem;
}

.cookie a {
  display: flex;
  color: var(--secondary);
  align-items: center;
  gap: .5rem;
  font-weight: var(--font-semibold);
}

.secondary-nav-item {
  margin-bottom: 0.75rem;
  transition: all .3s ease;
  width: fit-content;
}

.secondary-nav-item:hover,
.secondary-nav-item.active {
  font-weight: var(--font-semibold);
  color: var(--primary);
}

.secondary-nav-item.active a {
  color: var(--primary);
}

.cookie:hover a,
.cookie:focus a,
.secondary-nav-item:hover a,
.secondary-nav-item:focus a {
  color: var(--accent2);
  filter: none;
}

.nav-secondary-ul {
  margin: .5rem 0 0 .5rem;
}

.current-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

@media (min-width: 62em) {
  .sidebar {
    padding: 3rem 2rem 2rem 3rem;
    margin: unset;
    height: fit-content;
    min-height: 300px;
    position: sticky;
    top: 0;
    border-radius: 0 0 10px 0;
  }

  .sidebar-wrapper {
    padding: 0;
  }
  .nav-secondary {
    display: block !important;
    margin: unset;
  }

  .nav-secondary-ul {
    margin: 1rem 0 0 .5rem;
  }

  .current-page {
    display: none;
  }
}

/* News Article, Event Article*/
.article-template .change-font-size {
	margin-top: 1rem;
}
.article-title {
    margin-bottom: .75rem;
}

.article-seo-image {
    margin-bottom: 1rem;
}

.recent-item {
    margin-bottom: .75rem;
    display: block;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 10px;
	color: var(--dark-font-color);
}

.recent-item h4 {
    font-size: 1rem;
}

.recent-wrapper {
    margin-bottom: 2rem;
}

.recent-wrapper h3 {
    color: var(--dark-font-color);
}

.page-content-inner .back-link {
    margin-bottom: 1rem;
    display: block;
    font-weight: var(--font-semibold);
    text-decoration: none;
    width: fit-content;
}

.article-template .publish-date {
    color: var(--dark-grey);
	font-weight: var(--font-medium);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.article-template .page-content {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 62em) {
    .recent-wrapper {
        margin-top: 2rem;
    }

    .page-content .news-archive-item {
        padding: 1.5rem;
    }
}

/*News Archive*/
.news-archive a {
    text-decoration: none;
	display: block;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-list-item {
    background: white;
    border-radius: 10px;
}

.news-list h3 {
	margin-top: 0;
}

.news-list .news-desc {
	color: var(--dark-font-color);
	display: none;
}

.news-archive .custom-select-wrapper {
	margin-bottom: 1.5rem;
    width: fit-content;
}

/* Landing Page */
.landing-wrapper {
    margin-bottom: 4rem;
}

.page-content .landing-link {
    padding: 3rem 2rem;
    position: relative;
    text-decoration: none;
    height: 100%;
	background-color: white;
    justify-content: flex-start;
    color: var(--dark-font-color);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.landing-link .landing-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-link .landing-title h3 {
    display: block;
    position: relative;
    margin: 0;
    transition: all 0.2s ease;
}

header, .page-content-inner {
	position: relative;
	z-index: 10;
}

.page-content-inner {
	z-index: 9;
}

.faded-circle {
	border-radius: 50%;
	background: rgba(36, 103, 46, 0.20);
	filter: blur(150px);
	width: 500px;
    height: 500px;
    aspect-ratio: 1 / 1;
    position: absolute;
    right: 0;
    top: 0;
	z-index: 1;
}

/* Modal */
/* General Styling */
body.lb-disable-scrolling {
	overflow: hidden;
}

.main-content-wrapper {
	margin: auto;
}

.modal-trigger {
	cursor: pointer;
}

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

.modal-info {
	margin: 0 auto;
    width: 90%;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    padding: 2rem 1rem;
	max-height: 85dvh;
    background-color: var(--light-grey);
    color: var(--dark-font-color);
    border-radius: 10px;
}

.modal-wrapper .close-icon {
	font-size: 1.5rem;
	position: sticky;
	top: 0;
	left: 100%;
	cursor: pointer
}

.modal-info iframe {
	display: block;
	margin: auto;
	width: 100%;
	border: none;
	height: 80dvh;
}

.form-modal .modal-info {
	background-color: white;
	box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
	padding: 0;
	top: 50%;
}

.form-close {
	color: white;
}

.form-link {
	color: var(--accent-3);
}

.page-template .form-title {
	margin: 0;
	color: white;
}

.close-icon-wrapper {
	position: absolute;
	z-index: 100;
	top: 0;
	color: var(--light-grey);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 2rem;
}

@media (min-width: 62em) {
	.modal-info {
		top: 50%;
        transform: translateY(-50%);
        padding: 2rem;
		width: 60%;
	}

	.form-modal .modal-info {
		width: 50%;
	}
}

/* Custom Styling for Useful Links Modal */
.usefullinks-modal .modal-info,
.quicklinks-modal .modal-info {
	overflow: auto;
}

.usefullinks-modal .useful-links-wrapper,
.quicklinks-modal .useful-links-wrapper{
	display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
}

.usefullinks-modal .service.service-link,
.quicklinks-modal .service.service-link {
	width: calc((100% - 1rem) / 2);
    text-align: center;
    margin-top: 0;
}

.usefullinks-modal .service.service-link a,
.quicklinks-modal .service.service-link a {
    color: var(--dark-font-color);
    padding: 0;
}

.usefullinks-modal .service-label,
.quicklinks-modal .service-label {
    font-size: 1.2rem;
	color: var(--dark-font-color);
}

.usefullinks-modal .service-icon,
.quicklinks-modal .service-icon {
    background-color: white;
}

@media (min-width: 48em) {
    .usefullinks-modal .modal-info,
    .quicklinks-modal .modal-info {
		width: 90%;
        max-width: 1200px;
	}

    .usefullinks-modal .service-links-wrapper,
    .quicklinks-modal .service-links-wrapper {
		row-gap: 2rem;
        column-gap: 2rem;
	}

	.usefullinks-modal .service.service-link,
    .quicklinks-modal .service.service-link {
		width: calc((100% - 5rem) / 6);
	}
}


/* Header */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding-top: .5rem;
	padding-bottom: .5rem;
	background-color: white;
}

.logo {
	color: var(--dark-font-color);
}

.logo img {
	width: auto;
	object-fit: contain;
	height: 60px;
}

.top-header {
    display: flex;
    gap: 1rem;
    align-items: center;
	justify-content: center;
	padding: .75rem 1.5rem;
}

.top-header span {
	display: none;
}

.top-header a {
	color: var(--light-grey);
	font-size: .9rem;
	font-weight: 300;
}

.top-header i {
	color: white;
	font-size: 1rem;
}

.top-header .contact-link {
	position: relative;
	padding-right: 1rem;
}

.top-header .contact-link::after {
	content: "";
	background-color: var(--light-grey);
	height: 80%;
	width: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.nav-wrapper a {
    color: var(--dark-font-color);
	font-family: Poppins, sans-serif;
}

.nav-link .add-icon {
    color: var(--green);
}

.main-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.nav-link a:hover,
.nav-link a:focus {
	color: var(--green);
}

.main-dropdown-menu a:hover,
.main-dropdown-menu a:focus {
	color: var(--green);
}

/* Header - collapsible menu */
.main-nav {
    display: none;
}

.collapsible-menu {
    display: none;
    font-size: 1rem;
    min-height: 100dvh;
    padding: 1rem 1rem 1.5rem;
    width: 100%;
    background: white;
    color: var(--dark-font-color);
    flex-direction: column;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
	z-index: 100;
}

.collapsible-menu .social-links {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: 1rem;
}


.collapsible-contact-wrapper {
	margin-top: 1rem;
}
.collapsible-menu a:not(.social-link) {
    color:  var(--dark-font-color);
}

.collapsible-menu a:not(.social-link):hover, 
.collapsible-menu a:not(.social-link):focus {
    color: var(--primary);
}

.collapsible-menu address {
    margin-bottom: .5rem;
}

.collapsible-menu .contact-row:last-of-type {
    margin-bottom: 1rem;
}

.links-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.links-swiper {
    margin-bottom: 1rem;
    margin-right: 0;
    width: 100%;
}

.cm-edit {
    margin-bottom: .5rem;
}

.cm-edit img {
    width: 30px;
}

.sub-li {
	margin-bottom: .5rem;
}

@media (max-width: 1199px) {
	.desktop-primary-nav {
		display: none;
	}

	.menu-trigger.active {
		position: absolute;
		color: var(--primary);
		top: 1rem;
		right: 1rem;
		z-index: 1000;
	}

	.logo h3 {
		font-size: 1.1rem;
	}

	.logo img {
		height: 50px;
	}

    .main-dropdown-menu {
        margin: 0;
        gap: 1rem;
    }

	.mobile-main-nav {
		margin-bottom: 1rem;
	}

	.mobile-main-nav .main-dropdown .main-dropdown-menu {
		display: block;
		transform: scaleY(0);
		transition: transform .3s ease-in-out;
		transform-origin: top center;
		height: 0;
	}

	.mobile-main-nav .main-dropdown.show .main-dropdown-menu {
		transform: scaleY(1);
		height: auto;
		padding: 1rem 0;
		display: flex;
		flex-direction: column;
		margin-left: .5rem;
	}

	.mobile-main-nav a {
		font-weight: var(--font-semibold);
	}

	.mobile-main-nav .nav-link {
		justify-content: space-between;
	}

	.mobile-main-nav .main-nav-ul {
        margin: 2rem 0;
	}

	.mobile-main-nav .main-li {
		margin-bottom: 1rem;
	}

	.mobile-main-nav .main-li:last-of-type {
		margin-bottom: 0;
	}

	.add-icon-mobile {
		width: 20%;
    	text-align: right;
        color: var(--primary);
	}
}

@media (max-width: 991px) {
	/* Mobile Main Nav */
	.menu-trigger {
		display: block;
		cursor: pointer;
		position: absolute;
		top: 4.3rem;
		right: 1rem;
		color: var(--primary)!important;
		font-size: 1.5rem!important;
	}

}

@media (min-width: 62em) {
	.logo img {
		height: 80px;
	}

	.header-row {
		padding-top: 0;
		padding-bottom: 0;
	}

	.top-header {
		position: absolute;
		right: 0;
		top: 0;
		display: flex;
		gap: 1rem;
		align-items: center;
		border-radius: 0 0 0 20px;
		padding: .75rem 1.5rem;
	}

	.top-header span {
		display: block;
	}
}

@media all and (min-width: 75em) {
	.logo {
		padding: .5rem 0;
	}

    .mobile-main-nav {
        display: none;
    }

	.collapsible-menu {
		top: 4rem;
		left: auto;
		right: 0;
		z-index: 500;
		font-size: 1rem;
		height: auto;
		padding: 1rem 1.5rem 1.5rem;
		width: 30%;
		background: #ead1d5;
		min-height: unset;
		border-radius: 10px 0 0 10px;
	}

	.nav-wrapper {
        margin-top: 4rem;
        padding-bottom: 1rem;
    }

	#nav-primary {
		display: none;
		margin: 0;
		position: absolute;
		top: 0;
		left: auto;
		right: 0;
		z-index: 100;
		width: 26rem;
		height: fit-content;
		max-height: 1200px;
		min-height: fit-content;
		overflow-y: scroll;
		border-radius: 0 0 0 10px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}

	.main-nav-ul {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
		margin-bottom: 0;
	}

	.main-nav-ul.desktop {
		display: flex;
	}

	.main-nav-ul>li {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		transition: all .2s ease-in-out;
	}
 
	.main-nav-ul i {
		transition: all .2s ease-in-out;
	}

	.main-dropdown-menu {
        transform: scaleY(0);
        transition: all .3s ease;
        transform-origin: top;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 80;
        background: var(--light-grey);
        border-radius: 10px;
        padding: 1rem;
        min-width: 300px;
        opacity: 0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .main-dropdown-menu.multi-col {
        column-count: 2;
        min-width: 500px;
        display: inline;
		gap: 1rem;
    }

    .main-dropdown:last-of-type .main-dropdown-menu {
        left: unset;
        right: 0;
    }

    .main-dropdown:hover .main-dropdown-menu {
        transform: scaleY(1);
        opacity: 1;
    }

}

.search-api-form {
	position: relative;
}

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

.search-api-form .input-field {
	margin-bottom: 0;
}

.input-field input[type="text"].search-box {
	margin-bottom: 0;
	border-radius: 10px;
	border: none;
	padding: .5rem 1rem;
	background-color: var(--medium-grey);
	color: var(--secondary);
}

.input-field input[type="text"].search-box::placeholder {
	color: var(--secondary);
	font-weight: var(--font-medium);
	font-size: .9rem;
}

.modal-info .input-field input[type="text"].search-box {
    background-color: white;
}

#search-button {
	cursor: pointer;
	border: none;
	background: transparent;
	position: absolute;
	right: 0.5rem;
	top: 52%;
	transform: translateY(-50%);
}

#search-button i {
	color: var(--secondary);
	font-size: 1.5rem;
}

.service span {
	color: var(--medium-grey);
	font-size: .75rem;
	text-align: center;
	display: block;
	line-height: 1.5;
	margin-top: 0.5rem;
	transition: all .3s ease-in-out;
}

.service a:hover,
.service a:focus {
	filter: none;
	color: var(--dark-font-color);
}

.service a:hover span,
.service a:focus span {
	color: var(--dark-font-color);
}

.service-icon {
	font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    background: var(--light-grey);
    border-radius: 10px;
    color: var(--primary);
}

.service-icon img {
    width: 2.5rem;
    object-fit: contain;
}

.service-label {
	text-align: center;
	display: block;
    margin-top: .25rem;
	color: var(--dark-font-color);
}

.menu-trigger {
	color: white;
	cursor: pointer;
}

@media (min-width: 48em) and (max-width: 99em) {
	.service-icon {
		font-size: 2rem;
	}
}


/* Footer */
footer {
	padding-top: 2rem;
    padding-bottom: 0;
	position: relative;
	background-color: var(--light-grey);
}

.footer-pattern-1 {
	position: absolute;
	right: 0;
	top: -3rem;
	width: auto;
}

.footer-pattern-2 {
	position: absolute;
	bottom: 0;
	left: 0;
}

footer a {
    color: var(--primary);
	font-weight: var(--font-medium);
}

footer .contact-block {
	margin-bottom: 1rem;
}

.footer-logo {
    display: block;
}

.footer-logo img {
    width: 120px;
    margin: 0 auto;
    display: block;
}

footer h3 {
	font-weight: var(--font-medium);
	margin-top: 0;
}

.footer-col-1,
.footer-col-2, 
.footer-col-3 {
    text-align: center;
}

address {
    font-style: normal;
}

footer .contact-wrapper {
    gap: 1rem;
}

.phone-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .social-wrapper {
    justify-content: center;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--primary);
	background-color: white;
	border: 1px solid var(--primary);
    border-radius: 50%;
    aspect-ratio: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: all .3s ease-in-out;
}

.social-link:hover,
.social-link:focus {
    background-color: var(--primary);
    color: white;
}

.footer-nav {
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-nav a {
    color: var(--dark-font-color);
}

.footer-col-4 img {
    display: none;
}

footer .contact-row {
    margin-bottom: .5rem;
}

.copyright {
    padding-top: 1rem;
	padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .5rem;
    color: #666666;
}

.footer-bottom-links a {
    color: var(--primary);
}

.ie-link a {
    font-weight: var(--font-medium);
    color: var(--primary);
}

@media (min-width: 62em) {
    .copyright {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-nav li {
        width: calc((100% - 1rem) / 2);
    }
}

@media (min-width: 75em) {
	.footer-pattern-1 {
		top: -14rem;
	}

    footer h2 {
        font-size: 1.375rem;
		margin-bottom: .5rem;
    }

    footer h3 {
        font-size: 1.2rem;
    }

    .schools-select {
        margin: 0;
    }

	.footer-col-1 {
		display: flex;
		gap: 1rem;
	}

    .footer-col-1, .footer-col-2, .footer-col-3 {
        text-align: left;
        margin-bottom: 2rem;
    }

	.footer-col-2 {
		padding: 0 2rem;
	}

    footer .social-wrapper {
        justify-content: flex-start;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .social-link i {
        font-size: 1.1rem;
    }
}


/* HOME */
/* Video BANNER */
.banner-wrapper {
	position: relative;
	margin-bottom: 0;
}

.banner_video {
    position: relative;
    overflow: hidden;
    height: 0;
    width: 100%;
    padding-top: 56.25%;
}

.banner_video iframe {
	  position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 120%;
    transform: translate(-50%, -50%);
}


.banner_img {
	width: 100%;
  aspect-ratio: 1920/700;
}

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

/* Carousel Banner */
.carousel-swiper .swiper-slide {
  height: auto;
}
.carousel-slide_row {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel-image {
  aspect-ratio: 1140/660;
  order: -1;
}

.carousel-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1140/660;
}

.carousel-content {
  background-color: var(--secondary);
  color: white;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel-content h2 {
	line-height: 1.3;
}

.swiper-navigation-icon {
  display: none;
}

.carousel-button-prev,
.carousel-button-next {
  color: white;
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-button-next {
  top: unset!important;
  left: unset!important;
  right: 1.5rem!important;
  bottom: 1rem!important;
}

.carousel-button-prev {
  top: unset!important;
  left: unset!important;
  right: 5rem!important;
  bottom: 1rem!important;
}

@media all and (min-width: 62em){
	.banner_video {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 0;
		padding-top: 37.5%;
	}
	
	.banner_video iframe {
		width: 100%;
		height: 166.667%;
	}

  .carousel-slide_row {
    flex-direction: row;
  }

  .carousel-content {
    width: 40%;
    height: auto;
  }

  .carousel-image {
	width: 60%;
	height: auto;
  }

  .carousel-content {
    padding: 5%;
    order: 1;
    justify-content: center;
  }

  .carousel-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .carousel-image {
      aspect-ratio: 1140/660;
      order: 2;
  }

  .carousel-image img {
    aspect-ratio: 1140/660;
    height: 100%;
  }

  .carousel-button-next {
    right: calc(60vw + 1rem)!important;
    bottom: 1rem!important;
  }

  .carousel-button-prev {
    right: calc(60vw + 4rem)!important;
    bottom: 1rem!important;
  }
	
}

@media all and (min-width: 75em) {
  .carousel-button-next {
    right: calc(60vw + 2rem)!important;
    bottom: 2rem!important;
  }

  .carousel-button-prev {
    right: calc(60vw + 5rem)!important;
    bottom: 2rem!important;
  }

  .carousel-content p {
    display: block;
  }
}


/* Home Quicklinks */
.quicklink-section {
	background-color: var(--light-grey);
	margin-bottom: 0;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.quicklink {
    display: flex;
    flex-direction: column;
    color: var(--dark-font-color);
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 20px;
	aspect-ratio: 270 / 200;
    justify-content: center;
	gap: 1rem;
}

.quicklink-item:nth-of-type(odd) .quicklink {
	background-color: #70071C;
	color: white;
}

.quicklink-item:nth-of-type(even) .quicklink {
	background-color: #A7B1B7;
	color: var(--dark-font-color);
}

.quicklink i {
	font-size: 1.5rem;
}

.quicklink span {
	color: var(--dark-font-color);
	font-weight: var(--font-semibold);
}

.quicklink-item:nth-of-type(odd) .quicklink span {
	color: white;
}

@media (min-width: 99em) {

	.quicklink i {
		font-size: 1.75rem;
	}
}

/* Home News */
.news {
	background-color: var(--light-grey);
	padding-bottom: 2rem;
}
.home-section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.news-item a {
  color: var(--dark-font-color);
  display: block;
  border-radius: 10px;
  height: 100%;
  background-color: white;
}

.page-content .news-item a {
  text-decoration: none;
}

.news-item .cover-img,
.news-item .cover-img img {
  border-radius: 10px;
  aspect-ratio: 415/200;
}

.news-item .cover-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.news-item .no-cover-img {
  background-color: #dfdfdf;
}

.news-item .no-cover-img img {
  aspect-ratio: unset;
  object-fit: contain;
  width: 30%;
  margin: auto;
}

.news-content {
  border-radius: 0 0 10px 10px;
  padding: 1rem;
}

.news-content .format-card-longer {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-title {
  font-weight: var(--font-semibold);
  margin: 0 0 .5rem;
  line-height: 1.4;
}

.news .btn-link.mobile-only {
  margin-top: 1rem;
  display: block;
}

.btn-link.desktop-only {
  display: none;
}

.pager {
  width: 100%;
}

.page-content .pager a {
  text-decoration: none;
}

@media(min-width: 62em) {
  .home-section-heading {
      justify-content: space-between;
  }

  .news .btn-link.mobile-only  {
    display: none;
  }

  .btn-link.desktop-only {
    display: block;
  }

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

/* Home CTA */
.cta-content {
	padding: 1.5rem;
}

.cta {
	display: flex;
	flex-direction: column;
}

.cta-image {
	aspect-ratio: 960/480;
}

.cta-image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 960/480;
}

@media(min-width: 62em) {
	.cta {
		flex-direction: row;
		align-items: center;
	}

	.cta-image {
		width: 50%;
	}

	.cta-content {
		flex: 1;
		padding: 2rem;
	}

	.cta-content-only {
		padding: 5%;
	}

	.cta-image,
	.cta-image img {
		aspect-ratio: unset;
	}
}

@media(min-width: 75em) {
	.cta-content {
		flex: 1;
		padding: 2rem 5vw 2rem 3rem;
	}

	.cta-image {
		aspect-ratio: 960/480;
	}

	.cta-image img {
		aspect-ratio: 960/480;
	}
}

/* Home Events */
.events {
	padding-top: 2rem;
}
.event-box {
	background-color: white;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 1.5rem;
    padding: 1.5rem;
	color: var(--dark-font-color);
	height: 100%;
}

.event-month {
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    text-align: center;
    line-height: 1.2;
}

.event-day {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
	font-weight: var(--font-bold);
}

.event-title {
	margin-bottom: .25rem;
}

.event-all-day {
	font-weight: var(--font-medium);
}

/* Land Acknowledgement */
.land-ack {
    position: relative;
	margin-bottom: 0;
}

.landack-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    padding-top: 5%;
    padding-bottom: 5%;
	position: relative;
}

.landack-bg::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}
.landack-text {
	position: relative;
	z-index: 1;
}

.landack-text h2 {
	margin-top: 0;
}

@media (min-width: 62em) {
	.landack-text {
		max-width: 80%;
		margin: auto;
	}

	.landack-text p {
		font-size: 1.2rem;
	}
}


/* Content Boxes */
.content-boxes {
  margin-bottom: 2rem;
}

.content-boxes .row {
    row-gap: 1rem;
}

.content-box {
  background-color: white;
  height: 100%;
  border-radius: 10px;
}

.box-img {
  width: 100%;
  aspect-ratio: 340 / 240;
  border-radius: 10px;
}

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

.content-box h3 {
  margin: 0;
  font-weight: var(--font-medium);
}

.content-box p {
  margin-top: .5rem;
  margin-bottom: 0;
}

.content-box .btn {
    margin-top: 1rem;
    text-decoration: none;
    color: white;
}

.content-box-text {
    padding: 1rem;
}

@media (min-width: 75em) {
    .content-box-text {
        padding: 1rem 1.5rem 1.5rem;
    }
}

/* Sidebar Content */
.sidebar-content-box {
	border-radius: 10px;
	padding: 1rem;
	background-color: white;
	margin-bottom: 1rem;
}

.sidebar-image {
	padding: 0;
}

.sidebar-image img {
	border-radius: 10px;
	aspect-ratio: 3/2;
}

/* Transportation Page */
.flex-row-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
}

#transportation-column-container {
	align-items: flex-start;
}

.bus-container-route {
	height:105px;
	margin:1vh;
	padding:1vw;
	background: white;
	border-radius: 0 10px 10px 0;
}
h5.bus-route-name {
	font-size: 1.1rem;
	font-weight: 500;
}
.bus-on-time {
	border-left: 10px solid #7BBE2E;
}

.bus-on-time h5 {
	padding-top: 6px;
}
.status-on-time {
	color:#7BBE2E!important;
	font-weight:600;
	font-size: 1.2rem;
	padding-top: 6px;
}
.bus-cancelled {
	border-left: 10px solid #E05B2A;
}
.status-cancelled {
	color: #E05B2A!important;
	font-weight:600;
	font-size: 1.2rem;
}
.bus-delayed {
	border-left: 10px solid #F5B61F;
}
.status-delayed {
	color: #F5B61F!important;
	font-weight:600;
	font-size: 1.2rem;
}
.bus-grid-row {
	display: grid;
	grid-template-columns: 20% 20% 5% 20% 20% 15% 
}

.last-updated {
	font-size: 1rem;
}
.tooltip {
	display: flex;
	align-items: center;
}

.tooltip i {
	margin-right: 10px;
}

#transportation-container, 
#transportation-container * {
    box-sizing: border-box;
}

#transportation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

#transportation-container h5 {
    padding-top: 0;
}

#transportation-container .bus-area {
    width: 100%;
}

#transportation-container .bus-container-route {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
}

#transportation-container .bus-status {
    margin-top: .5rem;
    margin-bottom: 0;
}

.transportation-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

#search-buses {
    width: 100%;
    padding: .75rem 1rem;
}

#select-area {
    border: solid 1px #e4e4e4;
}

#search-buses::placeholder {
  color: black;
}


.checkbox-cancelled {
    color: #E05B2A;
    font-weight: 600;
}

.checkbox-cancelled label {
    margin-left: 6px;
}

.bus-area h3 {
    margin-bottom: .5rem;
}

.transportation-filters > div {
    margin-bottom: 0;
}

.fa-bus-simple {
  position: relative;
}


.bus-icon-cancelled::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #E05B2A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
}

.bus-icon-delayed::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #F5B61F;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
}

@media (max-width: 62em) {
	.flex-row-between {
		flex-wrap: wrap;
	}
	.bus-container-route {
		height:auto;
		width: 100%;
	}
	.bus-container-route h5 p {
		font-size: 0.9rem !important;
	}
	.bus-route-name {
		font-size:1rem;
	}
	.last-updated {
		font-size:1rem;
	}
	.bus-pad-side {
		padding-left:10px;
		padding-right:10px;
	}
	#transportation-column-container {
		display:flex;
		flex-direction:column;
	}
}

@media (min-width: 62em) {
     #transportation-container .bus-container-route {
        width: calc(50% - .5rem);
    }

    .transportation-filters > div {
        width: calc(50% - .5rem);
    }
}

/* Staff Directory */
.staff-directory .input-field {
    margin-bottom: 1rem;
}
.staff-item img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.staff-contact a {
    color: var(--dark-font-color);
    text-decoration: none;
}

.staff-contact a:hover,
.staff-contact a:focus {
    text-decoration: underline;
    color: var(--primary);
}

.staff-contact {
    margin-bottom: .5rem;
}

.search-row {
    position: relative;
}

.search-row label {
    display: none;
}

.search-row i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .5rem;
}

.search-bar-wrapper {
    margin-top: 4rem;
}

.input-field input[type="text"].search-staff {
    width: 100%;
    transition: 0.5s;
    padding-left: 2.5rem;
	background: white;
}


.contact-form-element h1 {
    margin-bottom: .5rem;
}
@media (min-width: 99em) {
    .staff-item {
        flex-basis: calc(100%/6);
        max-width: calc(100%/6);
    }
}

#popup-container .translate-button {
    position: absolute;
    z-index: 1000;
}

#popup-container {
    z-index: 499;
}


/* Twitter menu dropdown */
.twitter-menu { position: relative; display: inline-flex; }

.twitter-links {
  position: absolute;
    top: 100%;
    left: -.5rem;
    margin-top: .5rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
    z-index: 5;
	text-align: left;
}

/* invisible bridge so the hover doesn't drop in the gap */
.twitter-links::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}

/* reveal on hover or keyboard focus */
.twitter-menu:hover .twitter-links,
.twitter-menu:focus-within .twitter-links,
.twitter-menu.is-open .twitter-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.twitter-links .twitter-link {
  display: block;
  padding: .5rem;
  font-size: .9rem;
  color: #8a1c24;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s ease;
}

.twitter-links .twitter-link:first-of-type {
	border-radius: 5px 5px 0 0;
}

.twitter-links .twitter-link:last-of-type {
	border-radius: 0 0 5px 5px;
}

.twitter-links .twitter-link:hover,
.twitter-links .twitter-link:focus-visible { 
	background: #f5eaeb; 
	outline: none; 
}

.twitter-links .twitter-link {
	font-weight: var(--font-medium)!important;
}