/* CSS Document */
/**************************************/
/**************************************/
@font-face {
  font-family: 'Miriam Libre';
  src: url(../fonts/MiriamLibre-VariableFont_wght.ttf);
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-VariableFont_wdth,wght.ttf');
  font-stretch: 100%;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf');
  font-style: italic;
  font-stretch: 100%;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --open-sans-font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --miriam-libre-font-family: 'Miriam Libre', system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --gen-white: #ffffff;
  --gen-black: #000000;
  --ptask-green: #53982c;
  --ptask-dark-teal: #00455d;
  --ptask-dark-grey: #6f8090;
  --ptask-light-grey: #c5ccd3;
  --ptask-bright-blue: #007bbc;
  --ptask-red: #b7004c;
  --ptask-pink: #f8dfe5;
  --ptask-off-white: #f2f2f2;
}

/* Utility classes */
.bg-ptask-dark-grey {
  background-color: var(--ptask-dark-grey) !important;
}
.bg-ptask-green {
  background-color: var(--ptask-green) !important;
}
.bg-ptask-bright-blue {
  background-color: var(--ptask-bright-blue) !important;
}
.bg-ptask-red {
  background-color: var(--ptask-red) !important;
}
.bg-ptask-pink {
  background-color: var(--ptask-pink) !important;
}
.text-gen-black {
  color: var(--gen-black) !important;
}
.text-gen-white {
  color: var(--gen-white) !important;
}
.text-ptask-red {
  color: var(--ptask-red) !important;
}
.text-ptask-green {
  color: var(--ptask-green) !important;
}
a.text-ptask-green:hover {
  color: var(--gen-black) !important;
  text-decoration: none;
}
.font-family-miriam {
  font-family: var(--miriam-libre-font-family) !important;
}
.font-weight-semibold {
  font-weight: 600 !important;
}
.border-ptask-dark-teal {
  border-color: var(--ptask-dark-teal) !important;
}
/* Ported from Bootstrap 5 */
.border-2 {
  border-width: 2px !important;
}

/**************************************/
body {
  font-family: var(--open-sans-font-family);
}
.darkest-grey {
  color: #596673;
}
.bg-dark-grey {
  background-color: #6f8090 !important;
}
.dark-grey {
  color: #6f8090;
}
.medium-grey {
  color: #c5ccd3;
}
.bg-medium-grey {
  background-color: #c5ccd3;
}
.border-bottom-medium-grey {
  border-bottom: 1px solid #c5ccd3;
}
.border-top-medium-grey {
  border-top: 1px solid #c5ccd3;
}
.bg-lighter-medium-grey {
  background-color: #d3d9de;
}
.lighter-medium-grey {
  color: #d3d9de;
}
.light-grey {
  color: #f1f2f4;
}
.lightest-grey {
  color: #f2f2f2;
}
.purple-accent {
  color: #8d258a;
}
.yellow-background {
  background-color: rgba(255, 225, 81, 1);
}
.h1,
h1 {
  font-size: 2rem;
  line-height: 2.25rem;
}
.h2,
h2 {
  font-size: 1.35rem;
  line-height: 1.65rem;
}
.h3,
h3 {
  font-size: 1.25rem;
  line-height: 1.45rem;
}
.h4,
h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.h5,
h5 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.h6,
h6 {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
p {
  font-size: 1.1rem;
  line-height: 1.5rem;
}
/*home page*/
.homepage-banner-background {
  /* ptask-dark-teal */
  background-image: linear-gradient(rgb(0 69 93 / 74%)),
    url(../images/banners/woman_at_desk@2x.webp), linear-gradient(var(--ptask-dark-grey));
  background-repeat: no-repeat;
  background-size: cover;
}
.homepage-blue-background {
  background-image: linear-gradient(rgb(0 69 93 / 74%)), linear-gradient(var(--ptask-dark-grey));
}
.purple {
  color: #8d258a !important;
}
.purple-titlebar {
  font-family: var(--miriam-libre-font-family);
  background-color: #8d258a !important;
  color: white;
}
.video_space {
  line-height: 1px;
  font-size: 12px;
}
.header-border {
  border-top: 5px solid black;
}
a.home_icon {
  color: #555555;
  font-size: 30px;
  margin-right: 5px;
  display: inline-block;
}
a.home_icon:hover {
  color: #8d258a;
}
a.btn-assess {
  font-family: var(--miriam-libre-font-family);
  background-color: var(--ptask-green);
  color: var(--gen-white);
  text-decoration: none;
}
.home-question {
  font-family: var(--open-sans-font-family);
  color: var(--ptask-green);
  font-size: 1.25rem;
  font-weight: 600;
}
.home-answer {
  font-family: var(--open-sans-font-family);
  color: #000000;
  font-weight: 300;
  line-height: 2;
}
a.btn-read-more {
  background-color: #ffffff;
  color: var(--ptask-green);
  padding: 0.25em 0.75em;
  text-decoration: none;
  font-size: 1.25rem;
  border: 1px solid #596673;
  font-family: var(--open-sans-font-family);
}
a.btn-assess-level {
  background-color: var(--ptask-off-white);
  color: var(--gen-black);
  padding: 0.1rem 0.75rem 0 0.75rem;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.25rem;
  border: 2px solid var(--ptask-dark-grey);
  font-family: var(--miriam-libre-font-family);
  border-radius: 0;
}
a.btn-assess-level:hover {
  background-color: var(--ptask-red);
  color: var(--gen-white);
  border-width: 2px;
}
.footer-text p {
  font-size: 0.88em;
  margin-top: 1em;
  padding: 0;
}
/* above is home page */
.navy {
  color: #4845b1;
}
.orange {
  color: #ff511b;
}
.border-orange {
  border-bottom: 3px solid #ff511b;
}
.border-green {
  border-bottom: 3px solid #009900;
}
.border-gold {
  border-bottom: 3px solid #cc8a00;
}
.blue {
  color: #007ab3;
}
.green {
  color: rgb(0, 153, 0);
}
.gold {
  color: rgba(204, 138, 0, 1);
}
.purple {
  color: rgb(141, 37, 138);
}
.titles {
  font-family: var(--miriam-libre-font-family);
  font-size: 2.1rem;
  line-height: 2.4rem;
}
.page-title {
  background: var(--ptask-red);
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.page-title h1 {
  font-family: var(--miriam-libre-font-family);
  color: var(--gen-white);
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.assessment-page-content {
  background: #6f8090;
  background: rgba(111, 128, 144, 1);
  width: 100%;
  padding: 0;
  margin: 0;
}
.assessment-titles-section {
  background: #d3d9de;
  background: rgba(211, 217, 222, 1);
  width: 100%;
  height: 60px;
  font-family: var(--miriam-libre-font-family);
  font-size: 19px;
}
.assessment-titles-section ul.list-group {
  background-color: transparent;
  margin: auto;
}
.assess h2 {
  font-size: 1.2em;
  margin: 0.15em 0.25em 0 0.25em;
  line-height: 1.25em;
}
.panel-body {
  line-height: 1.5em;
  padding-left: 2.5em;
}
.panel-group {
  padding: 2em 0 1.5em 0;
}
.panel-title a,
.panel-title a:hover,
h3.panel-title a {
  color: #8d258a;
  text-decoration: none;
}
.panel-heading h3 {
  font-size: 1.3em;
}
.panel-body h4,
.panel-footer h4 {
  font-size: 1em;
  margin-top: 0.25em;
  font-weight: bold;
  margin-bottom: 0.25em;
}
.panel-body ul li {
  line-height: 1.25em;
}
.panel-body a {
  word-break: break-all;
}
.panel-border {
  border-top: 2px solid #333;
}
.list-group-item {
  padding: 0;
  margin: 0.2em 0.5em 0.5em 1%;
  background-color: #c5ccd3;
}
.assess-title {
  font-weight: bold;
  vertical-align: middle;
  font-size: 1.1em;
  margin-top: 0.25em;
}

.assess-level-header {
  color: var(--gen-black);
  font-weight: 400;
  font-size: 1.2rem;
}

.assess-grid {
  font-family: var(--miriam-libre-font-family);
  line-height: 3.2rem;
  background-color: var(--ptask-light-grey);
}
.banner {
  max-width: 558px;
  max-height: 72px;
}
.border-dark-footer {
  border-top: 3px solid #343a40;
}
nav {
  margin-left: 0;
}
.types {
  font-family: var(--open-sans-font-family);
  width: 100%;
  margin: 1em;
  margin-top: 2em;
}
.types p {
  font-size: 1.25em;
  line-height: 1.5em;
  font-weight: 400;
}
.types h2 {
  font-size: 1.75em;
  line-height: 1.25em;
  color: #009900;
  font-family: var(--miriam-libre-font-family);
}
/***************first group of pages************************/
.overview-title {
  font-family: var(--miriam-libre-font-family);
  color: var(--ptask-green);
  font-weight: 400;
}
.overview-intro {
  font-weight: 300;
  line-height: 2rem;
}
.overview-accordion-heading {
  text-transform: uppercase;
  color: var(--ptask-green);
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.45rem;
  font-family: var(--miriam-libre-font-family);
}
.overview-accordion a {
  color: var(--ptask-green);
}

.overview-accordion .card-header h2 button.collapsed:before {
  background-color: var(--ptask-green);
}

.overview-accordion .card-header h2 button.collapsed:hover:before {
  background-color: var(--gen-white);
}

.overview-accordion .card-header h2 button:before {
  background-color: var(--ptask-green);
}

.overview-accordion .card-header h2 button:hover:before {
  background-color: var(--gen-white);
}

.overview-accordion-body p {
  font-size: 1rem;
  font-weight: 300;
}

.path_line_divider {
  background-image: url('../images/Path_Line.png');
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  min-height: 120px;
  height: 100%;
}
.orange-page {
  border-top: 3px solid #ff511b;
  padding-top: 2em;
  margin-top: 2em;
}
.overview-orange h2 {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
}
.ref-orange a {
  font-family: var(--open-sans-font-family);
  color: #ff511b;
  font-weight: 300;
}
.overview-orange p {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
}
.green-page {
  border-top: 3px solid green;
  padding-top: 2em;
  margin-top: 2em;
}

.overview-green h2 {
  color: green;
  font-size: 2em;
  max-width: 450px;
}
.green-page h3 {
  font-size: 1.5em;
  color: green;
  font-family: var(--miriam-libre-font-family);
}
.ref-green a {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  color: green;
}
.overview-green p {
  font-size: 1.3em;
  color: black;
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  line-height: 1.5em;
  padding: 1em 0.5em 1em 0.25em;
  font-weight: 400;
}
.blue-page {
  border-top: 3px solid #007ab3;
  padding-top: 2em;
  margin-top: 2em;
}
.overview-blue h2 {
  color: #007ab3;
  font-size: 2.12em;
  max-width: 452px;
}
.blue-page h3 {
  font-size: 1.5em;
  color: #007ab3;
  font-family: var(--miriam-libre-font-family);
}
.ref-blue a {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  color: #007ab3;
}
.ref-gold a,
.ref-blue a,
.ref-green a,
.ref-orange a,
.word-wrap {
  word-wrap: break-word;
}
.navy {
  color: #4845b1;
}
.overview-blue p {
  font-size: 1.3em;
  color: black;
  font-family: var(--open-sans-font-family);
  line-height: 1.5em;
  padding: 1em 0.5em 1em 0.25em;
  font-weight: 400;
}
.gold-page {
  border-top: 3px solid #cc8a00;
  padding-top: 2em;
  margin-top: 2em;
}
.overview-gold h2 {
  color: #cc8a00;
  font-size: 2.12em;
  max-width: 470px;
}
.gold-page h3 {
  font-size: 1.5em;
  color: #cc8a00;
  font-family: var(--miriam-libre-font-family);
}
.ref-gold a {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  color: #cc8a00;
  font-size: 1em;
}
.overview-gold p {
  font-size: 1.3em;
  color: black;
  font-family: var(--open-sans-font-family);
  line-height: 1.5em;
  padding: 1em 0.5em 1em 0em;
  font-weight: 400;
}
.overviews p {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  color: black;
  font-size: 1.3rem;
  line-height: 1.7rem;
}
.purple-page {
  border-top: 3px solid #8d258a;
  padding-top: 2em;
  margin-top: 2em;
}
.overview-purple h2 {
  color: #8d258a;
  font-size: 2.12em;
  max-width: 470px;
}
.purple-page h3 {
  font-size: 1.5em;
  color: #8d258a;
  font-family: var(--miriam-libre-font-family);
}
.ref-purple a {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  color: #8d258a;
  font-size: 1em;
}
.overview-purple p {
  /*  font-size: 1.3em;*/
  color: black;
  font-family: var(--open-sans-font-family);
  /*    line-height: 1.5em;
    padding: 1em .25em 1em 0em;*/
  font-weight: 400;
}
.navy-page {
  border-top: 3px solid #4845b1;
  padding-top: 2em;
  margin-top: 2em;
}
.overview-navy h2 {
  color: #4845b1;
  font-size: 2.12em;
  max-width: 470px;
}
.navy-page h3 {
  font-size: 1.5em;
  color: #4845b1;
  font-family: var(--miriam-libre-font-family);
}
.ref-navy a {
  font-family: var(--open-sans-font-family);
  font-weight: 300;
  color: #4845b1;
  font-size: 1em;
}
.overview-navy p {
  font-size: 1.3em;
  color: black;
  font-family: var(--open-sans-font-family);
  line-height: 1.5em;
  padding: 1em 0.5em 1em 0.75em;
  font-weight: 400;
}
.panel-title {
  text-indent: -2em;
  padding-left: 2em;
}
.panel-title i {
  text-indent: -2em;
  padding-left: 2em;
}
p.assessment_para {
  padding-top: 1.25em;
  display: block;
  color: #8d258a;
  font-size: 18px;
  line-height: 31px;
}
.assessment_table .thead-dark th {
  height: 36px;
  border: none;
  color: black;
  background: #d3d9de;
}

.thead-light {
  font-family: var(--miriam-libre-font-family);
}

.collapse_image_open {
  background-image: url(../images/03_desktop_arrow-open_icon_30w_30h.png);
  background-repeat: no-repeat;
  background-size: 27px;
}
.collapse_image_close {
  background-image: url(../images/03_desktop_arrow-close_icon_30w_30h.png);
  background-repeat: no-repeat;
  background-size: 27px;
}
.collapse_image_open:hover {
  background-image: url(../images/03_desktop_arrow-open_icon_select_30w_30h.png);
  background-repeat: no-repeat;
  background-size: 27px;
}
.collapse_image_close:hover {
  background-image: url(../images/03_desktop_arrow-close_icon_select_30w_30h.png);
  background-repeat: no-repeat;
  background-size: 26px;
}
span.title {
  padding-left: 2em;
}
.assess {
  background-color: #c5ccd3;
}
.panel-body ul li {
  line-height: 1.25em;
  padding: 0.25em 0;
}
.controls button[data-state='subtitles'] {
  height: 85%;
  text-indent: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #666;
  background: #000;
  border-radius: 2px;
}
.col-xs-1 {
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 5.5%;
}
.pagenav .nav-link {
  color: var(--gen-black);
  font-weight: 600;
}
.pagenav .show > .nav-link,
.pagenav .active > .nav-link,
.pagenav .nav-link.show,
.pagenav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
  background-color: #f1f2f4;
  font-weight: bold;
}
.pagenav .nav-link.dropdown-item {
  color: rgba(0, 0, 0, 0.75);
  font-weight: normal;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
  color: #fff;
  text-decoration: none;
  background-color: #8d258a;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
  color: #fff;
  text-decoration: none;
  background-color: #8d258a;
}

/*needed for dropdown rectangle*/
.dropdown-menu {
  padding: 0;
  margin-left: -1px;
  margin-top: -1px;
  border-radius: 0;
}
.dropdown-menu a.dropdown-item:hover {
  color: #fff;
  background-color: var(--ptask-dark-teal);
  width: 100%;
}
.nav-item:hover .dropdown-menu {
  display: block;
}
.accordion > .card {
  z-index: unset;
  border-right: none;
  border-left: none;
  border-top: 1px solid var(--ptask-dark-grey);
}
.card-header {
  border-bottom: 0;
}

.accordion > .card:first-of-type {
  border-top: 0;
}
.accordion > .card:last-of-type {
  border-bottom: 0;
}
.accordion > .card:not(first-of-type),
.accordion > .card:not(last-of-type) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid black;
}
.accordion > .card-header {
  border-bottom: 2px solid transparent;
}
.accordion > .card .card-body:last-child {
  border-bottom: 2px solid transparent;
}
.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: red;
}
.card-header h2 button.h2 {
  line-height: 2rem;
}
.card-header {
  padding-bottom: 0.25rem;
}

.card-header .btn:focus {
  box-shadow: none;
}

.card-header h2 button.collapsed:before {
  content: '\f13a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: left !important;
  font-size: 2rem;
  line-height: 2rem;
  background-color: var(--ptask-bright-blue);
  color: white;
  margin-top: 0.5rem;
  margin-right: 1rem;
  border: 2px solid var(--ptask-dark-grey);
  border-radius: 50%;
}
.card-header h2 button.collapsed:hover:before {
  content: '\f13a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: left !important;
  font-size: 2rem;
  line-height: 2rem;
  color: var(--ptask-dark-grey);
  margin-right: 1rem;
  margin-top: 0.5rem;
  border: 2px solid var(--ptask-dark-grey);
  background-color: var(--gen-white);
  border-radius: 50%;
}
.card-header h2 button:before {
  content: '\f139';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: left !important;
  font-size: 2rem;
  color: var(--gen-white);
  margin-right: 1rem;
  margin-top: 0.5rem;
  background-color: var(--ptask-bright-blue);
  border: 2px solid var(--ptask-dark-grey);
  border-radius: 50%;
}
.card-header h2 button:hover:before {
  content: '\f139';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: left !important;
  font-size: 2rem;
  color: var(--ptask-dark-grey);
  margin-right: 1rem;
  margin-top: 0.5rem;
  background-color: var(--gen-white);
  border: 2px solid var(--ptask-dark-grey);
  border-radius: 50%;
}

.assessment_panel_body a {
  color: var(--ptask-red);
}

.assessment_panel_body .card-header h2 button.collapsed:before {
  background-color: var(--ptask-red);
}

.assessment_panel_body .card-header h2 button.collapsed:hover:before {
  background-color: var(--gen-white);
}

.assessment_panel_body .card-header h2 button:before {
  background-color: var(--ptask-red);
}

.assessment_panel_body .card-header h2 button:hover:before {
  background-color: var(--gen-white);
}

.assessment-accordion-heading {
  color: var(--ptask-red);
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.45rem;
  font-family: var(--miriam-libre-font-family);
}

.card-body.collapse-answer {
  padding-left: 4.25rem;
}
.btn:hover {
  border: 1px solid transparent;
}
.btn-link:focus,
.btn-link.focus {
  text-decoration: none;
}
.title_span {
  font-family: var(--miriam-libre-font-family);
  font-size: 1.45rem;
  margin-top: 3px;
  color: var(--ptask-bright-blue);
}
.title_span_twoline {
  font-family: var(--miriam-libre-font-family);
  font-size: 1.45rem;
  margin-top: -10px;
  color: var(--ptask-bright-blue);
}
.num_img {
  width: 55px;
  margin-left: 0.75rem;
}
.lineheight {
  line-height: 2.8rem;
  font-size: 1.5rem;
}
p.lineheightp {
  line-height: 1.8rem;
  font-size: 1.35rem;
}

.assessments-table-discipline-header {
  width: 80%;
}

.assessments-table-grade-header {
  min-width: 4rem;
}

.assessments-table tr > :is(:first-child, :last-child) {
  padding: 0 0.12rem;
}

.assessments-table tbody :is(th, td) {
  padding: 0;
}

.assessments-table a {
  display: block;
  padding: 0.75rem;
  color: var(--ptask-dark-grey);
  text-decoration: none;
}

.assessments-table a:hover {
  outline: 1px solid var(--ptask-red);
}

.assessments-table-discipline a {
  font-weight: 600;
  padding-left: 4rem;
  color: var(--gen-black);
  white-space: nowrap;
}

.assessments-table tr:last-child a {
  /* Prevent border-collapse: collapse from hiding the outline bottom */
  margin-bottom: 0.25rem;
}

.physsci a {
  background: no-repeat url('../images/physicalscience_button.gif') 9px 3px;
}

.physics a {
  background: no-repeat url('../images/physics_button.gif') 59px 3px;
  padding-left: 6.5rem;
}

.chemistry a {
  background: no-repeat url('../images/chemistry_button.gif') 59px 3px;
  padding-left: 6.5rem;
}

.earth_sci a {
  background: no-repeat url('../images/earthscience_button.gif') 9px 3px;
}

.space_sci a {
  background: no-repeat url('../images/spacescience_button.gif') 9px 3px;
}
.life_science a {
  background: no-repeat url('../images/lifescience_button.gif') 9px 3px;
}

/* -----Aladdin added these------ */

.dark-purple {
  font-family: var(--miriam-libre-font-family);
  color: rgb(141, 37, 138);
}
.assessment_panel_body h4 {
  font-family: var(--open-sans-font-family);
  font-weight: bolder;
}

/* Vanessa after Aladdin but before media queries */

.pagenav {
  background-color: var(--ptask-light-grey);
  padding-left: 1em;
}

.assessment-banner {
  display: block;
  width: 100%;
  max-height: 398px;
  object-fit: cover;
  object-position: top 50% left 50%;
}

/* Smartphones (portrait and landscape) ----------- */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  .overview-purple h2 {
    font-size: 1.5em;
  }
  /*    .overview-purple p {
        font-size: 1.2em;
        line-height: 1.4em;
    }*/
  .overview-purple img {
    width: 38px;
    padding-top: 4px;
  }
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
  .overview p {
    font-size: 1.2em;
    line-height: 1.4em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
    margin-bottom: 1.5em;
  }
  .orange-page {
    padding-left: 15px;
    padding-right: 15px;
  }
  .path_line_divider {
    min-height: 75px;
    margin-left: 0em;
    margin-right: 0em;
  }
  .contact ul {
    margin-top: 0.75em;
    font-size: 0.9em;
  }
  .contact ul li {
    padding: 0.25em 0 0 0.5em;
    margin: 0 0 0 0;
  }
  .nsf img {
    width: 80px;
    margin: 5px;
  }
  .pagenav {
    padding-left: 0;
  }
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  a.btn-read-more {
    font-size: 0.95em;
  }
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  div.cfa-logo img {
    width: 160px;
    height: 69px;
  }
  div.nsf-logo img {
    width: 60px;
    height: 60px;
  }
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.5em;
    color: white;
    display: block;
    padding: 1em 2.5em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.2em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1.5em;
    margin-bottom: 1.5em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  .cfa-logo img {
    padding-top: 0.75em;
  }
  .pagenav {
    padding-left: 0.75em;
  }
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
  .overview p {
    font-size: 1.25em;
    line-height: 1.5em;
    color: white;
    display: block;
    padding: 3em;
    padding-left: 4em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  div.banner {
    margin-bottom: 2em;
  }
  .cfa-logo img {
    width: 175px;
  }
  .nsf-logo img {
    width: 90px;
  }
  .path_line_divider {
    min-height: 110px;
    height: 100%;
  }
  /*.bg-image {background-size: 100%; }*/
  a.btn-read-more {
    font-size: 1.15em;
    flex-wrap: nowrap;
  }
  .types h2 {
    font-size: 1.2em;
    line-height: 1.15em;
  }
  .types p {
    font-size: 1.1em;
    line-height: 1.25em;
  }
  .col-xs-1 {
    -ms-flex: 0 0 5.5%;
    flex: 0 0 5.5%;
    max-width: 5.5%;
  }
  .pagenav {
    padding-left: 4em;
  }
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
  .overview p {
    font-size: 1.4em;
    line-height: 1.6em;
    color: white;
    display: block;
    padding: 3rem 7rem;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  .bg-image {
    background-size: 50%;
  }
  .questions {
    padding-left: 3em;
  }
  .home-question {
    font-size: 1.4em;
    line-height: 1.6em;
  }
  .home-answer {
    font-size: 1.4em;
    line-height: 1.6em;
  }
  a.btn-read-more {
    font-size: 1.4em;
    flex-wrap: nowrap;
  }
  .path_line_divider {
    min-height: 125px;
    height: 100%;
  }
  .col-xs-1 {
    -ms-flex: 0 0 5.5%;
    flex: 0 0 5.5%;
    max-width: 5.5%;
  }
  div.cfa-logo img {
    width: 160px;
    height: 69px;
  }
  div.nsf-logo img {
    width: 60px;
    height: 60px;
  }
  .pagenav {
    padding-left: 6rem;
  }
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  div.cfa-logo img {
    width: 127px;
    height: auto;
    margin-top: 0.8em;
  }
  div.nsf-logo img {
    width: 48px;
    height: 48px;
  }
  .questions {
    padding: 0;
  }
  a.btn-read-more {
    font-size: 0.96em;
  }
  a.home-icon {
    margin-right: 1em;
  }
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .container {
    width: 100%;
  }
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 3em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  a.home_icon,
  a.login-link {
    margin-right: 2em;
  }
  .pagenav {
    padding-left: 3em;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 3em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  .banner {
    margin-top: 10px;
  }
  ul.list-group {
    font-size: smaller;
    margin-left: 0.75em;
  }
  .pagenav {
    padding-left: 3em;
  }
}
/* iPhone 6, 7, 8 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 3em;
    margin-bottom: 2em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  ul.list-group {
    padding: 0.5em !important;
  }
  .pagenav {
    padding-left: 3em;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em 2em;
    margin-bottom: 2em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  a.btn-read-more {
    font-size: 1.1em;
  }
  .pagenav {
    padding-left: 1.25em;
  }
}
/* iPhone 6+, 7+, 8+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 3em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  ul.list-group {
    padding: 0.5em !important;
  }
  .pagenav {
    padding-left: 3em;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
/* iPhone X ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1.5em;
    margin-bottom: 1.5em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  a.btn-read-more {
    font-size: 1.1em;
  }
  .cfa-logo img {
    width: 80px;
  }
  .nsf-logo img {
    width: 55px;
  }
  .overview-purple h2 {
    font-size: 1.55em;
  }
}
/* iPhone XS Max, XR ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  .cfa-logo img {
    width: 175px;
  }
  .nsf-logo img {
    width: 80px;
  }
  .path_line_divider {
    min-height: 50px;
    height: 100%;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 2.5em;
    margin-bottom: 1.5em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  a.btn-read-more {
    font-size: 1em;
  }
  div.banner {
    margin-bottom: 1em;
  }
  .pagenav {
    padding-left: 1.75rem;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
    margin-bottom: 1.5em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 0.98em;
  }
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 0.5em;
  }
  .overview p {
    font-size: 1.2em;
    line-height: 1.4em;
    color: white;
    display: block;
    padding: 1.5em 2em 2em 3em;
    margin-bottom: 1.5em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
  div.banner {
    margin-bottom: 1em;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
  .overview {
    padding: 1em;
  }
  .overview p {
    font-size: 1.1em;
    line-height: 1.3em;
    color: white;
    display: block;
    padding: 1em;
  }
  .overview a {
    display: block;
    text-decoration: none;
    font-size: 1em;
  }
}

/* Added by Vanessa */
/* Bootstrap sm */
@media (min-width: 576px) {
  .assessments-table-grade-header {
    min-width: 6rem;
  }
}
/* Bootstrap md */
@media (min-width: 768px) {
  /* These give us the header background going all the way across, while the
   * table contents are a much smaller width */
  .assessments-table {
    table-layout: fixed;
  }
  .assessments-table-left-gutter {
    width: 8.3%;
  }
  .assessments-table-discipline-header {
    width: auto;
  }
  .assessments-table-grade-header {
    width: 100px;
  }
  .assessments-table-right-gutter {
    width: 16.7%;
  }
  .assessments-table tbody tr > :is(:first-child, :last-child) {
    border: 0;
  }
}

/* Bootstrap lg */
@media (min-width: 992px) {
  .assessments-table-left-gutter {
    width: 16.6%;
  }
  .assessments-table-right-gutter {
    width: 25%;
  }
}

/* Bootstrap xl */
@media (min-width: 1200px) {
  .assessments-table-right-gutter {
    width: 33.3%;
  }
}
/* Bootstrap xxl (technically Bootstrap 5) */
@media (min-width: 1400px) {
  .assessments-table-right-gutter {
    width: 41.7%;
  }
}

/* From Bootstrap 5 */
.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 1;
}
