@media (-webkit-min-device-pixel-ratio: 1.25) {
  #panelOverlay {
    zoom: 0.8;
  }
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
  #panelOverlay {
    zoom: 0.65;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  color: black;
  background-color: white;
  font-family: "articulat-cf", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hdr-logo {
  height: 40px;
}

.bg-red {
  background-color: #ED1C24 !important;
}

.bg-orange {
  background-color: #F37520 !important;
}

.bg-white {
  background-color: white !important;
}

.txt-red {
  color: #ED1C24 !important;
}

.txt-orange {
  color: #F37520 !important;
}

.upper {
  text-transform: uppercase;
}

.none {
  display: none !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

header {
  position: relative;
  width: 100%;
  height: 64px;
  color: black;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.7) 0 0 15px;
  z-index: 10;
}

h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

h5 {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
}

.bold {
  font-weight: 800;
}

button {
  width: 260px;
  min-height: 48px;
  background-color: white;
  color: black;
  border: none;
  font-size: 0.84rem;
}

button:hover {
  background-color: #F37520;
  color: white;
}

#hamburger {
  position: absolute;
  right: 10px;
  width: 32px;
  height: 28px;
  cursor: pointer;
}

#content {
  position: relative;
  width: 100%;
  min-height: calc(100% - 64px);
}

#btnWesternStar, #btnFreightliner {
  cursor: pointer;
}
#btnWesternStar button, #btnFreightliner button {
  cursor: pointer;
}

#btnWesternStar button:hover {
  background-color: #ED1C24;
}

#vehicles {
  width: 100%;
  max-width: 1080px;
  margin-top: 32px;
  justify-content: space-around;
}
#vehicles .vehicle {
  margin: 24px;
  min-height: calc(240px * 1.75);
  justify-content: space-between;
  align-items: center;
}
#vehicles .circle {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: calc(240px / 2);
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 25px;
}
#vehicles .circle .innercirc {
  width: 200px;
  height: 200px;
  border-radius: calc(200px / 2);
  background-color: #e7e7e7;
  background-size: contain;
}
#vehicles .circle .innercirc.ftl {
  background-image: url(../images/heroRender_m2106.jpg);
}
#vehicles .circle .innercirc.wst {
  background-image: url(../images/heroRender_ws49x.jpg);
}
#vehicles .circle img {
  position: absolute;
  top: calc(240px - 16px);
  width: 75%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  align-items: center;
}

.dark-blur {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.login {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/city_007_small.jpg);
}

.body-login {
  width: 500px;
  padding: 24px;
  color: black;
  background-color: white;
}
.body-login h3 {
  font-weight: 900;
  margin-bottom: 42px;
  text-transform: uppercase;
}

#btn-submit,
#btn-submit:hover {
  font-family: "articulat-cf", sans-serif;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
  color: black;
  background: none;
  min-height: unset;
  height: 32px;
  cursor: pointer;
}

.btn-login,
.btn-login:hover,
.btn-login:visited,
.btn-login:active {
  color: white;
  background-color: black;
  text-transform: uppercase;
  padding: 24px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 48px;
  text-align: center;
  width: 260px;
}

.logout-msg {
  font-size: 18px;
  text-transform: uppercase;
}

.a-login,
.a-login:visited,
.a-login:hover,
.a-login:active {
  font-weight: bold;
  font-size: 15px;
  color: black;
  text-transform: uppercase;
  margin-top: 12px;
  text-decoration: underline;
}

#mob {
  color: white;
  z-index: 100;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/city_007_small.jpg);
}
#mob .overlay {
  padding: 120px 12px 12px 12px;
  align-items: center;
  text-align: center;
}

#mob-hdr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#landingOverlay {
  color: white;
}

.no-input {
  pointer-events: none;
}

.blurb {
  width: 380px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
}

.fader {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.hide {
  opacity: 0;
}

.instruction {
  position: relative;
  color: white;
  border: 2px solid white;
  border-bottom: none;
  max-width: 75%;
  padding: 40px;
}
.instruction .inst-l, .instruction .inst-r {
  position: absolute;
  left: 0;
  width: 44%;
  height: 100%;
  border-bottom: 2px solid white;
}
.instruction .inst-r {
  left: unset;
  right: 0;
}
.instruction span {
  max-width: 75%;
  line-height: 1.2rem;
  text-align: center;
}

#instClose {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  width: 48px;
  height: 48px;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
}

#logo,
#badge {
  position: absolute;
  top: 32px;
  left: 32px;
  max-height: 64px;
  pointer-events: all;
}

#logo {
  left: unset;
  right: 32px;
}

footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 64px;
  z-index: 3;
}
footer #stripe {
  position: absolute;
  width: 100%;
  height: 12px;
  bottom: 0;
}
footer .tab {
  color: black;
  padding: 12px;
  margin: 0 4px;
  cursor: pointer;
  width: 160px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
footer .tab.bg-red, footer .tab.bg-orange {
  color: white;
  cursor: default;
}

#tabQuiz {
  position: absolute;
  bottom: -115%;
  right: 60px;
  width: 120px;
  z-index: -1;
  transition-property: bottom;
  transition-duration: 250ms;
  transition-timing-function: ease-out;
  background-color: rgba(255, 255, 255, 0.5);
}
#tabQuiz img {
  margin-bottom: 10px;
}

.show-quiz {
  bottom: 12px !important;
}

#panelOverlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(-420px - 20px);
  width: 420px;
  background-color: white;
  z-index: 5;
  transition-property: right;
  transition-duration: 500ms;
  box-shadow: rgba(0, 0, 0, 0.5) 0 0 7px 3px;
  overflow: auto;
}
#panelOverlay.show-hotspot {
  right: 0;
}
#panelOverlay ul {
  margin-top: 8px;
}
#panelOverlay li {
  margin-top: 4px;
}
#panelOverlay li > ul {
  margin-top: 0;
  margin-bottom: 8px;
}
#panelOverlay .splide li {
  margin: 0;
}
#panelOverlay #title-container {
  position: relative;
  height: 48px;
  justify-content: space-between;
}
#panelOverlay #l-stripe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
}
#panelOverlay #title {
  font-weight: bold;
  margin-left: 20px;
}
#panelOverlay #close {
  width: 32px;
  border: 2px solid black;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  margin-right: 10px;
}
#panelOverlay #img {
  width: 100%;
}
#panelOverlay #body {
  padding: 10px 20px 30px;
}
#panelOverlay #body p {
  margin-bottom: 10px;
}
#panelOverlay #body ul {
  padding-left: 20px;
}
#panelOverlay #body li {
  margin-bottom: 10px;
}

#menu {
  position: absolute;
  top: 64px;
  right: -420px;
  width: 420px;
  height: 450px;
  background-color: white;
  z-index: 9;
  transition-property: right;
  transition-duration: 500ms;
  box-shadow: #00000030 0 0 18px 0;
}
#menu.show-menu {
  right: 0;
}
#menu .topbar {
  justify-content: space-between;
  padding: 18px 14px 14px 50px;
}
#menu .logout,
#menu .logout:active,
#menu .logout:hover,
#menu .logout:visited {
  font-weight: bold;
  font-size: 0.75rem;
  text-decoration: none;
  color: black;
}
#menu #home {
  cursor: pointer;
}
#menu .menu-content {
  padding-left: 50px;
}
#menu .menu-title {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
  height: 28px;
}
#menu .menu-title.red {
  border-bottom: 3px solid #ED1C24;
}
#menu .menu-title.orange {
  border-bottom: 3px solid #F37520;
}
#menu .menu-title.gray {
  border-bottom: 3px solid #606060;
}
#menu .menu-item,
#menu .menu-item:visited {
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 8px;
  padding-left: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}

#quizBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.5);
}

.quiz-btn {
  position: absolute;
  width: 150px;
  margin: 0 !important;
  bottom: 24px;
  right: 18px;
}
.quiz-btn.disabled {
  background-color: gray !important;
}

#remediation {
  position: absolute;
  left: calc(420px + 24px);
  bottom: 20px;
  width: 310px;
  height: 110px;
  font-size: 0.85rem;
}

#quiz {
  position: relative;
  width: 930px;
  height: 560px;
  background-color: white;
  z-index: 8;
  transition-property: right;
  transition-duration: 500ms;
  box-shadow: #00000030 0 0 18px 0;
}
#quiz.show-quiz {
  right: 0;
}
#quiz button {
  font-size: 1.125rem;
  text-transform: uppercase;
  margin: 28px 0;
  border: none;
  cursor: pointer;
}
#quiz .topbar {
  position: relative;
  align-items: center;
  height: 90px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: black;
}
#quiz .topbar #topLogo {
  margin-left: 24px;
}
#quiz .topbar span {
  margin-left: 18px;
}

.qul, .quls {
  display: inline-block;
  margin: 0;
  min-width: 80px;
  border-bottom: 1px solid black;
}

.quls {
  min-width: 40px;
}

.quiz-body {
  position: relative;
  width: 100%;
  height: calc(560px - 90px);
  align-items: stretch !important;
}

#quizImg {
  width: 420px;
  background-color: lightgray;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#quizQuestion {
  width: 510px;
  padding: 18px;
}

#quizEnd, #quizFail {
  text-align: center;
}

#quizSlides {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#quizSlides h2 {
  margin-bottom: 8px;
}
#quizSlides page {
  min-width: 930px;
}
#quizSlides .page-body {
  width: 580px;
}
#quizSlides .question-hdr {
  font-weight: bold;
  font-size: 0.9rem;
}
#quizSlides .question {
  margin-top: 6px;
  margin-bottom: 24px;
}
#quizSlides .answers {
  padding-left: 24px;
}
#quizSlides .answer {
  width: 100%;
  min-height: 44px;
  margin-bottom: 12px;
  color: black;
  background-color: #f3f3f3;
  cursor: pointer;
}
#quizSlides .answer.selected {
  color: #f3f3f3;
  background-color: black;
}
#quizSlides .answer-ltr {
  font-weight: bold;
  text-transform: uppercase;
  width: 44px;
}
#quizSlides .answer-img {
  width: 44px;
}
#quizSlides .answer-img img {
  width: 25px;
}
#quizSlides .answer-txt {
  align-items: center;
}

#topLogo {
  height: 50px;
}

#qclose {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 36px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
}

#back {
  position: absolute;
  top: 100px;
  left: 48px;
  width: 100px;
  height: 40px;
  cursor: pointer;
}
#back img {
  margin-right: 2px;
  width: 24px;
  transform: translateY(-1.5px);
}

#spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 12;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #ED1C24;
}

.loader.orange::after {
  border-bottom-color: #F37520;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.splide:not(.is-overflow) .splide__pagination {
  display: flex !important;
}

button.splide__pagination__page {
  min-height: 12px;
  min-width: 12px;
  max-width: 12px;
  max-height: 12px;
  border-radius: 6px;
  margin: 4px;
  background-color: white;
  border: 1px solid #c1c1c1;
}
button.splide__pagination__page.is-active {
  background-color: #c1c1c1;
}

.splide__slide div {
  width: 420px;
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#muteBtn {
  position: absolute;
  height: 42px;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  cursor: pointer;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.quiz-check {
  margin-left: 8px;
}

/*# sourceMappingURL=index.css.map */
