@import url('https://fonts.googleapis.com/css?family=Quattrocento+Sans&display=swap');
html{
  padding: 0;
  margin: 0;
  height: 100%;
}
body{
  position: relative;
    min-height: 100%;
  width: 100%;
  padding: 0 20px;
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: #fff;
  color: #475579;
  font-family: 'Quattrocento Sans', sans-serif;
}

.custom-box{
  background-color: #272f4b;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
  min-height: 400px;
  padding: 20px;
  text-align: center;
}
.adbanner{
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.ad{
  position: relative;
  width: 100%;
  margin: 30px -20px;
}
.top-slogan {
    font-size: 12px;
    letter-spacing: 10px;
    text-transform: uppercase;
  margin-top: 20px;
  font-weight: bold;
}
.logo{
  text-align:center;
}
.logo-name {
  text-align: center;
    font-size: 30px;
    color: #7d8cb7;
  font-family: 'Quattrocento Sans', sans-serif;
}
.custom-block{
  margin: 20px 0;
}

.custom-input {
    background: #2e344e;
    border: 1px solid #1F253D;
    padding: 5px 0;
    margin: 25px 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    display: block;
    outline: none;
    transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}
.custom-input input{
    padding: 10px;
    color: #d8cbb8;
    font-size: 1em;
    background: none;
    outline: none;
    border: none;
    margin: 0px auto;
    width: 75%;
    -webkit-apperance: none;
}
.custom-input:hover {
    border: 1px solid #dea976;
}

.custBtn {
    background: #191f35;
    color: #ffffff !important;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    height: 0px;
    line-height: 0;
    padding: 18px 30px;
    text-transform: capitalize;
    border-radius: 1px;
    letter-spacing: 0.5px;
    border: 0px !important;
    cursor: pointer;
    border-radius: 100px;
}
.custBtn:hover {
    background: #1e253e;
    color: #ffffff;
}
.custBtn:focus{
    outline: none;
}

.countdown{
  text-align: center;
  margin: 25px 0 5px 0;
}
.countdown ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.countdown ul li{
    display: inline-block;
    background-color: #323a58;
    border: 1px solid #323a58;
    color: #7d8ba9;
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
    margin-right: 5px;
    padding-top:  2px;
    border-radius: 100%;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.16), 0 1px 2px 0 rgba(0,0,0,.12)
}
.countdown ul li.active{
    background-color: #4b4f6a;
    color: #deb076;
  border: 1px dashed #deab76;
}

.skipBtnWrapper {
    padding: 10px;
    margin: 0;
  text-align: center;
}

.question-text {
    font-size: 20px;
  text-align: center;
  margin: 30px 0;
  color: #e0e8ff;
}

.custom-card{
  position: relative;
  width: 100%;
  background-color: #28314e;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
  text-align: center;
  cursor: pointer;
}

.custom-card.active{
  background-color: #eca381;
}
.custom-card .q-img{
  position: relative;
  width: 100%;
  padding: 15px;
}
.custom-card .q-img img{
  max-width: 100%;
  height: auto;
  border-radius: 100%;
  border: 1px solid #deac76;
  padding: 5px;
}
.custom-card .custom-card-body{
  background-color: #191f35;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.custom-card .custom-card-body .question-option{
  font-size: 20px;
  color: #fff;
}


/* Processing*/
.processing_container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
  width: 100%;
}
.processing_container .loader {
  max-width: 16rem;
  width: 100%;
  height: auto;
  stroke-linecap: round;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}
.processing_container .loader circle {
  fill: none;
  stroke-width: 8;
  -webkit-animation-name: preloader;
  animation-name: preloader;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animationcount: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animationfunction: ease-in-out;
  -webkit-transform-origin: 170px 170px;
  transform-origin: 170px 170px;
  will-change: transform;
}
.processing_container .loader circle:nth-of-type(1) {
  stroke: #48cfae;
  stroke-dasharray: 540;
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.processing_container .loader circle:nth-of-type(2) {
  stroke: #4fc0e8;
  stroke-dasharray: 450;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.processing_container .loader circle:nth-of-type(3) {
  stroke: #ac92ed;
  stroke-dasharray: 360;
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.processing_container .loader circle:nth-of-type(4) {
  stroke: #f5706c;
  stroke-dasharray: 275;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
:nth-of-type(5) {
  stroke: #fec95c;
  stroke-dasharray: 190;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
@-webkit-keyframes preloader {
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@keyframes preloader {
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
.process{
  display: none;
  margin: 40px 0;
  background-color: #272f4b;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
  padding: 20px;
  text-align: center;
}
.process h2{
    font-size: 20px;
  color: #7d8cb7;
}
.process h3{
    font-size: 16px;
  color: #556486;
}

.result, .share-response {
    margin-bottom: 50px;
    background-color: #272f4b;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
    text-align: center;
}
.share-response h2 {
  color: #dea976;
    font-size: 25px;
}

.share-response h3 {
    font-size: 16px;
}
.share-response .custom-input input{
  padding: 10px;
    width: 100%;
}

.result{
    margin-bottom: 50px;
    background-color: #272f4b;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
    text-align: center;
}
.wp {
    color: #fff !important;
}
.wp img {
    margin-right: 10px;
}
.addthis-section {
    margin: 20px 0;
}
.who-know{
  margin: 20px 0;
}
.who-know h2{
  font-size: 20px;
  margin-bottom: 10px;
}
.table-bg{
  background-color: #191f35;
  color: #deaa76;
}
#point-table tbody tr:nth-of-type(odd){
  background-color: #222a44;
  color: #6c7ba5;
}
#point-table tbody tr:nth-of-type(even){
  background-color: #424c70;
  color: #6c7ba5;
}
.challenge-box{
    margin-bottom: 50px;
    background-color: #272f4b;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
    text-align: center;
}
.challenge-box h2 {
  color: #dea976;
    font-size: 25px;
}

.challenge-box h3 {
    font-size: 16px;
}
.right{
  background-color: #4fff77;
  opacity: 0.6;
}
.wrong{
  background-color: #ff4f4f;
  opacity: 0.6;
}

.circle-progress-value {
    stroke-width: 50px;
    stroke: hsl(100, 90%, 70%);
  }
  .circle-progress-circle {
    stroke-width: 40px;
    stroke: hsl(100, 15%, 60%);
    fill: hsl(100, 15%, 60%);
  }
  .circle-progress-text {
    fill: white;
    font-weight: bold;
  }

  .deleted-quiz{
    font-size: 18px;
  }
  .long-text{
    text-align: left;
    color: #b9c6ec;
    font-size: 18px;
  }
.footer{
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  background-color: red;
  border-top: 1px solid #28304c;
  padding: 12px 20px;
  text-align: center;
}
.footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li{
  display: inline-block;
  margin-right: 5px;
}
.footer ul li a{
  color: #475579;
}
