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

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

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

a {
  text-decoration: none;
}

.pb-40 {
  padding-bottom: 40px;
}

header .headerinner {
  background-color: #EBEBEB;
  padding: 14px 12px;
}
header .headerinnerwthod {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerlogo img {
  width: 250px;
}
header .headerhb {
  width: 26px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .headerhb span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #503B62;
  opacity: 1;
  transform: rotate(0deg);
  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) {
  transform: rotate(45deg);
}
header .headerhb.open span:nth-child(2),
header .headerhb.open span:nth-child(5) {
  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 #503B62;
  background: #FDF9EC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #000000;
  position: absolute;
  right: 0;
  top: -10px;
  z-index: 99;
  box-shadow: 0px 3px 0px 0px #503B62;
}
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: #FDF9EC;
  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;
  color: #000000;
}
header .langchild:hover {
  background: #C99EEE;
  color: #000000;
  border: 1px solid #150523;
  border-radius: 5px;
}
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: #503B62;
  width: 218px;
  padding: 10px;
  text-decoration: none;
  display: inline-block;
}
header .headerddmenu .headerddchild a:hover {
  border-radius: 6px;
  background: #C99EEE;
  border: 1px solid #503B62;
  box-shadow: 0px 4px 0px 0px #535075;
  color: #ffffff;
}

/*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 #000000;
  background-color: #000000;
}

@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;
  }
}
.bottom-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
}

.left-grass {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.right-grass {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
}

.mainsection {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.maincontent {
  border-radius: 42px;
  background: #FDF9EC;
  text-align: center;
  border: 2px solid #503B62;
  padding-bottom: 30px;
  position: relative;
  box-shadow: 0px 6.32px 0px 0px #503B62;
}

/*instruction page start*/
.homeheading {
  color: #503B62;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  padding-top: 28px;
  padding: 40px 25px 0px;
  line-height: 110%;
  word-wrap: break-word;
}
@media (min-width: 767px) {
  .homeheading {
    font-size: 34px;
    font-weight: 600;
  }
}

.play-ins {
  text-align: left;
  padding-left: 18px;
  margin-top: 20px;
  padding-right: 15px;
  padding-bottom: 10px;
  font-family: "Archivo", sans-serif;
}
.play-ins .play-inshead {
  color: #2F1F3E;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.24px;
  text-align: center;
}
.play-ins .play-inslist {
  padding-left: 25px;
  padding-top: 14px;
  font-size: 16px;
  color: #5C5C5C;
}
.play-ins .play-inslist li {
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.16px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.play-ins .play-inslist li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #5C5C5C;
  left: -18px;
  top: 12px;
  border-radius: 50%;
}

.country-dropdown {
  width: 100%;
  height: 55px;
  background: #ffffff;
  margin-bottom: 10px;
  border: 2px solid #000000;
  border-radius: 7px;
  text-align: center;
}

.play-ins[dir=rtl] {
  text-align: right;
  padding-right: 50px;
}

.play-ins[dir=rtl] .play-inslist li:before {
  right: -17px;
  left: auto;
}

.playform {
  padding: 15px 15px 20px;
  position: relative;
  margin-bottom: 15px;
}
.playform input {
  border-radius: 15px;
  background: #FFF;
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 16px;
  color: #8d8d8d;
  margin-bottom: 16px;
  border: 1px solid #503B62;
}
.playform input::-moz-placeholder {
  color: #8d8d8d;
  opacity: 0.8;
}
.playform input::placeholder {
  color: #8d8d8d;
  opacity: 0.8;
}
.playform .startbtn {
  border-radius: 12px;
  background: #503B62;
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  height: 52px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  line-height: 22px;
  border: 1px solid #000000;
}
.playform .startbtn:active {
  transform: scale(0.95);
}
.playform .startbtn:hover {
  color: #ffffff;
}
.playform .startbtn span {
  padding-left: 5px;
}
@media (min-width: 767px) {
  .playform .startbtn {
    font-size: 24px;
    font-weight: 600;
  }
}

.error {
  color: #B74C42;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}

.nameMsg {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding-bottom: 0px;
}

@media (min-width: 768px) {
  .play-ins {
    padding-left: 34px;
  }
  .play-ins .play-inshead {
    font-size: 28px;
  }
  .play-ins .play-inslist {
    font-size: 20px;
  }
  .play-ins .play-inslist li:before {
    width: 10px;
    height: 10px;
    top: 11px;
  }
  .playform {
    padding: 30px 35px 20px;
  }
}
@media (max-width: 767px) {
  .maincontainer {
    margin: 0 12px;
  }
  .maincontent {
    padding-bottom: 20px;
    border-radius: 27px;
  }
}
/*instruction page end*/
.blogsection {
  background: #E1ECE2;
}
.blogsection .blogheading {
  text-align: center;
  margin-bottom: 0px;
  padding: 20px 0 10px;
  font-family: "IBM Plex Mono", monospace;
}
.blogsection .blogheading span {
  font-size: 24px;
  color: #150523;
  font-weight: 800;
  position: relative;
}
.blogsection .blogallcontent {
  padding-top: 10px;
  border-radius: 10px;
}
.blogsection .blogboxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blogsection .blogbox {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 3.28px 0px 0px #000000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 2px solid #000000;
  text-align: center;
}
.blogsection .blogboximg {
  padding: 10px;
}
.blogsection .blogboximg img {
  border-radius: 6px;
  width: 100%;
}
.blogsection .blogboxhead {
  font-size: 18px;
  font-weight: 700;
  color: #150523;
  padding: 0 10px;
  padding-top: 15px;
  line-height: 140%;
  position: relative;
  font-family: "IBM Plex Mono", monospace;
}
.blogsection .blogboxtxt {
  font-size: 14px;
  font-weight: 400;
  color: #707070;
  padding: 0 10px;
  padding-top: 12px;
  line-height: 140%;
}
.blogsection .blogboxbtn {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: right;
  padding: 0 10px;
  padding-bottom: 20px;
}
.blogsection .blogboxbtn a {
  letter-spacing: 0.1px;
  border-radius: 8px;
  color: #000000;
  background: #EBEBEB;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  width: 100%;
  display: block;
  padding: 6px 12px;
  margin-top: 20px;
  border: 2px solid #000000;
  text-align: center;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  font-family: "IBM Plex Mono", monospace;
}
.blogsection .blogboxbtn a:active {
  transform: scale(0.95);
}
.blogsection .show-more-btns {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
}
.blogsection .show-more-btns .blog-btns {
  border-radius: 6px;
  background: #EBEBEB;
  font-size: 16px;
  border: 3px solid #000000;
  font-weight: 500;
  line-height: 22px;
  color: #000000;
  padding: 10px 24px;
  width: 153px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bt-add-sec {
  padding-top: 10px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .blogsection .blogheading span {
    font-size: 36px;
  }
  .blogsection .blogbox {
    width: 48.5%;
  }
}
.mainsection.friend-ins-section form {
  margin-bottom: 0;
}

.play-page-form-space form {
  margin-bottom: 0;
}

.noscoreboardsec {
  margin: 5px 16px;
  padding: 15px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #503B62;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  display: none;
  text-align: center;
}

.scoreboard-section.friend-ins-scoreboard {
  margin-top: 0;
  margin-bottom: 40px;
}
.scoreboard-section.friend-ins-scoreboard .bt-friendboard-sec {
  box-shadow: 0px 6.32px 0px 0px #503B62;
  border: 1.9px solid #503B62;
  border-radius: 42px;
  padding-bottom: 40px;
  background: #FDF9EC;
}

#scoreboard-loader {
  text-align: center;
}
#scoreboard-loader img {
  width: 70px;
}

.loadercontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}
.loadercontainer img {
  width: 80px;
}

.scoreboard-section {
  margin-top: 40px;
}

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

.friendbrdheading {
  font-weight: 600;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  color: #503B62;
  margin: 0;
  padding: 50px 0 10px;
  word-wrap: break-word;
}

@media (min-width: 767px) {
  .friendbrdheading {
    font-size: 34px;
  }
}
.scoreboardsec {
  padding-bottom: 30px;
  margin: 0 16px;
  border: 1px solid #503B62;
  background: #C99EEE;
  border-radius: 6px;
  padding: 15px;
  margin-top: 15px;
}
.scoreboardsec .table-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
}
.scoreboardsec .table-heading span {
  color: #283805;
  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 li {
  display: flex;
  justify-content: space-between;
  background: none;
  align-items: center;
  padding: 8px 0px 8px 50px;
  position: relative;
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 10px;
  border: 1px solid #000000;
}
.scoreboardsec ul li span {
  color: #390900;
  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: 20px;
  height: 30px;
  left: 12px;
}
.scoreboardsec ul li:nth-child(1)::before {
  background: url("../../../img/black-theme/flavor1/first-prize.png");
}
.scoreboardsec ul li:nth-child(2)::before {
  background: url("../../../img/black-theme/flavor1/second-prize.png");
}
.scoreboardsec ul li:nth-child(3)::before {
  background: url("../../../img/black-theme/flavor1/third-prize.png");
}

[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: #283805;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.32px;
  padding: 0px 25px;
  min-height: 35px;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .scoreboardsec .table-heading span {
    font-size: 11px;
  }
  .scoreboardsec ul li span {
    font-size: 14px;
  }
}
/* result page css end */
@media (max-width: 767px) {
  .scoreboard-section.friend-ins-scoreboard .bt-friendboard-sec {
    border-radius: 27px;
    padding-bottom: 24px;
  }
  .friendbrdheading {
    font-size: 28px;
    padding: 24px 0 10px;
  }
}
.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: #503B62;
  padding-top: 24px;
  padding-bottom: 70px;
  text-align: center;
  position: relative;
}
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: 10px;
  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.05);
  }
  35%, 45% {
    transform: rotate(1deg) scale(1.05);
  }
}/*# sourceMappingURL=instruction.css.map */