/* Pull in self-hosted fonts */
/* ============================ Base Styles ============================ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

* html {
  font-size: 62.5%;
}

/* ============================ Font Styles ============================ */
body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  color: #292929;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}

h1.page-header {
  border-bottom: 8px solid #eee;
  padding-bottom: 10px;
  font-size: 5.5rem;
  font-weight: 700;
}

h2 {
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 2.5rem;
}

p {
  margin: 0 0 1rem;
}

#main-div li {
  margin-left: 1.3rem;
}
#main-div li:last-child {
  margin-bottom: 1rem;
}

a:focus-visible {
  outline: 3px solid #005fcc;
  offset: 3px;
  background: transparent;
}

/* Sets the catalog search box title as the h1 for the home page and elementary pages */
#block-homepageh1tag h1 {
  color: #292929;
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 0;
}

/* ============================ Homework Hotline Button ============================ */
.content .paragraph-id--65 {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 45px;
  text-align: right;
}
.content .paragraph-id--65 p a {
  padding: 20px 30px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  color: #fff;
  background: #057dbc;
  font-size: 18px;
}
.content .paragraph-id--65 p a:hover {
  background: #00adef;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .content .paragraph-id--65 {
    right: unset;
  }
}
/* Wrapper around the main menu, confusingly named */
#user-account-menu {
  margin-top: 0 !important;
}
#user-account-menu .close-btn {
  z-index: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  text-transform: none;
  position: relative;
  display: none;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
#user-account-menu .close-btn img.opened {
  display: block !important;
}
#user-account-menu .close-btn img.closed {
  display: none !important;
}
#user-account-menu .close-btn.closed img.opened {
  display: none !important;
}
#user-account-menu .close-btn.closed img.closed {
  display: block !important;
}
@media only screen and (min-width: 768px) {
  #user-account-menu .close-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* ======================= Unorganized or Undeciphered Styles ============================ */
/* Accessibility: Visually hidden but available to screen readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* pretty sure this is the area where the "caches cleared" and other system messages display */
/* I don't think we need this */
.content .field--name-field-component {
  position: relative;
}

/* no idea what paragraph type this affects */
.content .paragraph-id--130 .field--name-field-content {
  position: absolute;
  top: 57.6%;
  right: 45px;
  font-size: 25px;
  font-weight: 700;
}
.content .paragraph-id--130 .field--name-field-content:after {
  position: absolute;
  top: 1px;
  right: -22px;
  content: ">";
  color: #037ac0;
}

/* Restore visible focus outlines for keyboard accessibility */
a:focus,
a:focus-visible {
  outline: 3px solid #005fcc;
  offset: 3px;
}

/* Also cover buttons and interactive elements if Bootstrap nuked those too */
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
[tabindex]:focus,
[tabindex]:focus-visible {
  outline: 3px solid #005fcc !important;
  offset: 3px !important;
}