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

:root {
  /* font size */
  --fs1: 20px;
  --fs2: 18px;
  --fs3: 16px;

  /* colors */
  --c1: green;
  --c2: blue;
  --c3: red;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: 'Times New Roman', Times, serif;
}

body {
  background-color: #fff;
  position: relative;
}

.imgSec {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem 0rem;

  display: none;
}

.imgContainer {
  background-color: lightgray;
  width: 22rem;
  height: 15rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #000;
  border-radius: 5px
}

.imgContainer img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: ease-in-out 1s;
}

.imgContainer img:hover {
  scale: 1.1;
}

/* WhatsApp-Section */
.floating-bar {
  display: none;
  position: fixed;
  /* background-color: greenyellow; */
  top: 50%;
  right: 8%;
  transform: translate(0, -60%);
  height: 400px;
  width: 350px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #000;
  z-index: 40;
}

@media screen and (max-width: 600px) {
  .floating-bar {
    display: none;
    position: fixed;
    /* background-color: greenyellow; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    height: 400px;
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #000;
  }
}

.floating-bar .up-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F8D09C;
  padding: 5px;
  height: 15%;
}

.floating-bar .up-head img {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 100%;
}

.floating-bar .mid-content {
  height: 75%;
  background-color: #824360;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 5px;
}

.floating-bar .mid-content .two {
  width: 100%;
}

.floating-bar .mid-content .two .btn-cont {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.floating-bar .mid-content .two button {
  padding: 5px 10px;
  border-radius: 5px;
}


.floating-bar .inpt-sec {
  height: 15%;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
}

.floating-bar .inpt-sec img {
  width: 45px;
  height: 40px;
}

.floating-bar .inpt-sec input[type="text"] {
  text-align: start;
  padding-left: 5px;
  font-size: larger;
  height: 2.8rem;
  width: 85%;
  border: none;
}

/* End */

.top {
  display: flex;
  width: 100%;
  height: 3rem;
  background-color: #000;
  justify-content: space-evenly;
  align-items: center;
  padding: 5px;
  gap: .5rem;
}

.top a {
  text-decoration: none;
  color: #fff;
  background-color: #25579d;
  padding: 2px 15px;
  border-radius: 5px;
  font-size: 16px;
  margin: 3px;
  text-align: center;
  text-wrap: wrap;
}

header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9vh;
  gap: 2vh;
  border: dotted var(--c2) 4px;
  padding: 1rem;
}

header p {
  color: orange;
  font-weight: 800;
  font-stretch: expanded;
  font-size: 4.2vh;
  text-transform: uppercase;
  letter-spacing: 5px;
  -webkit-text-stroke: .4px red;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

header img {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  border: orange 3px ridge;
}

marquee {
  border: 1px solid #ff0;
  background-color: #a80000;
  padding: 3px;
  color: #fff;
  margin-top: 1px;
}

.head3 {
  background-color: #1d9d82;
  margin-bottom: 10px;
}

.head3 h1 {
  color: #fff;
  padding: 10px;
  font-size: var(--fs2);
}

.boxes {
  border: 3px solid #000;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  margin-bottom: 5px;
}

.boxes .title {
  color: #000;
  font-weight: 700;
  font-size: var(--fs1);
  margin: 0;
}

.boxes .subtitle {
  color: #b30a0a;
  font-size: var(--fs3);
  margin: 0 0 8px;
}

.boxes .description {
  color: var(--c2);
  font-size: var(--fs3);
  margin: 0;
  line-height: 1;
}

.boxes .contact {
  font-weight: 700;
  color: var(--c1);
  font-size: 18px;
  margin: 4px 0;
}

.cont-btns {
  display: flex;
  justify-content: center;
}

.cont-btns .whatsapp-btn,
.call-btn {
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: var(--fs3);
  margin: 0 5px;
  border: 1px solid var(--c2);
}

.whatsapp-btn {
  background-color: var(--c1);
}

.call-btn {
  background-color: var(--c2);
}

.search-sec {
  margin: 20px 0;
  text-align: center;
}

.search-sec button {
  background-color: blue;
  color: white;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px #000 solid;
}

.results-sec1 {
  border: 4px solid #f5ecce;
  background: #093028;
  background: linear-gradient(to right, #237A57, #093028);
  padding-top: 2px;
  padding-bottom: 2px;
  margin-bottom: 2px;
  color: #fff;
  text-align: center;
}

.results-sec1 .one {
  font-size: 30px;
  -webkit-text-stroke: 1px #fff;
  text-shadow: 6px 4px 4px #000;
  color: red;
  margin: 30px 0;
}

.results-sec1 .two {
  margin: 16px 0;
}

.results-sec1 .three {
  color: #00b8ff;
  font-size: 30px;
  margin: 30px 0;
}

.results-sec2 {
  text-align: center;
}

.results-sec2 .header {
  background-color: #002f99;
  color: #fff;
  margin: 2px;
  padding: 2px
}

.results-sec2 .game-sec {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1px
}

.results-sec2 .game-sec .left,
.right {
  width: -webkit-fill-available;
  margin: 1px
}

.results-sec2 .game-sec .left .one,
.results-sec2 .game-sec .right .one {
  border: 2px solid #003cff;
  color: #fff;
  background: #001899
}

.results-sec2 .game-sec .left p,
.results-sec2 .game-sec .right p {
  margin: 0;
  border-bottom: 2px solid beige
}

.results-sec2 .game-sec .left .two,
.results-sec2 .game-sec .right .two {
  background: #007991;
  background: -webkit-linear-gradient(to right, #78ffd6, #007991);
  background: linear-gradient(to right, #78ffd6, #007991)
}

.results-sec2 .game-sec .left .score,
.results-sec2 .game-sec .right .score {
  display: flex;
  justify-content: space-around;
  background-color: #ebfdff
}

.results-sec2 .game-sec .left .score .old,
.results-sec2 .game-sec .right .score .old {
  color: #ad0000;
  font-size: 18px;
  font-weight: 400
}

.results-sec2 .game-sec .left .score .new,
.results-sec2 .game-sec .right .score .new {
  color: #002f99;
  font-size: 18px;
  font-weight: 400
}

.noticeBoard {
  border: 5px solid #000;
  border-radius: 10px;
  background: #0f2027;
  text-align: center;
  padding: 10px;
  /* color: #78ffd6; */
  color: #fff;
  display: flex;
  flex-direction: column;
  height: fit-content;
  align-items: center;
}

.noticeBoard div {
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.noticeBoard p {
  text-wrap: nowrap;
}

.noticeBoard .one p {
  color: #ff0;
  /* line-height: 3.2vh; */
  /* font-size: 18px; */
  font-weight: 800;
}

.noticeBoard .three p {
  color: #e8931d;
  font-weight: 800;
  /* line-height: 2vh; */
  /* font-size: 14px; */
}

.noticeBoard .four p {
  color: #fff7f8;
  font-weight: 800;
  /* line-height: 2vh; */
  /* font-size: 16px; */
}

.noticeBoard .external {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.noticeBoard .external .one {
  border: 2px inset #777;
  padding: 10px 25px;
  background-color: blue;
  color: #fff;
}

.noticeBoard .external .two {
  border: 2px inset #777;
  padding: 10px 25px;
  background-color: green;
  color: #fff;
}

.noticeBoard .external a {
  text-decoration: none;
}

.aboutSatta {
  border: 2px solid #000;
  border-radius: 10px;
  background: #156858;
  background: -webkit-linear-gradient(to right, #002d22, #156858, #041411);
  background: linear-gradient(to right, #002d22, #156858, #041411);
  padding: 10px;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.aboutSatta h2,
.aboutSatta p,
.aboutSatta h3 {
  margin-bottom: 10px
}

.aboutSatta h2 {
  color: #fb9537
}

.aboutSatta h2,
.aboutSatta p,
.aboutSatta h3 {
  margin-bottom: 10px
}

.aboutSatta h3 {
  color: #fc912d;
  text-align: center
}

.aboutSatta a {
  color: #fff
}

.keywords {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #000;
  padding: 10px;
}

.gameContact {
  background: -webkit-linear-gradient(to right, #574dc2, #302b63, #302870);
  background: linear-gradient(to right, #24243e, #574dc2, #302870);
  border-radius: 10px;
  border: 3px solid #000;
  padding-top: 5px;
  text-align: center;
  margin-bottom: 5px;
  color: #fff;
  line-height: 8vh;
}

.gameContact .fifth {
  color: #ff0;
  font-size: 20px;
}

.gameContact .third {
  color: orange;
  font-size: 18px;
}

.gameContact a {
  color: #ff0;
  font-size: 25px;
  text-decoration: none;
}

.charts {
  text-align: center;
  margin-bottom: 20px;
}

.charts h2 {
  background-color: #002f99;
  color: #fff;
  padding: 10px;
  margin-bottom: 20px
}

.charts ul {
  list-style: none;
  padding: 0
}

.charts li {
  background: #156858;
  background: -webkit-linear-gradient(to right, #002d22, #156858, #041411);
  background: linear-gradient(to right, #002d22, #156858, #041411);
  border: 2px solid #fff;
  padding: 5px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  text-align: center
}

.charts a {
  color: #fff;
  text-decoration: none;
}

.charts p {
  background: #156858;
  background: -webkit-linear-gradient(to right, #002d22, #156858, #041411);
  background: linear-gradient(to right, #002d22, #156858, #041411);
  border: 2px solid #fff;
  padding: 5px;
  margin: 0;
  color: #fff;
  font-size: 18px
}

/* Results section */

.showChart {
  display: flex;
  width: 100%;
  flex-direction: column;
  /* height: 100%; */
  align-items: center;
  /* background-color: blue; */
  margin-top: .6rem;
}

.showChart h2 {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 800;
  background-color: #043dc3;
  color: #fff;
  text-align: center;
  padding: 5px;
  /* margin-bottom: .5rem; */
}

.showChart table {
  margin: auto;
  width: 100%;
  border: 2px solid;
}

.showChart table tr th {
  background-color: #092248;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 0 2px;

  text-align: center;
  border: 1px solid;
}

.showChart table tr td {
  border: solid 1px;
  /* font-weight: 700; */
  color: #000;
  /* padding: 6px; */
  text-align: center;
  box-shadow: -3px 0 10px 0 #fff
}

.monthlyCharts h2 {
  background-color: #002f99;
  font-size: 2rem;
  text-align: center;
  padding: 5px;
}

.monthlyCharts p {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}

.monthlyCharts table {
  width: 100%;
  border: 2px solid #000;
  margin-bottom: 5px;
}

.monthlyCharts table tr th,
.monthlyCharts table tr td {
  text-align: center;
  border: 1px solid
}

.monthlyCharts table tr th {
  background-color: #092248;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 0 2px
}