@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 16px;

  --font-body: "Roboto", sans-serif;
  --font-accent: "Roboto", sans-serif;
  --color-h1: #006147;
  --color-h2: #006147;
  --color-h3: #666;
  --color-h4: #006147;
  --color-h5: #393939;
  --color-h6: #393939;
  --color-link: #006147;
  --color-bannertop: #ffce00;
  --color-bannerbottom: #e5e5e5;

  --color-tableheading: #006147;
  --color-tableheadingtext: #fff;
  --color-thdivider: #666666;
  --color-tablerowbg: #f8f8f8;
  --color-tableborders: rgba(90, 90, 90, 0.5);

  --color-assignment: #666666;
  --color-assignment-text: #fff;
  --color-discussion: #666666;
  --color-discussion-text: #fff;
  --color-assessment: #666666;
  --color-assessment-text: #fff;
  --color-other: #ab3c3c00;
  --color-other-text: #000;
}

body {
  box-sizing: border-box;
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 54em;
  margin: 0 auto;
  margin-bottom: 2em;
  padding: 0 1em;
  color: #393939;
}

.banner {
  border-bottom: 1px solid var(--color-bannerbottom);
  position: relative;
  margin: 2em 0;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-bannertop);
}

.pageInfo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2em 0;
  font-family: var(--font-accent);
}

.pageinfo h1 {
  order: 2;
  font-family: var(--font-accent);
  font-weight: bold;
  color: var(--color-h1);
  font-size: 2em;
  line-height: 1.125;
}

p.typeinfo {
  order: 1;
  margin-bottom: 0;
  font-size: 1em;
  color: #666;
  font-family: var(--font-accent);
}

p.courseinfo {
  font-size: 1.125em;
  color: #666;
  order: 3;
  margin: 0;
  margin-top: 0.375em;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-accent);
  margin: 1.375em 0 0.875em 0;
}

h2 {
  color: var(--color-h2);
  font-weight: 700;
  font-size: 1.25em;
}

h3 {
  color: var(--color-h3);
  font-weight: 700;
  font-size: 1.5em;
}

h4 {
  color: var(--color-h4);
  font-size: 1.25em;
  font-weight: 700;
}

h5 {
  font-size: 1.125em;
  font-weight: 700;
  color: var(--color-h5);
}

h6 {
  font-size: 1.125em;
  color: var(--color-h6);
  font-style: italic;
}

p {
  margin-bottom: 1.5rem;
}

ul,
ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

li:last-of-type {
  margin-bottom: 0;
}

a:link,
a:visited {
  color: var(--color-link);
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

/*RUBRIC STYLES*/

.kp.table {
  max-width: 100%;
  overflow-x: auto;
}

table {
  font-size: 1em;
  border-collapse: collapse;
  border: 1px solid var(--color-tableborders);
}

caption {
  text-align: left;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-h3);
  font-size: 1.25em;
  margin-bottom: 1em;
}

caption .scrollMessage {
  display: block;
  margin-top: 0.5em;
  font-size: 0.8em;
  font-weight: normal;
  color: #333;
  font-style: italic;
}



tr {
  border-bottom: 1px solid var(--color-tableborders);
}

tr:last-of-type {
  border-bottom: none;
}

tr:nth-of-type(odd) {
  background-color: var(--color-tablerowbg);
}

.kp.table tr.topheader th[scope="col"],
.kp.table tr.topheader th[scope="colgroup"] {
  font-family: var(--font-accent);
  font-size: 1.125em;
  font-weight: 700;
  background-color: var(--color-tableheading);
  color: #fff;
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 0.875em 1em;
}

th[scope="row"] {
  font-weight: 700;
  font-family: var(--font-accent);
  font-size: 1em;
  padding: 0.875em 1em;
  position: relative;
  vertical-align: top;
  border-right: 1px solid rgba(102, 102, 102, 0.5);
}

th[scope="row"]::after {
  content: "";
  position: absolute;
  top: 0.875em;
  right: 0;
  width: 0.0625em;
  height: 40%;
  min-height: 0.75em;
  background-color: #ab3c3c00 !important;
}

th[scope="col"] {
  font-family: var(--font-accent);
  font-size: 1em;
  font-weight: 700;
  padding: 0.875em 1em;
  background-color: var(--color-other);
  position: relative;
  border-right: 1px solid rgba(221, 221, 221, 0.5);
}

.kp.table[data-type="assignment"] th[scope="col"] {
  background-color: var(--color-assignment);
  color: var(--color-assignment-text);
}

.kp.table[data-type="discussion"] th[scope="col"] {
  background-color: var(--color-discussion);
  color: var(--color-discussion-text);
}

.kp.table[data-type="assessment"] th[scope="col"] {
  background-color: var(--color-assessment);
  color: var(--color-assessment-text);
}

.kp.table[data-type="other"] th[scope="col"] {
  background-color: var(--color-other);
  color: var(--color-other-text);
}

tr.ratings th[scope="col"]::after {
  content: "";
  position: absolute;
  width: calc(100% - 1.75em);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #666;
}

td {
  padding: 0.875em;
  vertical-align: top;
  border-right: 1px solid rgba(102, 102, 102, 0.5);
}

td div.mobheading {
  display: none;
}

td p:last-child {
  margin-bottom: 0;
}

td ul,
td ol {
  margin-left: 2em;
}

img {
  max-width: 100%;
}

.kp.img-center {
  max-width: 100%;
  display: block;
  margin: 0 auto 1.5em auto;
  text-align: center;
}

.header-left{
  background-color: var(--color-tableheading) !important;
  color: #fff;
}

 h2::after,.h2::after {
  display: block;
  content: "";
  background: #ffce00;
  height: 3px;
  width: 65px;
  position: absolute;
  color: #0246be;
}

@media screen and (max-width: 85.5rem) {
  body {
    font-size: 0.875rem;
  }
}
