::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  border: none;
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 50px;
}

html,
body {
  margin: 0px;
}

body {
  background-color: var(--web-bg);
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  margin-bottom: 5px;
  padding-right: 30px;
}

h1 {
  margin: 0px;
  font-weight: 900;
}

h2 {
  margin: 0px;
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  margin: 0px;
  font-size: 1.6em;
  font-weight: 900;
}

ol {
  padding-right: 30px;
}

button {
  font-family: inherit;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

button:active {
  box-shadow: none;
}

button:disabled:hover,
button[disabled]:hover {
  cursor: not-allowed;
}

button[hidden] {
  visibility: hidden;
}

.btn {
  flex-direction: row;
  border-radius: 12px;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  font-size: large;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  cursor: pointer;
}

.regular {
  font-weight: 300;
}

.tb {
  display: table;
}

.td {
  display: table-cell;
}

.clear-fix {
  clear: both;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.videos {
  text-align: center;
}

.video--responsive {
  display: block;
  margin: auto;
}

.flex--space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.rubric {
  top: 140px;
  left: 70px;
  display: inline;
  position: relative;
  padding: 1rem;
  margin: 0;
  height: 22px;
  color: var(--non-black);
}

.text-padding {
  padding: 0.2rem 0.5rem;
}

.black-transp {
  background-color: rgba(0, 0, 0, 0.8);
}

.black-transp2 {
  background-color: rgba(0, 0, 0, 0.2);
}

.white-transp {
  background-color: rgba(255, 255, 255, 0.8);
}

.bgGrey {
  background-color: var(--web-bg);
  color: var(--non-black) !important;
}

.bgPic {
  background-size: cover;
}

.bgBlack a {
  color: #fff !important;
  text-decoration: underline;
}

.relative {
  position: relative !important;
}

.modal {
  width: 600px;
  background-color: white;
  border: 7px solid var(--qm-darkBlue);
  border-radius: 14px;
  padding: 2.3rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease-in-out;
}

.modal-content {
  width: 100%;
  height: 50%;
  min-height: 220px;
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.modal-content p {
  padding: 0;
  margin: 0;
}

.fill {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.main-container {
  max-width: 850px;
  width: 100%;
  margin: auto;
}

.main-contents {
  width: 100%;
  margin: auto;
  /* overflow: hidden; */
}

#app {
  display: none;
  width: 100%;
  min-height: 600px;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-color: #fff;
}

.cover-screen {
  display: none;
  z-index: 10;
}

.overlay-text {
  background-color: rgba(105, 94, 94, 0.8);
  position: absolute;
  padding: 5px;
  border-radius: 0 0 5px 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  color: white;
  font-weight: 800;
}

.closeBtn {
  display: none;
  width: 32px;
  height: 32px;
  margin: 6px;
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
}

.circle {
  height: 220px;
  width: 220px;
  border: 2px solid var(--DES-darkGreen);
  border-radius: 50%;
  position: absolute;
  top: -18%;
  left: -7%;
}
.bgDESprimary .circle {
  border-color: var(--qm-darkYellow);
}
.bgDESsecondary .circle {
  border-color: var(--qm-darkBlue);
}

.circle:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  top: 216px;
  left: 112px;
  background: var(--DES-darkGreen);
}
.bgDESprimary .circle:after {
  background: var(--qm-darkYellow);
}
.bgDESsecondary .circle:after {
  background: var(--qm-darkBlue);
}

.elem:hover .outer-circle {
  animation-name: hover-rotate1;
}
.elem:hover .inner-circle {
  animation-name: hover-rotate2;
}

.circle-br-corner {
  border-radius: 50%;
  position: absolute;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.circle-br-corner:after {
  content: "";
  border-radius: 50%;
  position: absolute;
}

.outer-circle {
  height: 180px;
  width: 180px;
  border: 2px solid var(--DES-darkGreen);
  bottom: -32%;
  right: -35%;
  animation-duration: 1.2s;
}
.bgDESprimary .outer-circle {
  border-color: var(--qm-darkYellow);
}
.bgDESsecondary .outer-circle {
  border-color: var(--qm-darkBlue);
}

.outer-circle:after {
  width: 0.6rem;
  height: 0.6rem;
  top: 62px;
  left: -3px;
  background: var(--DES-darkGreen);
}
.bgDESprimary .outer-circle:after {
  background: var(--qm-darkYellow);
}
.bgDESsecondary .outer-circle:after {
  background: var(--qm-darkBlue);
}

.inner-circle {
  height: 124px;
  width: 124px;
  border: 2px solid var(--qm-darkYellow);
  animation-duration: 2.2s;
  bottom: -21%;
  right: -24%;
}
.bgDESprimary .inner-circle {
  border-color: var(--qm-darkBlue);
}
.bgDESsecondary .inner-circle {
  border-color: var(--DES-darkGreen);
}

.inner-circle:after {
  width: 0.6rem;
  height: 0.6rem;
  top: 46px;
  left: -5px;
  background: var(--qm-darkYellow);
}
.bgDESprimary .inner-circle:after {
  background: var(--qm-darkBlue);
}
.bgDESsecondary .inner-circle:after {
  background: var(--DES-darkGreen);
}

.btn-close {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
  padding: 0;
  color: var(--non-black);
  outline: none;
  top: 32px;
}

.btn-close:hover {
  background: none;
  opacity: 0.7;
}

.btn-close i {
  font-size: 22px;
}
.bgBlack .btn-close i, .bgDESprimary .btn-close i {
  color: #fff;
}

.btn-container {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.btn-container .btn {
  width: 30%;
  height: 50px;
}

.inner-content {
  margin: 10px 20px;
  position: relative;
}
.inner-content .sub-heading {
  margin: 0;
}

.flex-container {
  display: flex;
  width: 96%;
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
}

.fillMobile {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
}

.bgDESprimary .profile-card-container .heading, .bgDESprimary p, .bgDESsecondary .profile-card-container .heading, .bgDESsecondary p {
  color: var(--non-black);
}
.bgDESprimary .stat-name-text, .bgDESsecondary .stat-name-text {
  min-width: 4rem;
}
.bgDESprimary .stat-list-item:nth-of-type(even) p, .bgDESsecondary .stat-list-item:nth-of-type(even) p {
  color: white;
}

.muteBtn {
  height: 40px;
  width: 40px;
  padding: 0;
  box-shadow: none;
}
.muteBtn i {
  font-size: 20px;
  color: var(--non-black);
}
.muteBtn svg {
  height: 20px;
  color: var(--non-black);
}

.opacity {
  opacity: 0.6;
}

.content-flex-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: normal;
  margin: 0 5px;
}

.button-container-top {
  position: relative;
  padding-top: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  min-height: 123px;
}
.button-container-top .option {
  display: flex;
  flex-direction: column;
  width: 135px;
  background-color: rgba(54, 69, 79, 0.7);
  color: #fff;
}
.button-container-top .option img {
  pointer-events: none;
}
.button-container-top .option[disabled] {
  opacity: 1;
  background-color: var(--web-bg);
  color: black;
}
.button-container-top .option[disabled] img {
  opacity: 1;
}
.button-container-top .btn-plunge, .button-container-top .btn-try-again {
  padding: 0.8rem;
}
.button-container-top .promptBlock {
  display: none;
  height: 100%;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.button-container-top .promptBlock p {
  margin: 0;
  padding: 0;
}
.button-container-top .proceedBtn {
  padding: 1rem 0;
  min-width: 160px;
}

.button-container-bottom {
  position: relative;
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.button-container-bottom .proceedBtn {
  padding: 1rem 0;
  min-width: 160px;
}
.button-container-bottom .resetBtn {
  padding: 1rem 0;
  min-width: 160px;
}

.hidden {
  display: none !important;
}

.bigDynamiteImg {
  width: 80px;
}

.baby-overdoseImg {
  width: 220px;
  margin-top: -150px;
}

.baby-delayImg {
  width: 250px;
  margin-top: -150px;
  margin-left: 65px;
}

.flex {
  display: flex !important;
}

.input-box {
  width: 60%;
  min-width: 9rem;
  display: flex;
  justify-content: space-between;
}
.input-box .textInput {
  padding: 0.8rem 0;
  width: 80%;
}

.recap-container {
  position: relative;
  width: 200px;
  height: 350px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
}
.recap-container .recap-item {
  display: none;
  width: 100px;
}
.central-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 400px;
}

.instructions {
  display: none;
  width: 270px;
  position: absolute;
  top: 115px;
  left: 190px;
}
.instructions p {
  padding: 0;
  margin: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.pulse-element {
  animation: pulse 1.6s ease-in-out 4;
}

.feedback-container {
  display: none;
  z-index: 2;
  margin: 0;
  width: 195px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 12px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  background-color: var(--web-bg);
  padding: 1rem;
}
.feedback-container .feedbackText {
  padding: 0.5rem 0 0.5rem 0;
  margin: 0;
}

.orange {
  background-color: orange;
}

.realign {
  top: 130px;
}

.proceedBtn {
  display: none;
}

.svg-container {
  display: none;
  position: absolute;
  margin: auto;
  top: 30px;
  bottom: 0;
  left: -65px;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 1;
}
.svg-container .btn-plunge {
  background: transparent;
  border: none;
  box-shadow: none;
}
.svg-container svg {
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.yellowFill {
  fill: #c29b12;
}

.redFill {
  fill: #c76b66;
}

.blackFill {
  fill: var(--non-black);
}

.brownFill {
  fill: #5f4c0f;
}

.plunge {
  animation: 6s move ease forwards;
}

@keyframes move {
  100% {
    height: 0px;
    y: 2000px;
  }
}
.follow {
  animation: 6s follow ease forwards;
}

@keyframes follow {
  100% {
    y: 550px;
  }
}
.graphic {
  display: none;
}

.mouse-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* top: 20px; */
  left: 0;
  height: 350px;
  width: 100%;
  /* margin: auto;*/
}
.mouse-container .dynamite1 {
  margin-left: 10px;
  width: 100px;
}
.mouse-container .smallBoom {
  margin-top: -100px;
  width: 230px;
}
.mouse-container .bigBoom {
  margin-top: -235px;
  width: 250px;
}

@keyframes hover-rotate1 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes hover-rotate2 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(30deg);
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.2em;
  }
  .main-container {
    width: 100%;
    max-width: 100%;
    min-height: -moz-min-content;
    min-height: min-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
  .btn-close {
    top: 16px;
  }
  .btn-close i {
    font-size: 32px;
  }
  .outer-circle {
    height: 65px;
    width: 65px;
    bottom: -34%;
    right: -9%;
  }
  .outer-circle:after {
    width: 0.6rem;
    height: 0.6rem;
    top: 19px;
    left: -4px;
  }
  .inner-circle {
    height: 45px;
    width: 45px;
    bottom: -25%;
    right: -7%;
  }
  .inner-circle:after {
    width: 0.6rem;
    height: 0.6rem;
    top: 14px;
    left: -5px;
  }
  .circle:after {
    top: 138px;
    left: 211px;
  }
}/*# sourceMappingURL=app.css.map */