@charset "utf-8";
/* CSS Document */

canvas {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin: 1rem auto;
	background-color:white;
}
:root {
 --accent-color: #1fa8f5;
 --accent-color-fg: #fefefe;
 --backdrop-color: #CCC;
 --app-content-background-color: #c0d8ec;
 --inset-shadow: rgba(7, 43, 74, 0.3);
 --outset-shadow: rgba(223, 240, 255, 0.25);
 --clay-box-shadow: rgba(7, 43, 74, 0.3);
 --clay-background-color: #c0d8ec;
 --clay-fg-color: #444;
}

.questions {
	text-align:center;
	padding: 5 5 5 5;
	width: 65%;
	height: auto;
	margin:0 auto;
 /*   background-color: rgb(255, 255, 255);
		background-color: var(--backdrop-color);*/
	color:#333;
	border: 2px solid #C4EAFF;
	border-radius: 35px;/*	width: 80%;*/
	font-size: 13px;
	background-color:#EAF4FF;
 
}

@media only screen and (max-width: 768px) {
  .questions {
	width: 85%;
	font-size: 14px;
  }
}

@media only screen and (max-height: 575.98px) and (orientation: landscape) {

  .questions {
	font-size: 14px;
  }
}
.questiontitle {
	text-align:center;
	padding: 20 20 20 20;	
	font-size: 19px;
	font-weight:bold;
	padding-bottom: 10px;
	color:#060;
	font-style: italic;
}

.responses {
	padding-top: 10px;
  display: block;
}

.centeredresponse {
	text-align: center;
}

.leftalign {
	display: inline-block;
	text-align: left;
}
.quesdisplay {
	display: block;
	padding: 20px, 20px, 20px, 20px;
	color:#333;
*/
}
.addboxw {
	color: red;
}
.addboxr {
	color: #6AD15D;
}
.addboxq {
	color:#C09;
}
.clearbox {
	border: none;
}
.imagedisplay {
	display:none;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding-top: 5px;
	width: 55%;
	max-width:300px;
}
span.frac {
	display: inline-block;
	text-align: center;
	vertical-align: middle; 
	line-height: 12px;
}
span.frac > sup, span.frac > sub {
	display: block;
	font: inherit;
	line-height: 6px;
/*	padding: 0 0.3em; */
}
span.frac > sup {
	border-bottom: 0.08em solid;
	line-height: 12px;
}
span.frac > span {
	display: none; 
}
.root {
	display: inline-block;
	vertical-align: middle;
	border-top: 1px solid;
	border-left: 1px solid;
	transform: skew(-15deg);
	transform-origin: bottom left;
	margin: 0 10px;
	position: relative;
}
.root:before {
	content: "";
	position: absolute;
	bottom: 0;
	height: 40%;
	width: 5px;
	left: -5px;
	border-top: 1px solid;
	border-right: 1px solid;
	transform: skew(30deg);
	transform-origin: bottom right;
}
.radicand {
	display: inline-block;
	padding-left: 0.5em;
	transform: skew(15deg);
}
#question {
	padding-right: 40px;
	padding-left: 40px;
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
	cursor: pointer;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

a, u {
  text-decoration: none;
}
