  @import url('https://fonts.googleapis.com/css2?family=Barlow&display=swap');

body {
  font-family: sans-serif;
  margin: 0;
  font-family: 'Barlow', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a {
  color: white;
}

ul {
  padding: 0;
}

ul li::marker {
  list-style-type: square;
  color: #c91736ff;
  font-size: 20pt;
}

li a {
  color: #6d6f71ff;
  font-size: 14pt;
  text-decoration: none;
}

li a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

button {
  border: none;
  cursor: pointer;
  font-family: 'Barlow', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: center;
  font-size: 14pt;
}

.quizOptionButton {
  background-color: rgb(233, 233, 233);
  border: solid 2px rgb(220, 220, 220);
  border-radius: 15pt;
  color: black;
  display: block;
  margin: 0 auto;
  margin-top: 0.8em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 1em;
  padding-right: 1em;
  max-width: 60%;
  transition: 0.1s;
  width: 45em;
}

.quizOptionButton:hover {
  background-color: rgb(115, 115, 115);
  border: solid 2px;
  color: white;
}

.quizHeader {
  background-color: #c91736ff;
  color: white;
  display: flex;
  font-size: 20pt;
  font-weight: bold;
  padding: 0.2em;
  justify-content: space-between;
}

.quizHeaderTextContainer {
  justify-content: flex-start;
  margin-left: 1.5em;
  margin-bottom: .5em;
}

.quizHeaderTextContainer > a {
  text-decoration: none;
  font-size: 12pt;
}

#quizProgramExplorerHeader {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 22pt;
  font-weight:100;
}

.headerButtonContainer {
  justify-content: flex-end;
  margin-top: 1.2em;
  margin-right: 1em;
}

.quizControlButton {
  background-color: #c91736ff;
  border-radius: 15pt;
  color: white;
  font-size: 12pt;
  font-weight: bold;
  margin: 0.2em;
  margin-left: 2.5em;
  margin-top: 1.2em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 1.7em;
  padding-right: 1.7em;
  visibility: hidden;
}

.quizControlButton:hover {
  background-color: #a41f30ff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quizListContainer > ul {
  margin: 0 auto;
  padding-left: 0;
  margin-bottom: 4em;
}

.quizResetButton {
  background-color: transparent;
  border-radius: 15pt;
  color: white;
  font-size: 12pt;
  font-weight: bold;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 1.7em;
  padding-right: 1.7em;
  visibility: hidden;
  text-transform: uppercase;
}

.quizResetButton:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quizQuestionContainer {
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
  color: #c91736ff;
  margin-bottom: 2em;
}

.quizResultsButton {
  float: right;
  background-color: #c91736ff;
  border-radius: 15pt;
  color: white;
  font-size: 12pt;
  font-weight: bold;
  margin: 0.2em;
  margin-left: 2.5em;
  margin-right: 2.5em;
  margin-top: 1.2em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 1.7em;
  padding-right: 1.7em;
  text-transform: uppercase;
}

.quizResultsButton:hover {
  background-color: #a41f30ff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quizResultsButton:disabled {
  opacity: 40%;
}

.multipleSelectionList {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  max-width: 80%;
}

.multipleSelectionButton {
  background-color: rgb(233, 233, 233);
  border: solid 2px rgb(220, 220, 220);
  border-radius: 15pt;
  color: black;
  display: block;
  margin: 0 auto;
  margin-bottom: 1em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 1em;
  padding-right: 1em;
  max-width: 90%;
  transition: 0.1s;
  width: 45em;
}

.multipleSelectionButton:hover {
  background-color:rgb(115, 115, 115);
  border: solid 2px;
  color: white;
}

.selectedMultipleSelectButton {
  background-color: #c91736ff;
  border: solid 2px #c91736ff;
  border-radius: 15pt;
  color: white;
  display: block;
  margin: 0 auto;
  margin-bottom: 1em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 1em;
  padding-right: 1em;
  max-width: 90%;
  transition: 0.1s;
  width: 45em;
}

.multipleSelectionSubtitle {
  font-size: 0.8em;
}

.quizMenuDrawer {
  background-color: #c91736ff;
  border-radius: 8pt;
  left: 50%;
  transform: translate(-50%, 0);
  height: 4.5em;
  width: 80%;
  text-align: center;
  position: absolute;
  bottom: -1.5%;
  z-index: 1;
  overflow-x: hidden;
  transition: 0.4s;
  color: white;
  border-radius: 8pt 8pt 0pt 0pt;
}

.quizMenuDrawer .quizDrawerButton {
  display: grid;
  grid-template-areas: 
  ". a b";
  grid-template-columns: auto 1fr;
  background-color: rgb(130, 25, 39);
  justify-content: center;
  border-radius: 6pt;
  border-style: none;
  width: 95%;
  position: relative;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  text-transform: uppercase;
  cursor: pointer;
}

.quizMenuDrawer .quizDrawerButton:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quizDrawerButton > span {
  grid-area: a;
  text-align: center;
  align-self: center;
  justify-self: center;
  margin-left: 4em;
}

.chevronIcon {
  grid-area: b;
  justify-self: end;
  margin-left: 1em;
  margin-right: 1em;
}

#quizDrawerList {
  color: white;
  padding: 0;
}

#quizDrawerList li {
  margin: 25px;
}

#quizDrawerList li:before {
  float: left;
  width: 0;
  white-space: nowrap;
  content:
  ". . . . . . . . . . . . . . . . . . . . "
  ". . . . . . . . . . . . . . . . . . . . "
  ". . . . . . . . . . . . . . . . . . . . "
  ". . . . . . . . . . . . . . . . . . . . "
  ". . . . . . . . . . . . . . . . . . . . "
  ". . . . . . . . . . . . . . . . . . . . "
}

#quizDrawerList li span:first-child {
  float: left;
  padding-right: 0.5em;
  padding-left: 1em;
  font-size: 12pt;
  font-weight: bold;
  background:  #c91736ff;
}

#quizDrawerList li span:last-child {
  float: right;
  padding-left: 0.5em;
  padding-right: 1em;
  font-size: 11pt;
  background:  #c91736ff;
  text-align: left;
}

/***
*
*                 HOMEPAGE
*
****/

.quizAppHomepage {
  background-color: #c91736ff;
  color: white;
}

.quizAppMainContainer {
  margin-top: 7%;
}

.quizAppAllContentContainer {
  max-width: max-content;
  margin: 0 auto;
}

.quizAppFlexContainer {
  display: flex;
  flex-wrap: wrap;
  margin-left: 5em;
  margin-right: 5em;
}

.quizAppContentContainer {
  flex: 1;
  padding-top: 2em;
  align-self: flex-end;
}

#quizLeftFlexContainer {
  margin-right: 8em;
}

.quizHomeDescriptionTitle {
  font-size: 18pt;
  font-weight: bold;
  margin: 0px 0px 20px 0px;
}

.quizHomeDescriptionSubtitle {
  font-size: 13pt;
  margin: 0px 0px 40px 0px;
}

.quizAppHomepageTitle {
  background-color: white;
  color: #c91736ff;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 11rem;
}

.quizAppFacultyTitle {
  background-color: #a6192eff;
  color: white;
  font-family: 'Barlow', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 3.3rem;
  max-width: fit-content;
  padding-left: 22px;
  padding-right: 22px;
}

.quizAppHomepageNote {
  margin-left: 5em;
  margin-right: 5em;
}

.quizAppHomepageNote > p {
  color: white;
}

.quizAppExploreButton {
  background-color: white;
  color: #c91736ff;
  border-style: solid;
  font-size: 18pt;
  font-weight: bold;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
}

.quizAppExploreButton:hover {
  background-color: transparent;
  color: white;
}

/***
*
*               RESULTS PAGE
*
****/

.quizAppFlexResultsContainer {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1em;
  margin-right: 1em;
  margin-top: 2em;
}

.quizResultsDiv {
  padding-top: 2em;
  flex: 1;
  padding-left: 1em;
  padding-right: 1em;
  min-width: auto;
}

.quizAppContentResultsContainer {
  padding-left:2em;
}

.quizAppContentResultsContainer > span {
  display: inline-block;
  padding-top: 0em;
  max-width: 90%;
}

.quizResultsTopTextContainer {
  font-weight: bold;
  font-size: 14pt;
  text-transform: uppercase;
}

.quizResultsDescriptionContainer {
  margin-top: 1em;
  font-size: 12pt;
  min-width: 300px;
  max-width: 450px;
}

.quizResultsProgramDescription {
  font-size: 12pt;
}

.quizResultsTitlesContainer {
  display: inline-block;
  margin-top: 4em;
}

.quizResultsSmallTitle {
  color: #c91736ff;
  font-family: 'Barlow', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 14pt;
  font-weight: bold;
  text-transform: uppercase;
}

.quizResultsTitle {
  background-color: white;
  color: #c91736ff;
  max-width: fit-content;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  padding-right: 15px;
  font-size: 80pt;
  text-transform: uppercase;
}

#quizResultsSfuLink {
  color: #6d6f71ff;
  text-decoration: none;
}

#quizResultsSfuLink:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.quizResultsPrerequisiteNotice {
  display: block;
  margin-top: 4em;
  font-size: 0.85em;
}

/***
*
*       MOBILE DEVICES & SMALL SCREENS
*
****/

@media screen and (max-width: 430px) {
  .quizResultsTitle {
    font-size: 3em !important;
  }

  .quizAppHomepageTitle {
    font-size: 5rem !important; 
  }

  .quizAppFacultyTitle {
    font-size: 1.5rem !important; 
  }

}

@media screen and (max-width: 600px) {
  #quizDrawerList li span:last-child {
    margin-bottom: 1em;
  }

  .quizOptionButton {
    max-width: 70%;
    width: 45em;
  }

  .quizResultsTitle {
    font-size: 5em;
  }

  .quizAppHomepageTitle {
    font-size: 5rem !important; 
  }

  .quizAppFacultyTitle {
    font-size: 1.5rem !important; 
  }

}

@media screen and (max-width: 645px) {
  .multipleSelectionList {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    max-width: 80%;
  }
}

@media screen and (max-width: 880px) {
  .quizAppHomepageTitle {
    font-size: 7rem; 
  }

  .quizAppFacultyTitle {
    font-size: 2rem; 
  }
}

@media screen and (max-width: 1300px) {
  .quizMenuDrawer {
    position: fixed;
  }

  .quizMenuDrawer .quizDrawerButton {
    margin-bottom: 2em;
  }

  #quizDrawerList {
    padding: 0;
    list-style: none;
  }
  
  #quizDrawerList li {
    margin: 5px;
    padding-bottom: 4em;
  }
  
  #quizDrawerList li:before {
    content: "";
  } 
  
  #quizDrawerList li span:first-child {
    clear: left;
    padding-right: 0em;
    padding-left: 1em; 
    background-color: transparent;
  }
  
  #quizDrawerList li span:last-child {
    float: left;
    clear: left;
    padding-left: 1em;
    padding-right: 0em;
    font-size: 11pt;
    background-color: transparent;
  }

  .multipleSelectionList {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    max-width: 80%;
  }
}

/***
*
*              LARGE SCREENS
*
****/

@media screen and (min-width: 1895px) {

  #quizDrawerList li:before {
    content:
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . "
  }
  
}