html,
body {
  font-family: 'Open Sans', sans-serif;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #777;
    border-radius: 50%;
}

.container:hover input ~ .checkmark {
    background-color: #999;
}

.container input:checked ~ .checkmark {
    background-color: #3049dc;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

div.content {
  max-width: 1024px;
  margin: 0 auto;
}
div.content div.radioOptions {
  padding: 20px;
  margin-bottom: 10px;
}

div.content div.controls {
  height: 10px;
  position: relative;
  padding-left: 20px;
}

div.content div.controls button.next {
    background-color: #3049dc;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
}

div.content div.controls button.next:hover {
    background-color: #596de7;
}


div.content button.playButton {
    background-color: #3049dc;
    border: none;
    color: white;
    width: 75px;
    height: 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
}

div.content button.playButton:hover {
    background-color: #596de7;
}


div.content div.display {
  position: relative;
  width: 1024px;    
  height: 200px;   
  margin-bottom: 10px;
}

div.content div.display canvas { 
  width: 1024px;    
  height: 200px;  
  position: absolute;
  top: 0px;
  left: 0px;
}
div.content div.display canvas.framing {
  pointer-events: none;
}

div.content div.display img {
  display: none;    
  pointer-events: none;
  position: absolute;
  top: 138px;
  left: 2px;
  width: 30px;
  height: 30px;
}

div.content img.rightOrWrong { 
  pointer-events: none;  
  width: 12px;
  height: 12px;
  display: none;
}

div.theQuestion {
  pointer-events: none;  
  margin: 60px 0px 45px;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px !important;
} 

p.jsondata { 
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important;    
    padding-top: 20px;
    max-width: 1024px;
    margin: 0 auto; 
}

canvas.main {
    width: 336px; 
    height: 380px; 
    width = "336"; 
    height = "380";
}

canvas.options {
    padding-top: 65px;
    width: 168px; 
    height: 168px; 
    width = "168"; 
    height = "168";
}

.patternBox {
    border: 4px solid; 
    height: 380px;
    width: 1024px;
    position: relative;
    margin-top: 15px;   
}

.flatQuestion {
    border-right: 4px solid;
    width: 336px; 
    height: 380px; 
    display: inline-block; 
    float: left; 
}

.optionA,
.optionB,
.optionC,
.optionD {
    padding-top: 90px;
    width: 168px; 
    height: 286px; 
    display: inline-block; 
    float: left; 
}

.optionA p,
.optionB p,
.optionC p,
.optionD p {
    padding-bottom: 10px;
    text-align: center; 
    font-size: 24px; 
}

input[type=range] {
  margin-top: 10px;
  width: 336px;   
  background: #646464;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent; 
  border-color: transparent;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  border: 1px solid #000000;
  height: 25px;
  width: 15px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: 0px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
   
}

input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 25px;
  width: 15px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer; 
}