.quiz label{display:flex; cursor: pointer; align-items:center;}
.quiz label:last-child{margin-bottom:20px;}
.quiz ul{margin:20px 0; padding:0;}
.quiz .answer {
    border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.quiz .answer:hover {
  background: #9faab7;
}
.quiz .answer:checked {
  background: #40e0d0;
}
.quiz .answer:checked::before {
  height: 40px;
  width: 40px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 40px;
}
.quiz .answer:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.quiz .answer radio {
  border-radius: 50%;
}
.quiz .answer radio::after {
  border-radius: 50%;
}
.quiz #quizCards1,.quiz #quizCards2,.quiz #quizCards3,.quiz #quizCards4{display: none;}
.quiz .mga-card{
  border: 1px solid #BCBCBC;
  text-align: center;
  padding: 25px;
  margin: 10px 15px;
  width:25%;
  box-shadow:2px 4px 4px rgba(0, 0, 0, 0.1);
}
.quiz .mga-card:first-child{margin-left:0;}
.quiz .mga-card:last-child{margin-right:0;}
.quiz .mga-card p{font-size: 18px;}
.quiz .mga-btn{
  background: #40E0D0;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.5s;
  border:0;
}
.quiz a{text-decoration:underline;}
.quiz a:hover{color: #40E0D0;}
.quiz .mga-btn:hover{
  color:#fff; box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
}
.quiz .quizAnswers{margin:10px 0;}
.quiz .quizScore{font-size:1.5rem;}