@charset "utf-8";

/* CSS Document */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff") format("woff2"),
    url("../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica-Bold";
  src: url("../fonts/Helvetica-Bold.woff2") format("woff2"),
    url("../fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

img {
  border: none;
}

a {
  outline-style: none;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

body {
  font-family: "Helvetica-Bold";
  font-style: italic;
  background: #fc9 !important;
  padding: 0 10px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.contanear {
  display: block;
  width: 94%;
  max-width: 1220px;
  margin: 0px auto;
}

.logo {
  width: 100%;
  background: #fc9;
  padding: 0 10px;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  border: 3px solid #ff0016;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.logo::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff9a34;
  border-radius: inherit;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

.logo img {
  width: 220px;
  height: auto;
  padding: 6px 0 0;
}

.laxmi_image {
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 2px solid #ff182c;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
}

.laxmi_image img {
  width: 100px;
  padding-right: 10px;
}

.laxmi_text {
  width: 71%;
  float: left;
  display: block;
  text-align: right;
}

.laxmi_text p {
  color: black;
  display: inline-block;
  font-size: 16px;
  text-shadow: 1px 1px 2px #fff;
}

.notice_scroll {
  width: 100%;
  display: inline-block;
  text-align: center;
  background: red;
  padding: 5px 10px;
  color: #fff;
  font-style: italic;
}

.about {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-width: 3px;
  margin-bottom: 5px;
  border-style: outset;
  border-radius: 10px;
  border: 2px solid #ff182c;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
  padding: 5px;
  margin-top: 10px;
}

.about h1 {
  font-size: 16px;
  color: #000;
  padding-bottom: 3px;
}

.about h2 {
  color: #000;
  font-size: 10px;
  font-weight: 600;
  line-height: 11px;
  text-shadow: none;
}

.about p {
  font-size: 11px;
  color: #2d2d2d;
  text-align: justify;
}

.section {
  width: 100%;
  display: inline-block;
  text-align: center;
  outline: 4px #fff;
  outline-offset: -9px;
  border: 2px solid #ff182c;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
  margin-bottom: 10px;
}

.section_heading {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.section_heading h3 {
  background: #ff00a2;
  padding: 7px 10px;
  text-shadow: 1px 1px 2px #000;
  display: block;
  color: #fff8f8;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 24px;
  border: 2px solid #fff;
  border-radius: .75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, .58, 1), background 150ms cubic-bezier(0, 0, .58, 1);
}

.section_heading.world h3 {
  font-size: 17px;
}

.section_heading h3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #ff182c; */
  border-radius: inherit;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
  text-transform: uppercase;
}

.section_heading h3 a {
  display: inline-block;
  color: #fff8f8;
}

.marquee {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 5px;
  height: 40px;
}

.marquee p {
  animation: marquee 12s linear infinite;
  font-size: 16px;
  margin-top: 20px;
}

.marquee p:hover {
  animation-play-state: paused;
}

@-moz-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, -100%);
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, -100%);
  }
}

@keyframes marquee {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -moz-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
}

.lucky_no {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
}

.lucky_no_left {
  width: 49%;
  height: 73px;
  display: inline-block;
  text-align: center;
  border-right: solid 2px red;
  vertical-align: top;
}

.lucky_no_left h2 {
  font-size: 20px;
  color: #001699;
  text-shadow: 1px 1px 2px #fff;
}

.lucky_no_left p {
  font-size: 22px;
  text-shadow: none;
  color: #000b65;
}

.lucky_no_right {
  width: 49%;
  display: inline-block;
  text-align: center;
}

.lucky_no_right h2 {
  font-size: 20px;
  color: #001699;
  text-shadow: 1px 1px 2px #fff;
}

.lucky_no_right p {
  font-size: 15px;
  text-shadow: none;
  color: #000b65;
}

.live_result {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.live_result h2 {
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
  margin-top: 0px;
}

.live_result_box {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-top: 1px solid #ff0020;
  padding-bottom: 5px;
}

.live_result_box h3 {
  font-size: 22px;
  color: #00094d;
  text-shadow: 1px 1px 2px #fff;
}

.live_result_box h4 {
  display: block;
  color: #880e4f;
  text-shadow: 1px 1px 2px #ffe2c6;
  font-size: 21px;
  line-height: 1;
  margin: 3px 0;
}

.live_result_box a {
  border: 1px solid #e6e6e6;
  background: #522f92;
  color: #fff;
  padding: 5px 7px;
  border-radius: 8px;
  font-size: 12px;
  margin: 2px 0 -1px;
  display: inline-block;
  transition: all 0.3s;
}

.live_result_box a:hover {
  border: 2px solid #fff;
  background-color: #522f92;
  box-shadow: 0px 0px 13px 3px #00000033;
  cursor: pointer;
}

.matka_url {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.matka_url a {
  font-size: 18px;
  color: #00094d;
  text-shadow: 1px 1px 2px #fff;
  line-height: 1.4;
  display: inline-block;
  padding: 5px 0;
}

.keyword {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.keyword h2 {
  color: #030303;
  text-shadow: 1px 1px 2px #fff;
  font-size: 18px;
}

.keyword p {
  line-height: 1.4;
  font-size: 14px;
  padding: 4px 10px;
  color: #00094d;
  text-shadow: 1px 1px 2px #fff;
}

.market_box {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-bottom: solid 1px red;
  padding: 6px 20px;
}

.active_bg {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-bottom: solid 1px red;
  padding: 6px 20px;
  background: #ffff00;
}

.jodi_chart {
  width: 10%;
  float: left;
  display: block;
  margin-top: 22px;
}

.jodi_chart a {
  float: left;
  border: 1px solid #e6e6e6;
  background: #522f92;
  color: #fff;
  padding: 5px 7px;
  border-radius: 8px;
  font-size: 12px;
  margin: 2px 0 -1px;
  display: inline-block;
  transition: all 0.3s;
}

.jodi_chart a:hover {
  border: 2px solid #fff;
  background-color: #522f92;
  box-shadow: 0px 0px 13px 3px #00000033;
  cursor: pointer;
}

.panel_chart {
  width: 10%;
  float: right;
  display: block;
  margin-top: 22px;
}

.panel_chart a {
  float: right;
  border: 1px solid #e6e6e6;
  background: #522f92;
  color: #fff;
  padding: 5px 7px;
  border-radius: 8px;
  font-size: 12px;
  margin: 2px 0 -1px;
  display: inline-block;
  transition: all 0.3s;
}

.panel_chart a:hover {
  border: 2px solid #fff;
  background-color: #522f92;
  box-shadow: 0px 0px 13px 3px #00000033;
  cursor: pointer;
}

.market_list {
  width: 79%;
  display: inline-block;
  text-align: center;
}

.market_list h4 {
  font-size: 22px;
  background-color: transparent;
  color: #00094d;
}

.market_list h5 {
  margin: 0;
  font-size: 22px;
  background: -webkit-linear-gradient(#4500bf, #670009);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff0016;
  text-shadow: 1px 1px #0000001f;
  line-height: 1;
  padding: 5px 0;
}

.market_list h6 {
  color: #000;
  font-size: 15px;
  padding: 2px 0;
  text-shadow: 1px 1px 2px #fff;
  margin-bottom: 0;
}

.support {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 5px;
  background-color: #fbe7ff;
  border: 2px solid #ff182c;
}

.support h2 a {
  background: radial-gradient(#ffe500, #ff9800);
  color: #000;
  padding: 5px 8px 2px;
  border-radius: 80px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  border: 1px solid #ff0016;
  text-shadow: 1px 1px 2px #fff;
  font-size: 18px;
  display: inline-block;
}

.support {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 5px;
  background-color: #fbe7ff;
  border: 2px solid #ff182c;
}

.support h2 a {
  background: radial-gradient(#ffe500, #ff9800);
  color: #000;
  padding: 5px 8px 2px;
  border-radius: 80px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  border: 1px solid #ff0016;
  text-shadow: 1px 1px 2px #fff;
  font-size: 18px;
  display: inline-block;
}

.notice-text2 {
  border-width: 3px;
  border: 2px solid #0014e2;
  margin-bottom: 5px;
  border-style: outset;
  border-radius: 10px;
  border: 2px solid #ff182c;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
}

.notice-text2 span {
  background: #b80000;
  color: white;
  display: block;
  text-shadow: 0px 0px 5px black;
  font-size: 20px;
  font-weight: bold;
}

.notice-text2 a {
  color: #522f92;
}

.text2 {
  margin-bottom: 7px;
  font-size: 16px;
  padding: 7px;
  line-height: 25px;
  background: #b91d1d;
  color: white;
  border-radius: 12px;
  border: solid 2px #f00;
  text-align: center;
}

.text2 a {
  color: white;
  border: 2px solid #fff;
  padding: 2px 0px;
  display: block;
  width: 230px;
  margin: 2px auto;
  border-radius: 15px;
  margin-top: 8px;
  background: #ff0cb7;
  text-decoration: none;
}

.text2 span {
  color: yellow;
  font-weight: bold;
  font-size: 14px;
  font-family: monospace;
}

.login_section {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 5px;
  background-color: #fbe7ff;
  border: 2px solid #ff182c;
  margin: 10px 0;
}

.login_section a {
  background: radial-gradient(#ffe500, #ff9800);
  color: #000;
  padding: 5px 8px 2px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  border: 1px solid #ff0016;
  text-shadow: 1px 1px 2px #fff;
  border-radius: 5px;
  font-size: 14px;
}

.starline_highlight {
  width: 100%;
  display: inline-block;
  text-align: center;
  background: #ffd902;
  padding: 5px 10px;
  text-shadow: 1px 1px 2px #fff;
  display: block;
  margin-bottom: 5px;
  margin-top: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  border: 2px solid #000;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.starline_highlight h2 {
  font-size: 24px;
  color: #000;
}

.jodichart {
  padding: 3px 5px 2px;
  height: auto;
  width: auto;
  float: right;
  margin: -25px 0px 0px 0;
  background-color: #000;
  border-radius: 5px;
  font-size: 14px;
  color: white;
  text-shadow: none;
}

.table_main {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
  margin: 5px 0;
}

.table_main table {
  width: 100%;
}

.table_main thead {
  background-color: #fff;
  font-size: 16px;
}

.table_main tbody {
  font-size: 16px;
}

.table_main td,
.table_main th {
  padding: 2px 0;
  font-size: 15px;
  text-shadow: 1px 1px 2px #fff;
  border: 1px solid #ff0016;
}

.table_main tr td:nth-child(2),
.table_main tr td:nth-child(4) {
  color: #0808b2;
}

.starline_normal {
  background: #ff00a2;
  padding: 5px 10px;
  display: block;
  color: #fff8f8 !important;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    background 150ms cubic-bezier(0, 0, 0.58, 1);
  text-align: center;
}

.starline_normal h2 {
  color: #fff;
}

.section_heading2 {
  background: #ff1731;
  border-radius: 10px;
  padding: 3px 5px;
  text-shadow: 1px 1px 2px #000;
  clip-path: polygon(0 0,
      97% 0,
      100% 48%,
      100% 80%,
      100% 100%,
      3% 100%,
      0 46%,
      0 20%);
}

.section_heading2 h4 {
  font-size: 30px;
  color: #fff;
}

.game_zone {
  width: 100%;
  display: inline-block;
  text-align: center;
  background-image: linear-gradient(-225deg,
      #231557 0,
      #44107a 29%,
      #ff1361 67%,
      #ff0025 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

.game_zone a {
  width: 100%;
  font-size: 22px;
  color: #fff;
  display: inline-block;
  border-bottom: 2px solid #ff0026;
  padding: 5px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.section_heading3 {
  animation: changeBackgroundColor 5s infinite;
  border-radius: 10px;
  color: #fff;
  line-height: 1.1;
  padding: 4px 10px 3px;
  text-shadow: 1px 1px 2px #000;
  font-size: 24px;
}

@keyframes changeBackgroundColor {
  0% {
    background-color: #ff019e;
  }

  25% {
    background-color: #ff001d;
  }

  50% {
    background-color: #009a07;
  }

  75% {
    background-color: #001fad;
  }

  100% {
    background-color: #ff019e;
  }
}

.patti_list {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.patti_list p {
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
  color: #000b65;
  text-shadow: 1px 1px 2px #fff;
}

.ank_box {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px;
}

.ank_date {
  width: 100%;
  display: inline-block;
  text-align: center;
  border: solid 2px #ff019e;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.ank_date h2 {
  font-size: 22px;
  font-style: normal;
  color: #000b65;
  text-shadow: 1px 1px 2px #fff;
}

.ank_date h3 {
  font-size: 22px;
  color: #000;
  text-shadow: 1px 1px 2px #fff;
  font-style: normal;
}

.ank_date h4 {
  font-size: 22px;
  font-style: normal;
  color: #000;
}

.green_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  border-radius: 10px;
  overflow: hidden;
}

.ank_game {
  width: 50%;
  display: inline-block;
  text-align: center;
  padding: 5px;
  border-color: #009206;
  border-style: solid;
}

.ank_game:nth-child(odd) {
  border-width: 0 0 2px 2px;
  margin: 0;
  border-radius: 0;
}

.ank_game:nth-child(1),
.ank_game:nth-child(2) {
  border-top-width: 2px;
}

.ank_game h2 {
  background: linear-gradient(#00d309, #004503);
  font-size: 22px;
  margin-bottom: 5px;
  padding: 7px 0 7px;
  border-radius: 10px;
  clip-path: polygon(0 0,
      97% 0,
      100% 48%,
      100% 80%,
      100% 100%,
      3% 100%,
      0 46%,
      0 20%);
  color: #fff;
  text-shadow: 1px 1px 2px red;
  letter-spacing: 1px;
}

.ank_game p {
  font-size: 20px;
  line-height: 24px;
  font-style: normal;
  color: #000b65;
  text-shadow: 1px 1px 2px #fff;
}

.dpboss_contet {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px 0;
}

.dpboss_contet p {
  border-radius: 10px;
  border: 2px solid #ff001e;
  border-style: outset;
  margin: 10px 0;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
  text-shadow: 1px 1px 2px #fff;
  padding: 10px;
  color: #000b65;
  font-weight: bold;
}

.kalyan_table {
  border: #000 solid 2px;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 5px;
}

.kalyan_table table {
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
}

.kalyan_table td {
  border: 1px solid #e91e63;
}

.ntah {
  font-size: 25px !important;
  background-color: #ff0;
  color: #00f;
}

.new-table-add td {
  border: 1px solid #e91e63;
}

.ntah-blue-sec {
  font-size: 1.2em !important;
  font-weight: bold !important;
  color: #00f !important;
}

.ntah-red-sec {
  font-size: 2em !important;
  font-weight: bold !important;
  color: #f51111 !important;
}

.section_chart {
  width: 100%;
  display: inline-block;
  text-align: center;
  outline: 4px #fff;
  outline-offset: -9px;
  border: 2px solid #00189f;
  border-style: outset;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
  margin-bottom: 10px;
}

.section_chart a {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 22px;
  color: #000;
  border-bottom: 2px solid #00189f;
  color: #1a237e;
  text-shadow: 1px 1px #d9d9d9;
  padding: 5px 7px 4px;
}

.dpboss_q {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px 0;
  border-bottom: solid 2px #e0557f;
}

.dpboss_q h2 {
  text-transform: uppercase;
  color: #0013a5;
  text-shadow: 1px 1px 2px #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 3px 0;
  display: block;
}

.dpboss_q p {
  color: #000;
  font-weight: 700;
  margin: 0;
  font-size: 12px;
  font-style: normal;
  padding: 0 10px 5px;
  text-transform: capitalize;
  opacity: 0.9;
  text-shadow: 1px 1px 2px #fff;
}

.content_scroll {
  height: 347px;
  overflow-y: scroll;
}

.disclaimer {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.disclaimer p {
  font-size: 13px;
  color: #340d7a;
  padding: 2px 5px 5px;
  line-height: 1.2;
  font-style: normal;
}

.footer {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 5px 0;
}

.footer h3 {
  color: #a50031;
  font-size: 12px;
  line-height: 1.4;
}

.footer h4 a {
  color: #0000ee;
  font-size: 12px;
  line-height: 1.4;
  display: inline-block;
}

.hidden {
  display: none;
}

.mp-btn {
  position: fixed;
  bottom: 9px;
  left: 5px;
  padding: 5px 8px;
  font-size: 15px;
  border: 1px solid #fff;
  text-decoration: none;
  background-color: #039;
  color: #fff;
  border-radius: 5px;
}

.refresh-btn {
  position: fixed;
  bottom: 9px;
  right: 10px;
}

.btm-btn-f {
  background: linear-gradient(45deg, navy, #005780);
  border: 1px solid #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 6px 11px 5px;
  transition: all 0.3s ease-in;
  color: #fff;
}

/*Home End*/

/* fixed social*/
#fixed-social {
  position: fixed;
  bottom: 45px;
}

#fixed-social a {
  color: #fff;
  display: block;
  height: 40px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 40px;
  margin-bottom: 1px;
  z-index: 2;
}

#fixed-social a:hover>span {
  visibility: visible;
  left: 41px;
  opacity: 1;
}

#fixed-social a span {
  line-height: 40px;
  left: 60px;
  position: absolute;
  text-align: center;
  width: 120px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
}

/*end fixed social*/

.banner h2 {
  color: #fff;
  text-align: center;
}

.starline_chart_table {
  width: 100%;
  display: inline-block;
  text-align: center;
  overflow: scroll;
}

.para1 p {
  line-height: 1.4;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  border-radius: 5px;
  padding: 5px 10px;
  /*border: 2px solid #eb008b;*/
  text-align: center;
}

.forum-rules div {
  border-radius: 10px;
  margin-top: 5px;
  border: 2px solid #eb008b;
}

.forum-rules h4,
.login-area h4 {
  background-image: linear-gradient(45deg, #9c27b0, #e91e63, #9c27b0);
  font-size: 22px;
  padding: 6px 5px 5px;
  color: #fff;
  background-color: #006064;
  box-shadow: 0 0 10px -7px #000;
  margin: 0;
  text-align: center;
}

.forum-rules ul {
  list-style: none;
  text-align: left;
  padding: 20px 20px 0;
}

.forum-rules li {
  font-size: 18px;
  text-shadow: 1px 1px 2px #ffcad2;
  font-weight: 600;
  word-spacing: 2px;
  color: #000;
  padding-bottom: 4px;
  font-family: monospace;
  margin-bottom: 5px;
  border-bottom: 1px solid #7a0029;
}

.forum-rules p {
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.login-area {
  margin: 10px 0;
  padding-bottom: 10px;
}

.forum-rules div,
.login-area,
.para1 p {
  /*border: 2px solid #eb008b;*/
  border-radius: 10px 0 10px 10px;
  margin-bottom: 2px;
  overflow: hidden;
}

.forum-rules p {
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center;
}

.forum-rules p span {
  color: #e91e63;
}

/*.panel-body {*/
/*    padding: 15px;*/
/*}*/

i.fa.fa-user.icon {
  padding-left: 14px;
  position: absolute;
  padding-top: 10px;
}

.login-area input {
  display: block;
  margin: 0 auto;
  width: 95%;
  border: 2px solid #f24790;
  font-size: 17px;
}

.login-area textarea {
  height: 250px;
  font-size: 17px;
}

.login-area select,
.login-area textarea {
  display: block;
  margin: 10px auto;
  width: 95%;
  border: 2px solid #f24790;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.btn.btn-success {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #4caf50 !important;
  border: 2px solid #4caf50 !important;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
}

.fixed-footer {
  padding: 0;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 -2px 13px -3px #000;
}

.fixed-footer>div:first-child a {
  border-left-width: 0;
}

.fixed-footer a {
  font-size: 12px;
  height: 60px;
  background-color: #900031;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-left: 1px solid #6f0026;
  transition: all 0.3s;
  flex-direction: column;
  padding: 12px 0 6px;
}

.fixed-footer a span {
  display: block;
  line-height: 12px;
  padding-top: 5px;
  color: #fff;
}

.fg-div {
  text-align: center;
}

.fg-div h4 {
  color: #fff;
  text-shadow: 1px 1px 0 #444;
  letter-spacing: 1px;
  font-size: 24px;
  padding: 10px;
  margin: 0 0 02px;
  background-image: -moz-linear-gradient(7deg, #ec1379 0%, #6c0092 100%);
  background-image: -webkit-linear-gradient(7deg, #ec1379 0%, #6c0092 100%);
  background-image: -ms-linear-gradient(7deg, #ec1379 0%, #6c0092 100%);
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 35%);
  border-radius: 10px;
  margin: 0 0 10px;
  border-bottom: 2px solid #fff;
}

.fg-div .fg-main {
  overflow: hidden;
}

.fg-div .fg-main>div:first-child {
  text-align: center;
  border-radius: 10px;
  border-bottom: 1px solid #fff;
  overflow: hidden;
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 35%);
}

.fg-div .fg-main>div:first-child h5,
.fg-div .fg-main>div:first-child h6,
.fg-div .fg-main>div:first-child p {
  color: #fff;
  margin: auto;
  font-size: 18px;
  text-shadow: 1px 1px 2px #00000075;
  padding: 9px;
  border-bottom: 1px solid #fff;
}

.fg-div h6 {
  background: #a527a8;
}

.fg-div h5 {
  background: #c62285;
}

.fg-div .fg-p1 {
  background: #e51e67;
}

.fg-div .fg-p1>div {
  margin: 0;
}

.fg-div .fg-p2 {
  border-radius: 4px;
  background: linear-gradient(45deg, #e91e63, #f44336);
  color: #fff;
  text-shadow: 1px 1px 0 #444;
  letter-spacing: 1px;
  font-size: 24px;
  padding: 4px 4px 4px;
  margin: 0 0 0;
  background-size: 10px;
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 35%);
  border-bottom: 2px solid #fff;
}

.fg-div .fg-p4 {
  color: #fff;
  text-shadow: 1px 1px #333;
  font-size: 20px;
  margin: 5px 0;
}

.fg-div .fg-c1 {
  margin: 10px 0;
  text-align: center;
}

.fg-div .fg-c1>div {
  background-image: -moz-linear-gradient(135deg, #5496ff 0%, #8739e6 100%);
  background-image: -webkit-linear-gradient(135deg, #5496ff 0%, #8739e6 100%);
  background-image: -ms-linear-gradient(135deg, #5496ff 0%, #8739e6 100%);
  box-shadow: 0 19px 56px 1px rgb(0 0 0 / 10%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  background-size: 10px;
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 35%);
  border-bottom: 2px solid #fff;
}

.pink-border {
  border: 4px solid #ff006c;
  border-top-left-radius: 10px;
  text-align: center;
}

.k_chart {
  border-radius: 5px;
  margin: 0 0 20px 0;
  border: 5px solid #810069;
  padding: 8px 10px;
}

.k_head {
  font-family: "Gelasio", serif;
  color: #fff;
  font-weight: 700;
  border-radius: 5px 5px 0 0;
  font-size: 25px;
  padding: 7px 0;
  margin: 0;
  background-color: navy;
  text-align: center;
}

.chart {
  text-align: center;
  box-sizing: border-box;
  border-bottom: 2px solid #b3b3b3;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.c_head {
  font-weight: 700;
  color: red;
  padding: 10px 0 0 0;
  font-size: 25px;
}

.c_message {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
}

.footer_kfpc {
  background-color: #fff;
  border-radius: 5px;
  font-size: 20px;
  text-align: center;
  border: #fff solid 2px;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
  float: left;
  width: 100%;
  box-sizing: border-box;
  border: 5px solid #ff006c;
}

.ftr-btn-red {
  color: #810069;
  text-decoration: none;
  font-weight: bold;
}

@media only screen and (max-width: 480px) {
  .k_head {
    font-size: 14px;
    font-weight: 700;
  }
}

.button2 {
  background-color: #a0d5ff;
  color: #220c82;
  padding: 10px 30px;
  font-size: 16px;
  margin: 20px auto;
  border-radius: 10px;
  border: 2px solid #0000005c;
  font-weight: 800;
  text-shadow: 1px 1px #00bcd4;
  box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%), 0 6px 8px 0 rgb(0 0 0 / 19%);
  display: inline-block;
  transition: all 0.3s;
}

.ad-div11 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(to bottom, #7f530c, #f0bf46, #c58c35);
}

.chart-list {
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  margin-bottom: 2px;
  width: 50%;
  margin: 0 auto 10px;
  text-align: center;
  font-weight: 600;
}

.chart-list.ab1 {
  border-color: #003c6c;
}

.chart-list h4 {
  color: #fff;
  padding: 5px 10px 3px;
  font-size: 24px;
  border-top-left-radius: 7px;
  margin: 0;
}

.chart-list.ab1 h4 {
  background-color: #024c88;
}

.chart-list a {
  display: block;
  font-size: 22px;
  padding: 5px 7px 4px;
  text-decoration: none;
}

.chart-list.ab1 a {
  border-bottom: 2px solid #024c88;
  color: #003c6c;
}

.special_game_zone {
  display: block;
  background-color: #024c88;
  color: #fff;
  padding: 5px 10px 3px;
  font-size: 24px;
  border-top-left-radius: 7px;
  text-align: center;
  font-weight: 600;
}

footerl {
  background-color: #fff;
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 25px;
  text-decoration: none;
  border: 4px groove purple;
  border-radius: 10px 0 0 0;
  text-shadow: 1px 1px gold;
  margin: 3px;
  display: inline-block;
  width: 100%;
}

footerl>div {
  border-bottom: 2px solid #b2ddff;
  padding: 10px 0;
  margin-bottom: 10px;
}

footerl>div a {
  text-decoration: none;
}

footerl>div a:hover {
  text-decoration: none;
}

footerl .ftr-icon {
  text-decoration: none;
  font-size: 35px;
  text-transform: uppercase;
  color: #007bff;
}

footerl p {
  margin: 10px 0 10px;
  line-height: 35px;
}

footerl p span {
  color: #36f;
}

.para1 {
  line-height: 1.4;
  border: 2px solid #eb008b;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  padding: 5px 10px;
  text-align: center;
}

.guss_box {
  width: 100%;
  text-align: center;
}

.guss_box h1 {
  font-size: 20px;
  font-weight: bold;
}

.guss_box_down {
  background-image: linear-gradient(45deg, #9c27b0, #e91e63, #9c27b0);
  font-size: 10px;
  padding: 6px 5px 5px;
  color: #fff;
  background-color: #006064;
  box-shadow: 0 0 10px -7px #000;
  display: block;
  font-size: 14px;
  margin: 10px 0 10px;
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px -5px #000;
}

.d_app {
  font-size: 10px;
  padding: 6px 5px 5px;
  color: #fff;
  background-color: #2196f3;
  box-shadow: 0 0 10px -7px #000;
  display: inline;
  font-size: 14px;
  margin: 10px 0 15px;
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px -5px #000;
  display: inline-block;
}

.posting_rules {
  line-height: 1.4;
  border: 2px solid #eb008b;
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0px 0px 0px;
}

.play_online_g {
  line-height: 1.4;
  border: 2px solid #eb008b;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  padding: 5px 0px 0px 0px;
  color: navy;
  text-align: center;
}

.guess_sub {
  display: block;
  margin: 0 auto;
  width: 50% !important;
  border: 2px solid #f24790;
  font-size: 17px;
  -webkit-appearance: button;
  cursor: pointer;
  border-radius: 4px;
  color: #fff;
  background-color: #e91e63;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px;
}

.forum-rules1 {
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  text-align: center;
  margin-bottom: 80px;
}

.forum-rules1 h4 {
  background-image: linear-gradient(45deg, #9c27b0, #e91e63, #9c27b0);
  font-size: 22px;
  padding: 6px 5px 5px;
  color: #fff;
  background-color: #006064;
  box-shadow: 0 0 10px -7px #000;
}

.ex-feature {
  margin-top: 5px;
  background-color: #9c27b0;
  color: #fff;
  padding: 3px 10px;
  box-shadow: 0 0 10px -7px #000;
  font-size: 15px;
  border: none;
  font-weight: 700;
}

.extra-feature a {
  padding: 3px 10px;
  box-shadow: 0 0 10px -7px #000;
  transition: all 0.3s;
  color: #fff;
  font-size: 15px;
}

.guess_form {
  color: #fff;
  width: auto;
  display: inline-block;
}

.form {
  padding: 30px 40px;
  width: inherit;
}

#signup-form {
  background-color: #fff;
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  margin-bottom: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 470px;
  margin: 0 auto 0;
}

.panel-chart h1,
h2 {
  color: #000;
  font-weight: 600;
  font-size: 25px;
}

.form button {
  cursor: pointer;
  background-color: #e91e63;
  border: 2px solid #e91e63;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 20px;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
}

.login-area {
  margin: 10px 0;
  padding-bottom: 10px;
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
}

.login-area input {
  display: block;
  margin: 0 auto;
  width: 95%;
  border: 2px solid #f24790;
  font-size: 17px;
}

.form-control {
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #eb008b;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.login-area {
  margin: 10px 0;
  padding-bottom: 10px;
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  margin-bottom: 5px;
  overflow: hidden;
}

.login-area textarea {
  height: 250px;
  font-size: 17px;
}

.login-area select,
.login-area textarea {
  display: block;
  margin: 10px auto;
  width: 95%;
  border: 2px solid #f24790;
}

.post_guss_box {
  width: 100%;
  display: inline-block;
  text-align: center;
  /* border: 2px solid #eb008b; */
}

.post_guss_box h4 {
  font-size: 36px;
}

.forum-rules {
  border-radius: 10px;
  margin-top: 5px;
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  margin-bottom: 2px;
  overflow: hidden;
}

.noguesses {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 15px;
  margin-bottom: 100px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-top: 30px;
  text-align: center;
}

.noguesses p {
  margin: 0;
}

.violet-bg {
  background: #810069;
  text-align: center;
  color: white;
  padding: 10px;
}

.violet-border {
  border-top-left-radius: 10px;
  border: 4px solid navy;
  margin-top: 20px;
}

.border-b-v {
  border-bottom: 2px solid navy;
  text-align: center;
  padding: 20px;
  list-style-type: none;
}

.mfnc-ul li a {
  text-decoration: none;
}

.mfnc-ul h2 span {
  color: #222;
  font-size: 30px;
  font-weight: bolder;
  font-style: italic;
  font-family: "Gelasio", serif;
}

big {
  font-size: medium;
}

.fix_head {
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #000;
  padding: 15px 0;
}

.chart-table .my-div {
  display: flex;
  background: linear-gradient(45deg, #3f51b5, #00bcd4);
  margin: 10px 0 10px;
  border-radius: 8px;
  border: 2px solid #0c558a;
  text-align: center;
}

.chart-table .my-div .aa {
  border-right: 1px solid #3f51b5;
}

h4.aa,
h4.bb {
  width: 50%;
  color: #fff;
  padding: 9px 0;
  font-size: 20px;
}

.chart-table .my-div .bb {
  border-left: 1px solid #3f51b5;
}

.chart-table table,
.chart-table td,
.chart-table th {
  border: 1px solid #000;
  font-weight: 700;
  font-size: 18px;
  padding: 3px !important;
}

.chart-table table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  margin-bottom: 2px;
  overflow: hidden;
  box-shadow: 0 0 10px -3px #000;
  background-image: linear-gradient(90deg, #f6f6f6 50%, white 50%);
}

/*
.chart-table th {
    color: #fff;
    padding: 9px 0;
    font-size: 20px; 
    width: 50%;
    display: none;
}

.chart-table td {
    text-align: center;
    color: #000;
    font-weight: 800;
    padding: 9px 0;
    width: 50%;
    font-size: 22px;
}*/

.go-top {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.go-top a {
  background-image: linear-gradient(45deg, #4caf50, #4caf50);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  text-shadow: 1px 1px 2px #282828;
  padding: 4px 17px 3px;
  transition: all 0.3s;
  transform: scale(1);
  margin: 15px 0;
  display: inline-block;
  box-shadow: 0 0 10px -6px #000;
  border: 2px solid #037908;
}

.panel_count li {
  text-decoration: none;
  padding: 20px;
  text-align: center;
  list-style-type: none;
}

.panel_count li a {
  text-decoration: none;
}

.panel_count h2 span {
  color: #222;
  font-size: 30px;
  font-weight: bolder;
  font-style: italic;
  font-family: "Gelasio", serif;
}

.panel_count h5 {
  color: red;
  font-size: 25px;
  padding: 20px 0px;
}

.fav-cards {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.fav-cards .aa {
  box-shadow: 0 0 10px -4px #000;
  border: 2px solid #aa00c0;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
}

.fav-cards .aa p {
  color: #7a028d;
  font-size: 22px;
  padding: 2px 0;
  text-shadow: 1px 1px 2px #c4c4c4;
  margin-bottom: 0;
}

.all-satta {
  text-align: center;
}

.all-satta .bb p {
  color: #800d04;
  font-size: 18px;
  padding: 2px 0;
  text-shadow: 1px 1px 2px #c4c4c4;
  margin-bottom: 0;
}

.all-satta h4 {
  border-radius: 4px;
  background: #f44336;
  color: #fff;
  text-shadow: 1px 1px 0 #444;
  letter-spacing: 1px;
  font-size: 32px;
  padding: 4px 4px 4px;
  box-shadow: 0 0 10px -4px #000;
  margin-bottom: 7px;
  margin-top: 10px;
}

.all-satta .bb {
  box-shadow: 0 0 10px -4px #000;
  border: 2px solid #800d04;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
}

.reg_btn {
  display: block;
  margin: 0 auto;
  width: 100%;
  border: 2px solid #f24790;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  background-color: #e91e63;
  padding: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.reg_head {
  color: #e91e63;
  padding-top: 10px;
  margin-bottom: 25px;
  font-style: normal;
}

.reg_form {
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
  margin: 10px 0;
  padding-bottom: 10px;
  text-align: center;
}

footer2 {
  background-color: #fff;
  color: red;
  font-weight: bold;
  font-size: 25px;
  text-decoration: none;
  border: 4px groove purple;
  border-radius: 10px 0 0 0;
  text-shadow: 1px 1px gold;
  margin: 3px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

footer2>div {
  border-bottom: 2px solid #b2ddff;
  padding: 10px 0;
  margin-bottom: 10px;
}

footer2>div a {
  text-decoration: none;
}

footer2 .ftr-icon {
  text-decoration: none;
  font-size: 35px;
  text-transform: uppercase;
  color: #007bff;
}

footer2 p {
  margin: 10px 0 10px;
  line-height: 35px;
}

footer2 p span {
  color: #36f;
}

/*Start privacy*/
.privacy_title h1 {
  font-size: 36px;
  color: #3f3f3f;
}

.privacy_title h2 {
  text-shadow: none;
  font-size: 25px;
  color: #eb008b;
  margin: 0 0 26px 0;
}

.privacy_title p {
  color: #747474 !important;
  text-shadow: none !important;
  font-size: 17px;
  font-weight: 300;
}

.privacy_note p {
  color: #000000 !important;
  text-shadow: none !important;
  font-size: 14px;
  font-weight: 300;
  margin: 12px 0 12px 0;
  font-family: sans-serif;
}

.privacy_note h3 {
  color: #000000 !important;
  text-shadow: none !important;
  font-size: 14px;
  font-weight: 300;
  margin: 12px 0 12px 0;
}

.privacy_note p strong {
  font-size: 14px;
  font-weight: 600;
  color: #ed008d;
  font-family: sans-serif;
}

.privacy_note address {
  color: #e91e63;
  font-family: serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.privacy_note p a {
  text-decoration: underline;
  text-decoration-color: #ff00a2;
  color: #000;
}

.privacy_note span {
  color: #e70093;
  text-shadow: none;
  font-size: 14px;
  font-family: sans-serif;
}

.privacy_ul h2 {
  font-size: 18px;
  text-shadow: none !important;
  color: #313131;
  margin: 0 0 13px 0;
}

.privacy_ul h3 {
  color: #000000 !important;
  text-shadow: none !important;
  font-size: 14px;
  font-weight: 300;
  margin: 12px 0 12px 0;
}

.privacy_ul p {
  color: #373737;
  text-shadow: none;
  font-family: sans-serif;
  font-size: 14px;
}

.privacy_ul ul li {
  font-size: 13px;
  text-shadow: none !important;
  color: #484848;
  margin: 0 0 9px 16px;
  list-style: square;
  font-family: sans-serif;
}

/*Contact CSS*/
.conta {
  padding-top: 4px;
  padding-bottom: 7px;
  background-color: #fbe7ff;
}

.conta a {
  padding: 4px 21px 4px 21px;
}

.conta h4 {
  background: #ff00a2;
  padding: 5px 10px;
  padding-top: 5px;
  padding-top: 5px;
  text-shadow: 1px 1px 2px #000;
  display: block;
  color: #fff8f8 !important;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.form-main {
  margin-right: 15px;
  margin-left: 15px;
}

.form-group label {
  text-align: left !important;
  display: block;
  color: #373737;
  font-size: 15px;
}

.dpboss_contact {
  color: #494949;
  font-family: sans-serif;
}

.addres_css {
  color: #262626;
  font-family: cursive;
}

/* Guesing-forum Quote Card Start*/
.cursor-pointer {
  cursor: pointer;
}

.quote-card-div {
  margin-top: 20px;
}

.quote-card-div .my-card {
  margin-top: 10px;
  overflow: hidden;
  border: 2px inset #d00047;
  border-radius: 5px;
  box-shadow: 0 0 10px -5px #000;
  background-image: linear-gradient(45deg, #ffc58a 50%, transparent 50%);
}

.quote-card-div .card-head {
  display: flex;
  justify-content: space-between;
  padding: 10px 13px;
  font-size: 18px;
  background-color: #d00047;
  border-bottom: 2px solid #d00047;
}

.quote-card-div .card-head h5 {
  font-family: serif;
  letter-spacing: 1px;
  font-size: 12px;
  align-self: center;
}

.quote-card-div .card-head a,
.quote-card-div .card-head h5 {
  text-shadow: 1px 1px 2px #000;
  color: #fff;
}

.quote-card-div .card-head a {
  font-style: italic;
}

.quote-card-div .card-body {
  padding-top: 0;
}

.quote-card-div .card-body p:last-child {
  padding-bottom: 10px;
  margin-top: 6px;
}

.card-body p {
  text-shadow: 1px 1px 2px #ffcad2;
  padding-top: 7px;
}

p {
  margin: 0 0 10px;
}

.quote-card-div .card-footer {
  display: flex;
  justify-content: space-around;
  border-top: 2px solid #01514a;
}

.quote-card-div .card-footer .btn-11 {
  background-color: #00ff7f;
  border-right: 1px solid #000;
}

.quote-card-div .card-footer .card-btn {
  padding: 8px 0;
  color: #000;
  text-shadow: 1px 1px 2px #fff;
  width: 100%;
  transition: 0.3s;
}

.card-footer a {
  cursor: pointer;
}

.quote-card-div .card-footer .btn-22 {
  border-right: 1px solid #000;
  background-color: #0ff;
}

.quote-card-div .card-footer .btn-33 {
  background-color: #87ceeb;
}

body {
  text-align: center;
  margin: 0;
  scroll-behavior: smooth;
  font-family: Helvetica, sans-serif;
  font-weight: 700;
}

/* Guesing-forum Quote Card End*/

.wwh {
  padding: 0;
  margin: 0 0 !important;
  background: yellow;
  color: #730000;
  border-radius: 3px;
  border: 0 !important;
  box-shadow: none !important;
  font-weight: 600;
}

/* BIGGER robot icon, button same */
.ai-btn svg {
  width: 22px;
  /* increased */
  height: 22px;
  /* increased */
  display: block;
}


/* Default Logo dpboss START */
.dpboss-logo {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: italic;
  font-size: 31px;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}

.dpboss-logo strong {
  color: #ea0f8c;
  /* DP – pinkish red #ff0055*/
  font-weight: 800;
  /* thoda extra bold */
}

.dpboss-logo span {
  color: #585858;
  /* Boss – dark grey */
  font-weight: 600;
}

/* optional: thoda tight join feel */
.dpboss-logo strong,
.dpboss-logo span {
  letter-spacing: 0.5px;
}

/* Default Logo dpboss END */


/* khatris chart START */
.gw-k_chart {
  border-radius: 5px !important;
  margin: 0 0 20px 0 !important;
  border: 5px solid #810069 !important;
  padding: 8px 10px !important;
}

.gw-k_head {
  font-family: 'Gelasio', serif !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 5px 5px 0 0 !important;
  font-size: 25px !important;
  padding: 7px 0 !important;
  margin: 0 !important;
  /* background-color: #000080 !important; */
  text-align: center !important;
}

.gw-chart {
  text-align: center;
  box-sizing: border-box;
  border-bottom: 2px solid #ff006c;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffe5cb;
  border-radius: 10px;
}

.gw-c_head {
  font-weight: 700 !important;
  color: red !important;
  padding: 10px 0 0 0px !important;
  font-size: 25px !important;
}

.gw-c_message {
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 25px !important;
}

.gw-p-khatris-tag {
  color: #000;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  font-style: normal;
  font-weight: initial;
  font-family: 'Roboto', sans-serif;
}

/* khatris chart END */


.final-number-p {
  margin: 16px 0px 16px 0px !important;
}


.matka-jodi-count h2 {
  margin: 20px 0px 20px 0px;
}

.matka-jodi-count big {
  font-size: larger !important;
  font-style: normal;
}

.fix-open-to-close-table td {
  text-align: center;
  color: #000;
  font-weight: 800;
  padding: 9px 0 !important;
  width: 50%;
  font-size: 22px;
  border: 1px solid #c9c9c9;
  font-weight: 500;
  font-family: initial;
}

.jodi-chart-mfnc {
  font-style: normal;
}

.jodi-chart-mfnc p {
  font-weight: initial;
  margin: 18px;
}

.jodi-chart-mfnc big {
  font-size: x-large;
  font-weight: initial;
}

.violet-bg-count {
  padding: 1px;
  margin-top: 20px;
  font-style: normal;
}


/*** footer-div market panel chart START **/
.d-none {
  display: none;
}

.gw-footer-text-div {
  max-width: 100%;
  text-align: center;
  margin: 2px;
  border: 2px solid purple;
  background: white;
  padding: 10px;
}

.gw-footer-text-div p {
  font-weight: 500;
  font-size: 12px;
  padding: 0px;
  margin: 0px;
}

.gw-faq-heading {
  font-weight: 600;
  color: red;
  text-shadow: 0px 0px 1px yellow;
  padding-bottom: 2px;
  font-size: 16px;
}

.gw-small-heading {
  font-weight: 600;
  color: red;
  text-shadow: 0px 0px 1px yellow;
  font-size: 16px;
}

.gw-footer-text-div p.faq-title {
  font-weight: 600;
}

/*** footer-div market panel chart END **/

/* Default Logo dpboss START */
.dpboss-logo {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: italic;
  font-size: 31px;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}

.dpboss-logo strong {
  color: #ea0f8c;
  /* DP – pinkish red #ff0055*/
  font-weight: 800;
  /* thoda extra bold */
}

.dpboss-logo span {
  color: #585858;
  /* Boss – dark grey */
  font-weight: 600;
}

/* optional: thoda tight join feel */
.dpboss-logo strong,
.dpboss-logo span {
  letter-spacing: 0.5px;
}

/* Default Logo dpboss END */



/*** evergreen page START **/
.gw-evergreen {
  margin: 0 0 5px;
  text-align: center;
  font-family: sans-serif !important;
}

.gw-evergreen a {
  text-decoration: none !important;
  color: inherit;
}

.gw-evergreen-page {
  margin: 0 0 5px;
}

.gw-evergreen-page a.btn {
  border: 1px solid #fff;
  background-color: #e91e63;
  color: #fff;
  padding: 4px 8px 3px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  font-weight: 700;
}

.gw-evergreen-page a span {
  font-size: 18px;
  line-height: 17px;
}

.gw-evergreen-page a b {
  display: inline-block;
}

.mb-1 {
  margin-bottom: 5px;
}

.p-1 {
  padding: 5px 10px 8px;
}

.my-1 {
  margin: 5px 0;
}


.gw-evergreen-bdr {
  border: 2px solid #eb008b;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
}

.gw-evergreen-title1 {
  font-size: 17px;
  color: #1a237e;
}


.gw-evergreen-p1 {
  font-size: 13px;
  color: #000;
  text-shadow: 1px 1px #f4e1e1;
}

.gw-evergreen-bdr3 {
  border-color: #024c88;
}

.gw-evergreen-red-btn {
  border: 2px solid #ff006c;
  background-color: #ff006c;
  color: #fff !important;
  padding: 4px 8px 3px;
  border-radius: 8px 0;
  font-size: 12px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  font-weight: 700;
}

.gw-evergreen-yellow-btn {
  background-color: #ffc107;
  color: #000;
  border: 1px solid #ff5722;
  padding: 4px 8px 3px;
  border-radius: 8px 0;
  font-size: 12px;
  display: inline-block;
  box-shadow: 0 0 10px -3px #000;
  font-weight: 700;
}

.gw-evergreen a {
  text-decoration: none !important;
  color: inherit;
}

.gw-evergreen-list-item .h4 {
  background-color: #024c88;
  color: #fff;
  padding: 5px 10px 3px;
  font-size: 24px;
}

.gw-evergreen-list-item a {
  border-bottom: 2px solid #024c88;
  color: #003c6c;
  display: block;
  font-size: 22px;
  padding: 5px 7px 4px
}

.gw-evergreen-list-item a:last-child {
  border-bottom-width: 0
}

.gw-evergreen-list-item a:hover {
  text-shadow: 1px 1px 2px #fff;
  color: #e91e63;
  background-color: #f5fff0
}



/*----------------Satta-matka-trick-and-schemes START----------------*/
.gw-evergreen-my-card .bg-primary {
  background: #024c88;
  color: #fff;
}

.gw-evergreen-my-card .h4 {
  font-size: 22px;
  text-transform: capitalize;
  border-radius: 0;
  margin-bottom: 5px;
}

.gw-evergreen-my-card .bg {
  padding: 5px 10px;
  border-radius: 4px;
}

.gw-evergreen-my-card small {
  color: #000;
  text-shadow: 1px 1px #f4e1e1;
}

.gw-evergreen-my-card p {
  line-height: 32px;
  font-weight: 500;
  padding: 10px;
  font-size: 18px;
  color: #000;
  text-shadow: 1px 1px #f4e1e1;
}

.gw-evergreen-my-card p .bg,
.gw-evergreen-my-card p .bg-danger {
  padding: 4px 8px 4px 6px;
  font-size: 13px;
  font-style: italic;
}




.gw-evergreen-my-card p .bg-danger,
.gw-evergreen-my-card p .bg-info,
.gw-evergreen-my-card p .bg-primary {
  text-shadow: 1px 1px #313131;
  font-weight: 700;
}

.gw-evergreen-my-card .d-inline {
  display: inline-block;
}

.gw-evergreen-my-card .bg-danger {
  background: #dc3545;
  color: #fff;
}

.my-2 {
  margin: 10px 0;
}

.gw-evergreen-my-card .bg-info {
  background-color: #17a2b8;
  color: #fff;
}
/*----------------Satta-matka-trick-and-schemes END----------------*/

/*----------------Satta-matka-trick-and-schemes2 START----------------*/
.gw-evergreen-my-card .bg-secondary {
    background-color: #6c757d;
    color: #fff;
}

.gw-evergreen-my-card .text-danger {
    color: #ff192f;
}

.gw-evergreen-my-card p .bg-dark, .gw-evergreen-my-card p .bg-secondary {
    font-weight: 700;
    text-shadow: 1px 1px #313131;
}
/*----------------Satta-matka-trick-and-schemes2 END----------------*/

/*----------------satta-matka-weekly-calculations START----------------*/
.gw-evergreen-my-card .text-success {
    color: #009e24;
}
/*----------------satta-matka-weekly-calculations END----------------*/

/*----------------satta-matka-fix-day-figure START----------------*/
.gw-evergreen-my-card .text-warning {
    color: #ffc107;
}

.gw-evergreen-my-card .text-info {
    color: #17a2b8;
}

.gw-evergreen-my-card .text-light {
    color: #f8f9fa;
}
/*----------------satta-matka-fix-day-figure END----------------*/

/*----------------satta-matka-same-jodi START----------------*/
.gw-evergreen-my-card .d-block {
    display: block;
}

.fz-16 {
    font-size: 16px !important;
}
/*----------------satta-matka-same-jodi END----------------*/

/*----------------satta-matka-band-weak-gine START----------------*/
.gw-evergreen-my-card .bg-dark {
    background-color: #343a40;
    color: #f8f9fa;
}
/*----------------satta-matka-band-weak-gine END----------------*/

/*----------------satta-matka-supplimentry-red START----------------*/
.gw-evergreen-my-card p .bg-warning {
    font-weight: 700;
    text-shadow: 1px 1px 2px #d5a000;
}

.gw-evergreen-my-card .bg-warning {
    background-color: #ffc107;
    color: #111;
}
/*----------------satta-matka-supplimentry-red END----------------*/

/*----------------satta-matka-line-ka-order START----------------*/
.gw-evergreen-my-card p .bg-light {
    background-color: #f8f9fa;
    color: #343a40;
}
/*----------------satta-matka-line-ka-order END----------------*/

/*----------------satta-matka-daily-figure-trick-seven START----------------*/
.gw-evergreen-my-card .text-primary {
    color: #004086;
}
/*----------------satta-matka-daily-figure-trick-seven END----------------*/

/*----------------satta-matka-sardarji-ke-figure START----------------*/
.fz-22 {
    font-size: 22px !important;
}

.fz-20 {
    font-size: 20px !important;
}
/*----------------satta-matka-sardarji-ke-figure END----------------*/

.fz-18 {
    font-size: 18px !important;
}

.lh-50 {
    line-height: 50px;
}
/*** evergreen page START **/