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

body {
  min-height: 100vh;
  cursor: default;
  background: rgb(18, 86, 68);
  background: linear-gradient(143deg, rgb(18, 86, 68) 0%, rgb(255, 255, 255) 35%, rgb(95, 187, 151) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-text-size-adjust: 100%;
}

header {
  font-size: 22px;
  font-family: "Dancing Script", cursive;
  color: #000000;
  display: flex;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  /* spin */
}
header .balance-sum {
  color: #cb3c23;
  border-bottom: 1px solid #cb3c23;
}
header i {
  cursor: pointer;
}
header nav {
  -webkit-clip-path: circle(30px at 100% -10%);
          clip-path: circle(30px at 100% -10%);
  border-bottom-left-radius: 0px;
  width: 100%;
  height: 100%;
  background-color: #5FBB97;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
header nav ul {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}
header nav ul li {
  cursor: pointer;
}
header nav ul i {
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  top: 1%;
  right: 2.2%;
  opacity: 0.7;
}

.wheel-container {
  margin: 35px 0px 0px 0px;
  background-color: #ffffff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  aspect-ratio: 1;
  border-radius: 20px;
  box-shadow: 0 0 15px #cb3c23;
}

.rewards {
  position: absolute;
  width: 12%;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  font-size: 20px;
}
.rewards img {
  width: 90%;
  height: auto;
}

.k1 {
  top: 0%;
  right: 50%;
  transform: translateX(50%);
}

.k2 {
  top: 7%;
  right: 34.5%;
  transform: translate(50%, -50%);
  rotate: 22.5deg;
}

.k3 {
  top: 13%;
  right: 21%;
  transform: translate(50%, -50%);
  rotate: 45deg;
}

.k4 {
  top: 24%;
  right: 11%;
  transform: translate(50%, -50%);
  rotate: 67.5deg;
}

.k5 {
  top: 50%;
  right: 0%;
  transform: translate(-50%, 0%);
  rotate: 90deg;
}

.k6 {
  bottom: 24%;
  right: 11%;
  transform: translate(-50%, -50%);
  rotate: 112.5deg;
}

.k7 {
  bottom: 13%;
  right: 21%;
  transform: translate(-50%, -50%);
  rotate: 135deg;
}

.k8 {
  bottom: 7%;
  right: 34.5%;
  transform: translate(-50%, -50%);
  rotate: 157.5deg;
}

.k9 {
  bottom: 0;
  right: 50%;
  transform: translate(-50%, 0%);
  rotate: 180deg;
}

.k10 {
  bottom: 7%;
  left: 34.5%;
  transform: translate(50%, -50%);
  rotate: -157.5deg;
}

.k11 {
  bottom: 13%;
  left: 21%;
  transform: translate(50%, -50%);
  rotate: -135deg;
}

.k12 {
  bottom: 24%;
  left: 11%;
  transform: translate(50%, -50%);
  rotate: -112.5deg;
}

.k13 {
  bottom: 50%;
  left: 0%;
  transform: translate(-50%, 0%);
  rotate: -90deg;
}

.k14 {
  top: 24%;
  left: 11%;
  transform: translate(-50%, -50%);
  rotate: -67.5deg;
}

.k15 {
  top: 13%;
  left: 21%;
  transform: translate(-50%, -50%);
  rotate: -45deg;
}

.k16 {
  top: 7%;
  left: 34.5%;
  transform: translate(-50%, -50%);
  rotate: -22.5deg;
}

.wheel {
  height: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel .wheel-arrow {
  border-radius: 5px;
  width: 3%;
  height: 90%;
  background: #cb3c23;
  position: relative;
  transform: rotate(0deg);
}
.wheel .wheel-arrow::after {
  left: -50%;
  bottom: -1%;
  width: 200%;
  height: 61%;
  content: "";
  position: absolute;
  background: #ffffff;
}

.reward-current {
  margin: 300px 0px 0px 0px;
  transform: translateY(-50%);
  position: fixed;
  width: 600px;
  height: 300px;
  background: #ffffff;
  z-index: 1;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  border: 2px solid black;
  font-family: "Montserrat", sans-serif;
  font-weight: lighter;
  padding: 20px 0px;
}
.reward-current .title-container {
  display: flex;
  gap: 5px;
  align-items: center;
}
.reward-current h6 {
  font-weight: normal;
}
.reward-current span {
  font-weight: 600;
  font-size: 20px;
}
.reward-current img {
  width: 25%;
  height: auto;
}
.reward-current p {
  font-size: 28px;
}
.reward-current .buttons {
  margin: 20px 0px 0px 0px;
}
.reward-current .buttons button {
  width: 70px;
  height: 30px;
  border: none;
  border-radius: 10px;
  color: #ffffff;
}
.reward-current .buttons button:nth-child(1) {
  background: #FF4B3E;
}
.reward-current .buttons button:nth-child(2) {
  background: #5FBB97;
}
.reward-current .buttons button:active {
  box-shadow: 0 0 5px 0 black;
}

.btn-spin {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  background-color: #cb3c23;
  color: #ffffff;
  width: 50px;
  font-size: 13px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  outline: 10px solid #ffffff;
  cursor: pointer;
}
.btn-spin:active {
  scale: 0.9;
}

.all-rewards {
  background-color: #cb3c23;
  border-radius: 5px;
  color: #ffffff;
  padding: 2px 5px;
  border: 1px solid #cb3c23;
  margin: 20px 0px 0px 0px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.all-rewards:hover {
  scale: 1.1;
}

.rewards-cont {
  border-radius: 30px;
  padding: 50px 50px;
  width: 90%;
  height: 89%;
  overflow-x: hidden;
  background: #ffffff;
  position: fixed;
  top: 60px;
  display: none;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.rewards-cont button {
  border: none;
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #cb3c23;
  border: 1px solid #FF4B3E;
  width: 150px;
  height: 30px;
  border-radius: 10px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rewards-cont button:active {
  scale: 0.98;
  background-color: #FF4B3E;
  color: #ffffff;
}
.rewards-cont i {
  position: absolute;
  right: 1.5%;
  top: 1.5%;
  color: #000000;
}
.rewards-cont div {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}
.rewards-cont div .odds {
  font-weight: bolder;
}
.rewards-cont img {
  width: 100%;
  height: auto;
}

.claimed-rewards-cont {
  position: fixed;
  top: 120px;
  width: 100%;
  z-index: 3;
  background-color: transparent;
  display: none;
  justify-content: center;
  align-items: center;
}
.claimed-rewards-cont i {
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: -50px;
  font-size: 25px;
  color: #000000;
}
.claimed-rewards-cont .claimed-rewards {
  gap: 10px;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  border-radius: 30px;
  box-shadow: 0 0 15px #cb3c23;
  width: 700px;
  height: 450px;
  background: #ffffff;
}
.claimed-rewards-cont .claimed-rewards .reward {
  padding-inline: 10px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.4117647059);
  display: flex;
  justify-content: space-between;
}
.claimed-rewards-cont .claimed-rewards .reward .img-text-cont {
  display: flex;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
}
.claimed-rewards-cont .claimed-rewards .reward .img-text-cont .text-cont {
  display: grid;
  place-content: center;
}
.claimed-rewards-cont .claimed-rewards .reward .img-text-cont .text-cont p {
  text-align: center;
}
.claimed-rewards-cont .claimed-rewards .reward .img-text-cont img {
  width: 25%;
  height: auto;
}
.claimed-rewards-cont .claimed-rewards .reward .claimed-rewards-action {
  width: 35%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.claimed-rewards-cont .claimed-rewards .reward .claimed-rewards-action button {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  width: 100px;
  height: 40px;
  border-radius: 10px;
  border: none;
}
.claimed-rewards-cont .claimed-rewards .reward .claimed-rewards-action button:active {
  scale: 0.9;
}
.claimed-rewards-cont .claimed-rewards .reward .claimed-rewards-action button:nth-child(1) {
  background-color: #5FBB97;
}
.claimed-rewards-cont .claimed-rewards .reward .claimed-rewards-action button:nth-child(2) {
  background-color: #FF4B3E;
}

.about-cont {
  z-index: 3;
  width: 750px;
  height: 520px;
  position: fixed;
  top: 80px;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  display: none;
  flex-direction: column;
  gap: 20px;
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 0 15px #FF4B3E;
}
.about-cont .about-title {
  width: 100%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.6039215686);
  text-align: center;
  font-size: 40px;
}
.about-cont p {
  font-size: 17px;
  text-align: left;
}
.about-cont i {
  position: absolute;
  left: -280px;
  top: -20px;
  color: #000000;
  font-size: 25px;
}

.thanks-cont {
  z-index: 6;
  width: 750px;
  height: 520px;
  position: fixed;
  top: 80px;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 0 15px #FF4B3E;
}
.thanks-cont p:nth-child(1) {
  font-size: 40px;
}
.thanks-cont p:nth-child(2) {
  text-align: center;
  font-size: 25px;
}
.thanks-cont button {
  width: 100px;
  height: 40px;
  font-family: "Montserrat", sans-serif;
  border: none;
  background-color: #5FBB97;
  border-radius: 15px;
  font-size: 20px;
}
.thanks-cont button:active {
  scale: 0.9;
}

.contact-cont {
  z-index: 3;
  width: 750px;
  height: 520px;
  position: fixed;
  top: 80px;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  display: none;
  align-items: center;
  flex-direction: column;
  padding: 50px 30px;
  border-radius: 30px;
  gap: 20px;
  box-shadow: 0 0 15px #cb3c23;
}
.contact-cont .fa-arrow-left-long {
  position: absolute;
  left: -280px;
  top: -20px;
  color: #000000;
  font-size: 25px;
  cursor: pointer;
}
.contact-cont .contact-title {
  height: 15%;
  width: 100%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.6039215686);
  text-align: center;
  font-size: 40px;
}
.contact-cont .contact-text {
  height: 70%;
  width: 100%;
  display: flex;
}
.contact-cont .contact-text .contact-middle {
  width: 50%;
}
.contact-cont .contact-text .contact-left {
  border-right: 1px solid #5FBB97;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.contact-cont .contact-text .contact-left .card {
  transform-style: preserve-3d;
  cursor: pointer;
  color: #ffffff;
  font-size: 17px;
  background: #ffffff;
  color: #cb3c23;
  width: 200px;
  height: 50px;
  border-radius: 5px;
  display: grid;
  position: relative;
  place-content: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.contact-cont .contact-text .contact-left .card p {
  background: #ffffff;
  border: 1px solid #cb3c23;
  color: #cb3c23;
  width: 100%;
  display: grid;
  place-content: center;
  position: absolute;
  height: 100%;
}
.contact-cont .contact-text .contact-left .card p:nth-child(1) {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.contact-cont .contact-text .contact-left .card p:nth-child(2) {
  transform: rotateX(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.contact-cont .contact-text .contact-right {
  padding-inline: 20px;
  background-color: #cb3c23;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left: 1px solid #cb3c23;
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
}
.contact-cont .contact-text .contact-right .technologies {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  justify-content: space-around;
}
.contact-cont .contact-text .contact-right .technologies i {
  font-size: 30px;
  color: white;
}
.contact-cont .contact-text .contact-right .technologies .metter-cont {
  display: flex;
  justify-self: right;
  gap: 3px;
}
.contact-cont .contact-text .contact-right .technologies .metter-cont .metter {
  height: 15px;
  width: 50px;
  border-radius: 10px;
  border: 1px solid white;
  position: relative;
}
.contact-cont .contact-text .contact-right .technologies .metter-cont .metter .h1, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .h2, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .h3, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .h4, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .css1, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .css2, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .css3, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .js1, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .js2, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .js3, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .php1, .contact-cont .contact-text .contact-right .technologies .metter-cont .metter .react1 {
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  position: absolute;
  background: white;
  border-radius: 10px;
  border: none;
}
.contact-cont .contact-down {
  padding: 20px 0px 0px 0px;
  width: 100%;
  height: 15%;
  border-top: 2px solid rgba(0, 0, 0, 0.6039215686);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact-cont .contact-down a {
  color: #cb3c23;
  text-decoration: none;
}
.contact-cont .contact-down a i {
  font-size: 50px;
  cursor: pointer;
}

.message-cont {
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(143deg, rgb(18, 86, 68) 0%, rgb(255, 255, 255) 35%, rgb(95, 187, 151) 100%);
  position: fixed;
  display: none;
  place-content: center;
}
.message-cont .message {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 19px;
  text-align: center;
  width: 500px;
  height: 250px;
  background: #cb3c23;
}
.message-cont .message a {
  text-decoration: none;
  color: #ffffff;
  font-size: 50px;
}

.block {
  opacity: 0;
}

.rotate {
  transform: rotateX(180deg);
}

@media only screen and (max-width: 700px) {
  .message-cont .message {
    width: 80vw;
    height: 50vh;
  }
  header .laki-unbox {
    display: none;
  }
  .wheel-container {
    margin: 170px 0px 0px 0px;
    width: 90vw;
  }
  .wheel-container img {
    width: 90%;
    height: auto;
  }
  .rewards-cont {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }
  .rewards-cont i {
    right: 5%;
    top: 2%;
    font-size: 22px;
  }
  .reward-current {
    width: 90%;
    margin: 350px 0px 0px 0px;
  }
  .claimed-rewards-cont {
    width: 90%;
    gap: 0px;
  }
  .claimed-rewards-cont .claimed-rewards {
    gap: 10px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px #cb3c23;
    width: 90vw;
    height: 500px;
    padding-inline: 10px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.4117647059);
    display: flex;
    gap: 10px;
  }
  .claimed-rewards-cont .claimed-rewards .img-text-cont {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
  }
  .claimed-rewards-cont .claimed-rewards .img-text-cont .text-cont {
    display: grid;
    place-content: center;
  }
  .claimed-rewards-cont .claimed-rewards .img-text-cont .text-cont p {
    text-align: center;
  }
  .claimed-rewards-cont .claimed-rewards .img-text-cont img {
    width: 100%;
    height: auto;
  }
  .thanks-cont {
    top: 110px;
    width: 90vw;
    padding: 20px 20px;
  }
  .thanks-cont p:nth-child(1) {
    font-size: 30px;
    text-align: center;
  }
  .thanks-cont p:nth-child(2) {
    font-size: 18px;
    text-align: justify;
  }
  .about-cont {
    width: 90vw;
    height: 570px;
    top: 50%;
    transform: translateY(-45%);
    gap: 10px;
    padding: 20px 20px;
    justify-self: center;
  }
  .about-cont i {
    left: 0%;
    top: -10%;
  }
  .about-cont p {
    font-size: 15px;
  }
  .contact-cont {
    width: 90vw;
    top: 100px;
  }
  .contact-cont .contact-text {
    display: flex;
    flex-direction: column;
  }
  .contact-cont .contact-text .contact-right {
    display: none;
  }
  .contact-cont .contact-text .contact-left {
    gap: 10px;
    width: 100%;
    border: none;
  }
}/*# sourceMappingURL=style.css.map */