/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/scripts/styles/reset.css ***!
  \************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
.right-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.right-bar > li {
  box-sizing: border-box;
  font-weight: bold;
  background-color: #fff;
  color: rgb(104, 1, 104);
  font-size: min(1rem, 18pt);
  margin: 0px 5px 0px 5px;
  border: 4px solid pink;
  height: 6vw;
  width: max(16vw, 120px);
  padding-top: 0.6vh;
  cursor: pointer;
  border-radius: 1vw;
  box-shadow: 1vw 1vw gray;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.right-bar > li span {
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (width > 1000px) {
  .right-bar > li > p {
    height: 6vw;
    width: 16vw;
  }
}
.right-bar > li:hover {
  filter: hue-rotate(300deg);
}

.preview-right {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 4px solid pink;
  width: max(16vw, 120px);
  justify-content: center;
  border-radius: calc(max(16vw, 120px) / 20);
  border-radius: calc(max(16vw, 120px) / 10);
}

.preview-right > p {
  box-sizing: border-box;
  font-size: 1.25rem;
  font-weight: bold;
  color: teal;
  padding: 1vw;
  text-align: center;
}

#lhLimit > p {
  background: url("../src/rightarrow1.jpg");
  background-size: 3.2vw;
  background-position: bottom 0.3vw right 8vw;
  background-repeat: no-repeat;
}

#rhLimit > p {
  background: url("../src/leftarrow1.jpg");
  background-size: 3.2vw;
  background-position: bottom 0.3vw right 4.8vw;
  background-repeat: no-repeat;
}

#fullLimit > p {
  background: url("../src/biarrow1.jpg");
  background-size: 4vw;
  background-position: bottom 0.4vw right 6vw;
  background-repeat: no-repeat;
}

#funcValue > p {
  background: url("../src/downarrow1.jpg");
  background-size: 2.5vw;
  background-position: bottom 0.4vw right 6.8vw;
  background-repeat: no-repeat;
}

#continuity > p {
  background: url("../src/wavyarrow.png");
  background-size: 4vw;
  background-position: bottom 0vw right 5.9vw;
  background-repeat: no-repeat;
}

@keyframes loadNewPt {
  from {
    background-color: rgb(104, 1, 104);
    font-size: 18pt;
  }
  to {
    background-color: white;
    font-size: 14pt;
  }
}
#ptLabel {
  margin-top: 0px;
  padding-top: 4px;
  border: none;
  font-size: 14pt;
  cursor: auto;
  height: 30px;
  background-color: white;
  animation-name: loadNewPt;
  animation-duration: 3s;
  border: 2px solid rgb(104, 1, 104);
}

@media screen and (width < 700px) {
  #funcValue > span {
    font-size: 1rem;
  }
}
.full-size {
  display: flex;
  justify-content: flex-start;
}

.canvas-container {
  width: 80vw;
  height: 80vh;
}

.splash-screen {
  --width: 80vw;
  width: 80vw;
  --height: min(80vw, 80vh);
  height: min(80vw, 80vh);
  background-color: lightcyan;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-content: space-between;
  position: absolute;
  top: calc(50% - min(80vw, 80vh) / 2);
  left: calc(50% - 40vw);
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  border-radius: 8vw;
  border: 3px solid darkgreen;
}

.splash-screen em {
  font-size: min(3.6vw, 3.6vh);
  color: darkgreen;
}

.splash-screen em:first-of-type {
  position: relative;
  top: 3vh;
}

.splash-screen > h1 {
  color: rgb(104, 1, 104);
  font-size: 4.2vw;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

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

#splash-caption {
  font-size: 2.4vw;
  text-align: left;
  width: 40vw;
  padding-left: 8vw;
  color: rgb(104, 1, 104);
}

.mini-splash {
  background-color: lightcyan;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-content: space-between;
  position: absolute;
  text-align: center;
  border-radius: 15px;
  border: 3px solid darkgreen;
  font-size: 1.33rem;
  padding: 10px;
}

.continue-button {
  font-weight: bold;
  color: darkgreen;
  cursor: pointer;
}

.disabledbutton {
  pointer-events: none;
  opacity: 0.4;
}

.overlay {
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
  text-align: center;
  display: none;
}

.heading-main {
  color: rgb(104, 1, 104);
  height: 52pt;
  font-size: 3.6vw;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#status-bar {
  text-align: center;
  border: 3px dotted gray;
  display: none;
}

#ashley {
  height: 24px;
  width: 16px;
  background: url("../src/WalkingGirl2.png");
  background-size: 84px;
  background-position: bottom 54px right -2px;
  position: absolute;
  margin: 0px;
}

#ashleyface {
  height: 24vw;
  width: 16vw;
  background: url("../src/WalkingGirlForward.png");
  background-size: 72vw;
  background-position: bottom 47vw right -1vw;
}

@keyframes glow {
  from {
    filter: drop-shadow(0px 0px 16px rgb(104, 1, 104));
    transform: scale(3);
  }
  to {
    filter: none;
  }
}
.logos {
  height: 3.6vw;
}
