/*common css*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #FBF5F3;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

header .headerinner {
  background-color: #341D69;
  padding: 8px 12px;
}
header .headerinnerwthod {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerlogo img {
  width: 230px;
}
header .headerhb {
  width: 26px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .headerhb span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #ffffff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .headerhb span:nth-child(even) {
  left: 50%;
  border-radius: 0 15px 15px 0;
}
header .headerhb span:nth-child(odd) {
  left: 0px;
  border-radius: 15px 0 0 15px;
}
header .headerhb span:nth-child(1),
header .headerhb span:nth-child(2) {
  top: 0px;
}
header .headerhb span:nth-child(3),
header .headerhb span:nth-child(4) {
  top: 9px;
}
header .headerhb span:nth-child(5),
header .headerhb span:nth-child(6) {
  top: 18px;
}
header .headerhb.open span:nth-child(1),
header .headerhb.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .headerhb.open span:nth-child(2),
header .headerhb.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .headerhb.open span:nth-child(1) {
  left: 0px;
  top: 7px;
}
header .headerhb.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
header .headerhb.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
header .headerhb.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
header .headerhb.open span:nth-child(5) {
  left: 0px;
  top: 15px;
}
header .headerhb.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 15px;
}
header .headerhb.open span {
  height: 3px;
}
header .headerlang {
  position: relative;
}
header .headerlangmain {
  width: 140px;
  border-radius: 4px;
  border: 1px solid #150523;
  background: #E3E5EA;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #150523;
  position: absolute;
  right: 0;
  top: -10px;
  z-index: 99;
}
header .headerlangmain i {
  font-size: 24px;
  transition: ease-in-out 0.5s;
}
header .headerlangmain span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}
header .headerlangdd {
  background: #E3E5EA;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #150523;
  width: 100%;
  border-top: 1px solid #ffffff;
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
  max-height: 338px;
  overflow-x: hidden;
}
header .langchild {
  padding: 7px 8px;
  display: block;
}
header .langchild:hover {
  background: #F9D966;
}
header .activelang .headerlangmain i {
  transform: rotate(180deg);
}
header .activelang .headerlangdd {
  display: block;
}
header .headerddmenu {
  overflow: hidden;
  transition: height 0.2s ease-out;
}
header .headerddmenu .headerddmenuinner {
  padding: 10px 0;
}
header .headerddmenu .headerddchild {
  text-align: center;
}
header .headerddmenu .headerddchild a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  width: 218px;
  padding: 10px;
  text-decoration: none;
  display: inline-block;
}
header .headerddmenu .headerddchild a:hover {
  border-radius: 6px;
  background: #E74B38;
}

/*smart scrrol for lang droepdown */
.smart-scrool::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ffffff;
  border-radius: 8px;
  background-color: #ffffff;
}

.smart-scrool::-webkit-scrollbar {
  width: 8px;
  background-color: #ffffff;
}

.smart-scrool::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px #ffffff;
  background-color: #341D69;
}

@media (min-width: 768px) {
  header .mobileheaderlang {
    display: none;
  }
}
@media (max-width: 767px) {
  header .headerlangmain {
    display: none;
  }
  header .mobileheaderlang img {
    width: 28px;
  }
  header .activelang .headerlangmain {
    display: block;
    top: 30px;
  }
}
.mainsection {
  padding-top: 40px;
  padding-bottom: 40px;
}

.maincontainer {
  max-width: 746px;
  margin: 0 auto;
}

.maincontent {
  border-radius: 12px;
  background: #FFEADC;
  border: 1px solid #E74B38;
  text-align: center;
}

/* result page html*/
.resultcontent {
  border-radius: 12px;
  text-align: center;
  padding: 0 18px;
  margin-bottom: 5px;
  position: relative;
  margin-top: 5px;
}
.resultcontent .resulthead {
  color: #341D69;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  /* 44px */
  letter-spacing: -0.8px;
  padding-top: 48px;
  word-wrap: break-word;
}
.resultcontent .resultscoretxt {
  padding-top: 10px;
}
.resultcontent .resultscorehead {
  color: #341D69;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 24px */
  letter-spacing: 0.2px;
  word-wrap: break-word;
}
.resultcontent .resultscoresubhead {
  color: #341D69;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: 0.16px;
  padding-top: 10px;
}

.resultcretenew {
  padding: 36px 0;
  display: flex;
  justify-content: center;
}
.resultcretenew a {
  border-radius: 8px;
  background: #E74B38;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  /* 122.222% */
  letter-spacing: 0.36px;
  min-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 300px;
}
.resultcretenew a:active {
  color: #ffffff;
  transform: scale(0.95);
}

@media (min-width: 767px) {
  .resultcontent .resulthead {
    font-size: 40px;
  }
  .resultcontent .resultpbstip {
    width: 432px;
  }
  .resultcontent .resulttooltip {
    transform: translate(-69%, 0%);
  }
}
/**lang popup start */
.langPopup.modal .modal-dialog {
  max-width: 785px;
  margin: 1.5rem;
  padding-top: 150px;
}
.langPopup.modal .modal-content {
  border-radius: 12px;
  background: #ffffff;
}
.langPopup.modal .modal-header {
  position: relative;
  border-bottom: 0;
  justify-content: center;
  padding-top: 10px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}
.langPopup.modal .modal-header h4 {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  /* 30.8px */
  letter-spacing: 0.22px;
  padding-top: 10px;
}
.langPopup.modal .modal-header .close {
  opacity: 1;
  position: absolute;
  top: 0px;
  right: 7px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.langPopup.modal .modal-header .close img {
  width: 18px;
}
.langPopup.modal .langPopup-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.langPopup.modal .langPopup-boxes .langPopup-box {
  width: 100%;
  margin-bottom: 12px;
  padding: 0 6px;
}
.langPopup.modal .langPopup-boxes .langPopup-box a {
  border-radius: 8px;
  background: #E74B38;
  padding: 17px 0;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  /* 28.8px */
  letter-spacing: 0.36px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
}
.langPopup.modal .langPopup-boxes .langPopup-box a:active {
  background: #FF6300;
  color: #ffffff;
  transform: scale(0.95);
}

.result-sec.mainsection {
  padding-bottom: 10px;
}

.scoreboard-section.result-page-scoreboard {
  margin-top: 0;
}

@media (min-width: 767px) {
  .langPopup.modal .modal-dialog {
    margin: 1.75rem auto;
  }
  .langPopup.modal .langPopup-boxes .langPopup-box {
    width: 180px;
  }
}
/*lang popup end*/
.scoreboard-section {
  margin-top: 40px;
}

.scoreboard-section .sharecontent {
  padding-bottom: 10px;
}

.friendbrdheading {
  font-weight: bold;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  color: #341D69;
  margin: 0;
  padding: 20px 0 10px;
  word-wrap: break-word;
}

.scoreboardsec {
  padding-bottom: 30px;
  margin: 0 16px;
}
.scoreboardsec .table-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
}
.scoreboardsec .table-heading span {
  color: #959595;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}
.scoreboardsec .table-heading span:first-child {
  width: 40%;
  text-align: left;
}
.scoreboardsec .table-heading span:nth-child(2) {
  width: 20%;
}
.scoreboardsec .table-heading span:nth-child(3) {
  width: 15%;
}
.scoreboardsec .table-heading span:nth-child(4) {
  width: 15%;
}
.scoreboardsec ul {
  border-top: 2px solid #ddd;
}
.scoreboardsec ul li {
  display: flex;
  justify-content: space-between;
  background: none;
  align-items: center;
  padding: 8px 0px 8px 50px;
  position: relative;
}
.scoreboardsec ul li span {
  color: #341D69;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.scoreboardsec ul li span:first-child {
  width: 40%;
  text-align: left;
  word-wrap: break-word;
}
.scoreboardsec ul li span:nth-child(2) {
  width: 20%;
}
.scoreboardsec ul li span:nth-child(3) {
  width: 15%;
}
.scoreboardsec ul li span:nth-child(4) {
  width: 15%;
}
.scoreboardsec ul li span img {
  width: 25px;
}
.scoreboardsec ul li::before {
  content: "";
  position: absolute;
  width: 29px;
  height: 35px;
  left: 12px;
}
.scoreboardsec ul li:nth-child(1)::before {
  background: url("../../../img/Default/Default/goldprize.png");
}
.scoreboardsec ul li:nth-child(2)::before {
  background: url("../../../img/Default/Default/silver-1.png");
}
.scoreboardsec ul li:nth-child(3)::before {
  background: url("../../../img/Default/Default/bronze-1.png");
}
.scoreboardsec ul li:nth-of-type(odd) {
  background: #FDFCFA;
}

[dir=rtl] .scoreboardsec .table-heading {
  padding: 0px 40px 0px 0;
}
[dir=rtl] .scoreboardsec .table-heading span:first-child {
  text-align: center;
}
[dir=rtl] .scoreboardsec ul li {
  padding: 8px 40px 8px 0;
}
[dir=rtl] .scoreboardsec ul li span:first-child {
  text-align: center;
}
[dir=rtl] .scoreboardsec ul li::before {
  right: 12px;
  left: auto;
}

.msg_btn_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.msg_btn_list button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.32px;
  padding: 0px 25px;
  min-height: 35px;
  color: #A4A4A4;
  text-align: center;
  margin-top: 10px;
}

/* result page css end */
@media (max-width: 767px) {
  .maincontainer {
    margin: 0 12px;
  }
}
/***result share options****/
.result-shareoptions {
  margin-bottom: 40px;
}
.result-shareoptions .maincontent {
  padding: 20px;
}
.result-shareoptions .friendbrdheading {
  padding-bottom: 15px;
}

.msg_block_list.frendbrduser {
  border-top: 0;
}
.msg_block_list.frendbrduser li {
  background: #EF8451;
  box-shadow: 0px 5.74px 5.74px 0px rgba(239, 132, 81, 0.3215686275);
  border-radius: 8px;
  padding: 15px 0px 15px 50px;
}
.msg_block_list.frendbrduser li span {
  color: #ffffff;
}
.msg_block_list.frendbrduser li .frendbrduser-withnum {
  position: relative;
}
.msg_block_list.frendbrduser li .frendbrdseqnumber {
  position: absolute;
  left: -40px;
}
.msg_block_list.frendbrduser li:nth-child(1)::before {
  background: none;
}
.msg_block_list.frendbrduser li:nth-of-type(odd) {
  background: #EF8451;
}

[dir=rtl] .msg_block_list.frendbrduser li .frendbrdseqnumber {
  right: -30px;
  left: auto;
}

.onlyfrduser {
  max-height: 340px;
  overflow-x: hidden;
  padding-bottom: 20px;
}

/*smart scrrol for lang droepdown */
.frdsmart-scrool::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: transparent;
}

.frdsmart-scrool::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid #E74B38;
}

.frdsmart-scrool::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #E74B38;
}

.frendbrdwtoutuser-withnum {
  position: relative;
}
.frendbrdwtoutuser-withnum .frendbrdseqwtoutuser-withnum {
  position: absolute;
  left: -33px;
}

[dir=rtl] .frendbrdwtoutuser-withnum .frendbrdseqwtoutuser-withnum {
  right: -20px;
  left: auto;
}

.socialsharelist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding-bottom: 20px;
}
.socialsharelist .fullon {
  width: 100%;
}
.socialsharelist .halfon {
  width: 48%;
}
.socialsharelist li {
  margin-bottom: 12px;
}
.socialsharelist li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.16px;
  height: 46px;
}
.socialsharelist li a img {
  width: 20px;
  height: 20px;
}
.socialsharelist li a span {
  padding-left: 5px;
}
.socialsharelist li a:hover {
  background: #14a1cc;
}
.socialsharelist li:last-child {
  margin-bottom: 0;
}
.socialsharelist .whatsapp {
  background: #4DC072;
}
.socialsharelist .facebook {
  background: #415D95;
}
.socialsharelist .msgfacebook {
  background: #4376F6;
}
.socialsharelist .twitter {
  background: #000000;
}
.socialsharelist .snapchat {
  background: #FFF300;
  color: #000000;
}
.socialsharelist .line {
  background: #69BE49;
}
.socialsharelist .instagram {
  background: linear-gradient(280deg, rgba(154, 54, 161, 0.56) 0%, rgba(255, 0, 18, 0.56) 73.96%), #E92C55;
}
.socialsharelist .talk {
  background: #F1DB2F;
  color: #000000;
}
.socialsharelist .vkshare {
  background: #6694D2;
}
.socialsharelist .telegram {
  background: #29AAEC;
}
.socialsharelist .tiktok {
  background: #F1DB2F;
  color: #000000;
}
.socialsharelist .plus-share {
  background: #F1DB2F;
  color: #000000;
  padding: 11px 15px;
}
.socialsharelist .plus-share i {
  background: rgb(1, 102, 255);
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  margin-right: 5px;
  width: 20px;
  height: 24px;
}

.adv-ads-txt {
  font-size: 10px !important;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center !important;
  opacity: 0.7;
  width: 100%;
}

.static_ads {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
  width: 320px;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.static_ads .adv-ads-txt {
  position: absolute;
  top: 0;
}

.custom_ad {
  margin-top: 40px;
}

.top_ad {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.ads_sec {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer {
  background: #341D69;
  padding-top: 24px;
  padding-bottom: 70px;
  text-align: center;
  margin-top: 40px;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
footer .footer-content li {
  padding: 0 10px;
}
footer .footer-content li img {
  width: 24px;
}
footer .footercms li {
  padding: 0 15px;
  position: relative;
}
footer .footercms li a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
footer .footercms li::after {
  width: 7px;
  height: 7px;
  background: #ffffff;
  content: "";
  position: absolute;
  right: 0;
  border-radius: 50%;
  top: 7px;
  right: -5px;
}
footer .footercms li:last-child::after {
  content: none;
}
footer .footercopyright {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

/**nudge effect **/
.nudge-effect-quiz {
  animation: animate-shake 2s ease-in-out infinite;
}

@keyframes nudge-effect-quiz {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animate-shake {
  0%, 10%, 65%, 100% {
    transform: rotate(0deg) scale(1);
  }
  30%, 40% {
    transform: rotate(-1deg) scale(1);
  }
  35%, 45% {
    transform: rotate(1deg) scale(1);
  }
}

/*# sourceMappingURL=result.css.map */
