

/**************/

.cs-quiz-wrapper ul.tcp_quiz {
  list-style-type: none;
  margin: 24px 0;
}

.cs-quiz-wrapper .tcp_quiz_question {
  width: 100%;
}

.cs-quiz-wrapper .q_holder {
  padding: 0 10px;
}

.cs-quiz-wrapper h3.question {
  font-size: 2rem;
  padding-left: 60px;
}

.cs-quiz-wrapper .response h3 {
  font-size: 1.5em;
  font-weight: bold;
}

.cs-quiz-wrapper h3.question:before {
  content:'\f059';
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  /*margin-right: 24px;*/
}

.cs-quiz-wrapper div.answers {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row wrap;
}

.cs-quiz-wrapper div.answer {
  flex-grow: 0;
  flex-basis: 33%;
}

.cs-quiz-wrapper div.answer button {
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  background: rgba(20, 145, 175, 1);

}

.cs-quiz-wrapper span.huge {
  font-size: 3rem;
  margin-right: 2rem;
}

.cs-quiz-wrapper span.sentence {
  text-transform: initial;
  line-height: 1.25em;
  text-align: left;
}

.cs-quiz-wrapper div.answer:first-child {
  margin-left: 0;
}

.cs-quiz-wrapper div.answer:last-child {
  margin-right: 0;
}

.cs-quiz-wrapper .tcp_quiz_question.calculating {
  display: flex;
  align-items: center;
  height: 250px;
  width: 100%;
  justify-content: center;
}

.cs-quiz-wrapper li.responses>div {	
  width:100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;	
}
.cs-quiz-wrapper .response {
  grid-area: 1 / 1 / 2 / 2;
  z-index: 1;
  text-align: center;
}

.cs-quiz-wrapper .response.applicable {
  z-index: 2;
}

.cs-quiz-wrapper #loadmore {
  display: block;
}

.cs-quiz-wrapper .loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cs-quiz-wrapper .loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}
.cs-quiz-wrapper .loader--dot:first-child {
  background-color: rgba(20, 145, 175, 1);
  animation-delay: 0.5s;
}
.cs-quiz-wrapper .loader--dot:nth-child(2) {
  background-color: #f39200;
  animation-delay: 0.4s;
}
.cs-quiz-wrapper .loader--dot:nth-child(3) {
  background-color: #e84e0f;
  animation-delay: 0.3s;
}
.cs-quiz-wrapper .loader--dot:nth-child(4) {
  background-color: #f39200;
  animation-delay: 0.2s;
}
.cs-quiz-wrapper .loader--dot:nth-child(5) {
  background-color: rgba(20, 145, 175, 1);
  animation-delay: 0.1s;
}
.cs-quiz-wrapper .loader--dot:nth-child(6) {
  background-color: #fbef5a;
  animation-delay: 0s;
}
.cs-quiz-wrapper .loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 10rem;
  margin: auto;
  text-align: left;
}
.cs-quiz-wrapper .loader--text:after {
  content: "Calculating";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;

}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Calculating";
  }
  25% {
    content: "Calculating.";
  }
  50% {
    content: "Calculating..";
  }
  75% {
    content: "Calculating...";
  }
}

@media ( max-width: 940px ) {
  .cs-quiz-wrapper div.answers {
    flex-direction: column;
  }

  .cs-quiz-wrapper div.answer {
    flex-grow: 0;
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .cs-quiz-wrapper div.answer button {
    width:100%;
  }

}

.cs-quiz-wrapper .animated_holder {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.cs-quiz-wrapper .sizer {
  visibility: hidden; /* Not absolute position so we can get the height */
  z-index: -1;
  overflow: hidden;
  float: right;
}

.cs-quiz-wrapper .animate {
  transition: all 2s;
  position: absolute;
  width: auto;
  height: 100%;
  opacity: 0;
}

.cs-quiz-wrapper .spingrow {
  transform: scale(0, 0) rotate(0deg);
}

.cs-quiz-wrapper .spin {
  transform: rotate(360deg);
}

.cs-quiz-wrapper .grow {
  transform: scale(0, 0);
}

.cs-quiz-wrapper .drop {
  transform: translateY(-100%);
}

.cs-quiz-wrapper .climb {
  transform: translateY(100%);
}

.cs-quiz-wrapper .animated_holder.playing .drop,
.cs-quiz-wrapper .animated_holder.playing .climb {
  transform: translateY(0);
  opacity: 1;
}

.cs-quiz-wrapper .animated_holder.playing .grow {
  transform: scale(1, 1);
  opacity: 1;
}
.cs-quiz-wrapper .response.applicable img {
    width: 600px;
}
.cs-quiz-wrapper .animated_holder.playing .spin {
  transform: rotate(0deg);
  opacity: 1;
}

.cs-quiz-wrapper .animated_holder.playing .spingrow {
  transform: scale(1, 1) rotate(360deg);
  opacity: 1;
}

.cs-quiz-wrapper .animation_sub {
  display: none;
}

@media( max-width: 768px ) {
  .cs-quiz-wrapper .animated_holder {
    display: none;
  }
  .cs-quiz-wrapper .animation_sub {
    display: block;
  }
}


/* custom-styling */

.cs-quiz-wrapper .q_count {
  font-size: 1.25em;
}



.cs-quiz-wrapper div.answer button {
  padding-top: 0.8125em;
  padding-bottom: 0.75em;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 1em;
  color: #fff;
  border-radius: 6px;
}

.cs-quiz-wrapper div.answer button:hover{
  box-shadow: inset 0px 150px 20px 50px rgb(0 0 0 / 20%);
}

@media screen and (max-width:48em){

  .cs-quiz-wrapper .q_count {
    font-size: 0.9375em;
  }

  .cs-quiz-wrapper div.answer button{
    margin:0
  }

}


.cs-quiz-wrapper .response.applicable{
  padding:0 15px;
}

.cs-quiz-wrapper .button{
  background-color: #f39200;
  padding-top: 0.8125em;
  padding-bottom: 0.75em;
  padding-left: 1.5em;
  font-size: 1em;
  padding-right: 1.5em;
  font-family: inherit;
  font-weight: normal;
  line-height: 1;
  margin: 0 0 1.25em;
  position: relative;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  height: auto;
  max-width: initial;
  letter-spacing: normal;
  box-shadow: none;
}

.cs-quiz-wrapper .button:hover,
.cs-quiz-wrapper .button:focus{
  box-shadow: inset 0px 150px 20px 50px rgb(0 0 0 / 20%);
  background-color: #f39200;
  color:#fff
}







