/* ---------------------------------------- MIXIN STYLES ----------------------------------- */
/* ---------------------------------------CSS Reset- --------------------------------------- */
div,
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
form,
button {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  margin: 0; /*line-height: normal;*/ /*overrides bootstrap*/
  box-sizing: border-box; /*overrides bootstrap*/
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ------------------------------------- DEFAULT STYLES ------------------------------------- */
html,
body {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 2.2em;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
}

h2 {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  color: teal;
  margin: 0.5rem 0 1rem 0;
}
@media (min-width: 25rem) {
  h2 {
    font-size: 2em;
  }
}

h4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.1em;
  font-weight: bold;
  color: #666;
}

p,
li {
  color: #666;
  margin-bottom: 0.5rem;
}

ul,
ol {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

ul {
  list-style-type: square;
}

a {
  text-decoration: none;
  color: teal;
}

p a:hover,
li a:hover,
span a:hover {
  color: teal;
}

/* ------------------------------------- JAVASCRIPT AND MODIFIERS -------------------------------- */
.displayFlex {
  display: flex;
}

.hideElement {
  display: none;
}

@media (min-width: 70rem) {
  .desktopOnly {
    display: flex !important;
  }
}

@media (min-width: 70rem) {
  .mobileOnly {
    display: none !important;
  }
}

.desktop {
  display: none;
}
@media (min-width: 25rem) {
  .desktop {
    display: inherit;
  }
}

.mobile {
  display: inherit;
}
@media (min-width: 25rem) {
  .mobile {
    display: none;
  }
}

/* ------------------------------------- COMPONENTS ----------------------------------------- */
.btn:disabled {
  background-color: #6c757d;
}

.btnPrimary {
  color: white;
  background-color: teal;
}
.btnPrimary:hover {
  color: white;
  background-color: #006666;
}

button.btnLarge,
a.btnLarge {
  padding: 1rem 1rem 1rem 1rem !important;
  text-transform: uppercase;
  border-radius: 0.5rem;
}

.userIconContainer {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  position: relative;
  background-color: #9d4870;
  color: white;
  font-weight: bold;
  height: 2.5rem;
  width: 2.5rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
}

.menuIcon {
  margin-right: 0.5rem;
}

.primaryTop {
  margin: 2rem 0 0.25rem 0rem;
  border-bottom: 0.5rem solid teal;
  width: 5rem;
}

/* ----------------------------------- BOOTSTRAP OVERRIDES -------------------------------- */
.input-group {
  align-items: center;
  width: auto;
}

/* ----------------------------------TABLES ----------------------------------------------- */
.defaultTable {
  border-collapse: collapse;
  margin: 1rem auto;
}
.defaultTable tr:nth-child(even) {
  background: #f2f2f2;
}
.defaultTable tr:nth-child(odd) {
  background: #fff;
}
.defaultTable tr:hover td {
  color: teal;
  background-color: rgba(0, 128, 128, 0.05);
}
.defaultTable th {
  color: white;
  background-color: teal;
  padding: 0.5rem 1rem;
  border-top: none;
  text-align: left;
  border: 0.0625rem solid #ccc;
}
.defaultTable th:first-child {
  border: none;
}
.defaultTable th:last-child {
  border: none;
}
@media (min-width: 60rem) {
  .defaultTable th:first-child {
    border-radius: 0.5rem 0 0 0;
    border: none;
  }
  .defaultTable th:last-child {
    border-radius: 0 0.5rem 0 0;
    border: none;
  }
}
.defaultTable td {
  padding: 0.25rem 1rem 0.25rem 1rem;
  border: 1px solid #ccc;
  color: #231f20;
}

/* --------------------------------- CONTAINERS ------------------------------------------- */
#wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  box-sizing: border-box;
  align-items: stretch;
  flex-shrink: 0;
  background-color: #f2f2f2;
  width: 100%;
  min-width: 20rem;
  min-height: 100vh;
}

.contentWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  font-size: 1.1rem;
  box-sizing: border-box;
  padding: 1rem 1rem 1rem 1rem;
}

.expandableContainer {
  flex: 2;
}

.standardContainer {
  flex-direction: column;
}

.mainContainer {
  min-height: 100%;
  font-size: 1.1rem;
  box-sizing: border-box;
  padding: 1rem 1rem 1rem 1rem;
}
.mainContainer p a,
.mainContainer span a,
.mainContainer li a {
  color: teal;
  border-bottom: 1px dashed teal;
}
.mainContainer p a:hover,
.mainContainer span a:hover,
.mainContainer li a:hover {
  border-bottom: 1px solid teal;
}
@media (min-width: 70rem) {
  .mainContainer {
    flex-direction: row;
  }
}

.contentContainer {
  display: flex;
  justify-content: flex-start;
  background-color: white;
  width: 100%;
  margin: 2rem 0rem;
  padding: 1rem;
  border: 0.0625rem solid #ccc;
  box-sizing: border-box;
}

.borderedContainer {
  padding: 1rem;
  border: 0.0625rem solid #ccc;
}

.buttonRow {
  display: flex;
  flex-flow: column;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  align-content: center;
}
@media (min-width: 70rem) {
  .buttonRow {
    flex-flow: row wrap;
  }
}

/* ------------------------------- FORMS  -------------------------------------- */
.wideFormWrapper {
  max-width: 60rem;
}

.narrowFormWrapper {
  max-width: 35rem;
}

.formWrapper {
  width: 100%;
  margin: auto;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  background-color: white;
  border: 0.0625rem solid #ccc;
  padding: 1.5rem;
}
.formWrapper .formBody {
  border: none;
  border-radius: 0 0 0.25rem 0.25rem;
  width: 100%;
}
.formWrapper .inputHeader {
  color: #231f20;
  font-size: 1.2rem;
  padding: 0.5rem 0 0.25rem 0;
}

.form-control:focus-within,
.form-control:focus {
  box-shadow: #ccffff 0 0 1px 2px, inset #80ffff 0 0 2px 0;
  border-radius: 0.5rem;
  border-color: #4dffff;
}

.formFooter {
  border-top: 1px solid teal;
  margin-top: 1rem;
  padding-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* ------------------ Header Styles ----------------------------- */
#courseHeader {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  justify-content: center;
  background-color: white;
  font-size: 1rem;
  border-top-style: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: #ccc;
  min-width: 20rem;
  height: 5rem;
  padding: 0;
  /* -------------------------------- HEADER BREAKPOINT STYLES -------------------------- */
}
#courseHeader .headerLogo {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  box-sizing: border-box;
  align-content: center;
  padding: 0rem 1rem 0rem 1rem;
  text-decoration: none;
  font-size: 1rem;
  color: teal;
  height: 3.75rem;
  font-weight: bold;
  margin-right: auto;
}
#courseHeader .headerLogo img {
  height: 3rem;
  width: 3rem;
}
#courseHeader .headerLogo span {
  padding-left: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
#courseHeader .headerItem,
#courseHeader .headerDropdown {
  display: none;
  color: #231f20;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 0.5rem;
  margin: 0 0.65rem;
}
#courseHeader .headerItem:hover,
#courseHeader .headerDropdown:hover {
  color: #9d4870;
}
#courseHeader .headerNav ul {
  border-color: #9d4870;
}
#courseHeader .headerNav ul a {
  font-weight: 500;
}
#courseHeader #hamburgerMenu {
  display: flex;
  padding: 0.5rem 0.5rem;
  font-size: 1.4rem;
  border: none;
  color: teal;
  background-color: white;
  margin-right: 0.5rem;
}
@media (min-width: 70rem) {
  #courseHeader .headerItem {
    display: flex;
  }
  #courseHeader .headerDropdown {
    display: flex;
  }
  #courseHeader #hamburgerMenu {
    display: none;
  }
}

/* ------------------------------------------------- MODALS GENERIC ---------------------------------- */
.btn-close,
.btn-close:hover {
  font-size: 1.5rem;
}

.modal-body {
  padding: 1rem 2rem 1rem 2rem;
}

/* ------------------------------------------------- USER SELECTOR MODAL --------------------------------------------------------- */
.userSelectorTable {
  margin: 1rem auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 95%;
}

.userSelectorTable td {
  padding: 0.25rem 0.75rem 0.25rem 0.75rem;
  border: 1px solid #ccc;
  color: #231f20;
  font-size: 0.8rem;
}

.userSelectorTable tr {
  cursor: pointer;
}

.userSelectorTable thead tr {
  cursor: default;
}

/* ------------------------------------------------------------------------------- MOBILE DROPDOWN MENU ------------------------------------------------------------------------- */
.mobileHome a.sidebarOption {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  color: teal;
  font-weight: bold;
}
@media (min-width: 70rem) {
  .mobileHome {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------- SIDEBAR ------------------------------------------------------------------------------------ */
#sidebarContainer {
  transition: all 0.3s;
  width: 100%;
  z-index: 999;
}
#sidebarContainer .sidebarOption {
  cursor: pointer;
}
#sidebarContainer .sidebarOption:hover {
  background-color: #f3f3f3;
}
#sidebarContainer a.sidebarOption {
  color: #666;
}
#sidebarContainer .noHover:hover {
  background-color: transparent;
  cursor: auto;
}

#sidebarContainer.active {
  margin-left: -100%;
}

@media (min-width: 60rem) {
  #sidebarContainer {
    max-width: 20rem;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  #sidebarContainer.active {
    margin-left: -20rem;
  }
}
/* ---------------------------------------------------------------------- Footer Styles ----------------------------------------------------------------------------- */
.footer {
  display: flex;
  flex-flow: column;
  align-items: center;
  box-sizing: border-box;
  align-content: center;
  justify-content: center;
  background-color: teal;
  font-size: 1rem;
  color: #fff;
  width: 100%;
  padding: 0 0 0 0;
  border-top: 1px solid #ccc;
}
.footer h2 {
  color: #fff;
  font-size: 2rem;
  padding-bottom: 1rem;
  justify-content: flex-start;
  margin-top: 1rem;
}
.footer a,
.footer p {
  color: white;
  font-weight: bold;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
}
.footer .footerSection {
  display: flex;
  flex-flow: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.footer .footerSection h2 {
  justify-content: center;
  margin: 1rem auto 0 auto;
}
.footer .footerSection i {
  font-size: 1rem;
}
.footer .footerSection a {
  justify-content: flex-start;
  align-content: flex-start;
  width: 100%;
}
.footer .footerSection a:hover {
  color: teal;
  background-color: #fff;
}
.footer .socialMediaFooter {
  display: flex;
  flex-flow: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
.footer .socialMediaFooter h2 {
  margin: 0;
  padding: 0 0 0.5rem 0;
}
.footer .socialMediaFooter .socialMediaIcons {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0 1rem 0;
}
.footer .socialMediaFooter .socialMediaIcons a {
  padding: 0 1rem 0 1rem;
}
.footer .socialMediaFooter .socialMediaIcons i {
  font-size: 3rem;
  color: #fff;
}
.footer .copyright {
  display: flex;
  justify-content: center;
  border-top: 1px solid white;
  width: 100%;
  padding: 1rem 0 1rem 0;
}
.footer .copyright p {
  margin: auto;
  font-weight: bold;
}
@media (min-width: 70rem) {
  .footer {
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-around;
  }
}

/* -------------------------------------------- MISC ------------------------------------- */
.logoMainPage {
  margin: auto;
}

/* --------------------- EXAM PAPERS TABLE - WILL PROBABLY GET RID OF THIS SOON --------------- */
.examPaperTable td:first-child,
.examPaperTable th:first-child {
  min-width: 6rem;
}

.examPaperTable {
  max-width: 60rem;
  width: 100%;
  margin: 2rem auto 2rem auto;
}

.examPaperTable th {
  text-align: center;
  border: none;
  width: 100%;
}

.examPaperTable th:first-child {
  text-align: left;
}

.examPaperTable td {
  border: none;
  width: 100%;
}

.examPaperTable tr.noWrap {
  white-space: nowrap;
}

.examPaperTable tr {
  border-bottom: 1px solid #ccc;
  display: flex;
}

.examPaperTable tbody tr {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.examPaperTable tbody tr.blankRow {
  border-left: none;
  border-right: none;
}

.examPaperTable i {
  font-size: 1.5rem;
  padding: 0.25rem 0;
  color: teal;
}

.examPaperTable a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  min-width: 50%;
  height: 100%;
  color: teal;
  font-weight: bold;
}

.examPaperTable a:hover i,
.examPaperTable a:hover {
  color: #004d4d;
}

.examPaperHeading button {
  color: teal;
  text-transform: uppercase;
  width: 100%;
  font-size: 1.8rem;
}/*# sourceMappingURL=Course.css.map */