@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Geologica", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: url(../img/bg.jpg) top center/cover no-repeat;
}

h1, h2 {
  font-family: "Gerhaus";
}

@font-face {
  font-family: "Gerhaus";
  src: url(../fonts/Gerhaus-Regular.ttf);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .left {
  display: flex;
  align-items: center;
  gap: 42px;
}
.header .container .left nav ul {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  gap: 50px;
  display: flex;
}
.header .container .left nav ul li {
  list-style-type: none;
}
.header .container .left nav ul li a {
  color: #000;
  text-decoration: none;
}
.header .container .left nav ul li a:hover {
  text-decoration: underline;
}
.header .container .left .logo img {
  width: 134px;
}
.header .container .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .container .right .card-sh {
  margin-right: 20px;
}
.header .container .right .card-sh img {
  width: 24px;
}
.header .container .right a:hover {
  text-decoration: underline;
}
.header .container .right .log {
  color: #000;
  text-decoration: none;
}
.header .container .right .log img {
  width: 24px;
}
.header .container .right p {
  color: #000;
  margin-bottom: 0;
}

.header-block {
  margin-top: 74px;
}
.header-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-block .container .text {
  width: 60%;
  text-align: center;
}
.header-block .container .text h1 {
  position: relative;
  text-transform: uppercase;
  font-size: 96px;
  margin-bottom: 64px;
}
.header-block .container .text h1::after {
  content: attr(data-text);
  position: absolute;
  left: -10px;
  top: -5px;
  color: transparent;
  -webkit-text-stroke: 1px #F29C35;
  z-index: -1;
}
.header-block .container .text .timer-bg {
  background: url(../img/timer-bg.png) center center no-repeat;
  background-size: contain;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-block .container .text .timer-bg h2 {
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 23px;
}
.header-block .container .text .timer-bg .timer {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.header-block .container .img {
  width: 35%;
}
.header-block .container .img img {
  width: 100%;
}

.btn-link {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 99px;
  padding: 16px 48px;
  background-color: #F29C35;
  transition: 0.4s all;
}
.btn-link:hover {
  color: #fff;
  transform: translateY(-3px);
}

.header-bottom {
  padding-top: 130px;
  padding-bottom: 200px;
}
.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.header-bottom .container .text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.header-bottom .container .text p {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}
.header-bottom .container .text .d-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.header-bottom .container .text h3 {
  font-weight: bold;
  font-size: 24px;
  margin-left: 25px;
  margin-bottom: 0;
}
.header-bottom .container .btn-link {
  font-size: 16px;
  padding: 12px 120px;
}

.title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 35px;
}
.title h2 {
  font-size: 32px;
}
.title p {
  margin-top: 28px;
  margin-bottom: 0;
}

.main-card {
  padding-bottom: 83px;
}
.main-card .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.main-card .items .item {
  background: url(../img/main-card-bg.png) center center no-repeat;
  background-size: contain;
}
.main-card .items .item .game-block {
  padding: 30px 54px;
}
.main-card .items .item .top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.main-card .items .item .titl {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0;
}
.main-card .items .item .counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-card .items .item .counter button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.main-card .items .item .count {
  font-size: 18px;
}
.main-card .items .item .price {
  font-size: 24px;
  font-weight: bold;
}
.main-card .items .item .bottom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.main-card .items .item .add-to-cart {
  background: #f8a825;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  text-decoration: none;
}
.main-card .items .item .add-to-cart img {
  width: 24px;
}
.main-card .items-b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-bottom: 50px;
}

.faq-section {
  margin-bottom: 100px;
}
.faq-section .items {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-section .faq-item {
  background: #f9f7f4;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .faq-question {
  padding: 20px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section .faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  display: none;
  color: #555;
}
.faq-section .arrow {
  transition: transform 0.3s ease;
  color: #f7a800;
  font-size: 20px;
}
.faq-section .faq-item.active .arrow {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}

.main-bottom {
  margin-bottom: 150px;
}

.footer {
  background-color: #d08b23;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}
.footer .footer-logo {
  margin-bottom: 10px;
  width: 135px;
}
.footer h2 {
  margin-bottom: 20px;
  font-size: 40px;
}
.footer p {
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  color: #fff;
}
.footer a {
  color: #ffffff;
  text-decoration: underline;
}
.footer .footer-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.footer .footer-icons img {
  width: auto;
  height: 80px;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer .footer-links a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline;
}

.calc-block {
  margin-bottom: 100px;
}
.calc-block .container {
  max-width: 800px;
}
.calc-block .game-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calc-block .step {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.calc-block .step-label {
  font-weight: bold;
}
.calc-block select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.calc-block .custom-entry {
  width: 100%;
}
.calc-block label h6 {
  margin-top: 10px;
  font-size: 12px;
}
.calc-block .custom-entry h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.calc-block .entry-box {
  background: url(../img/play-bg.png) center center no-repeat;
  background-size: contain;
  border-radius: 15px;
  padding: 100px 50px;
}
.calc-block .entry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.calc-block .logo-title {
  display: flex;
  align-items: center;
  gap: 20px;
}
.calc-block .logo {
  display: flex;
  align-items: center;
}
.calc-block .logo img {
  width: 80px;
}
.calc-block .prize-title {
  font-size: 22px;
  font-weight: bold;
}
.calc-block .counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-block .counter button {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.calc-block .price {
  font-size: 24px;
  font-weight: bold;
}
.calc-block .entry-details p {
  margin: 4px 0;
  font-size: 14px;
}
.calc-block .add-to-cart {
  margin-top: 20px;
  background: #ffc107;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}
.calc-block .note {
  font-size: 12px;
  text-align: center;
}
.calc-block .action-buttons {
  gap: 20px;
}
.calc-block .action-buttons button {
  background-color: #fff;
  width: 100%;
  border: none;
  padding: 20px;
}
.calc-block .number-selection-block {
  margin-bottom: 40px;
}
.calc-block .step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.calc-block .step-number {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  background: #ffc107;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  font-weight: bold;
  margin-right: 15px;
}
.calc-block .step-label {
  font-weight: bold;
  font-size: 18px;
}
.calc-block .step-sub {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.calc-block .controls {
  margin: 20px 0;
  display: flex;
  justify-content: flex-end;
}
.calc-block .controls button {
  padding: 8px 15px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}
.calc-block .fast-select {
  background: #ffc107;
  color: white;
}
.calc-block .clear-all {
  background: black;
  color: white;
}
.calc-block .number-board {
  background: #EDE3D1;
  padding: 20px;
  border-radius: 12px;
}
.calc-block .selected-numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.calc-block .circle {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  background: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
.calc-block .numbers-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}
.calc-block .numbers-grid button {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: white;
  font-weight: bold;
  cursor: pointer;
}
.calc-block .numbers-grid button.disabled {
  background: #ddd;
  pointer-events: none;
}
.calc-block .action-buttons {
  display: flex;
  justify-content: space-between;
}
.calc-block #subscription-block {
  margin: 40px 0;
  font-family: Arial, sans-serif;
}
.calc-block #subscription-block .step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.calc-block #subscription-block .step-number {
  width: 24px;
  height: 24px;
  background: #ffc107;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  margin-right: 10px;
  color: white;
  font-size: 14px;
}
.calc-block #subscription-block .step-label {
  font-weight: bold;
  font-size: 18px;
}
.calc-block #subscription-block .step-sub {
  display: block;
  font-weight: normal;
  font-size: 12px;
  margin-top: 4px;
  color: #666;
}
.calc-block .subscription-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}
.calc-block .subscription-options label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  gap: 15px;
  position: relative;
}
.calc-block .subscription-options input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: white;
  border: 2px solid #ccc;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.calc-block .subscription-options input[type=radio]:checked {
  background: #ffc107;
  border-color: #ffc107;
}
.calc-block .subscription-options input[type=radio]::after {
  content: "✔";
  font-size: 14px;
  color: white;
  position: absolute;
  top: 2px;
  left: 5px;
  display: none;
}
.calc-block .subscription-options input[type=radio]:checked::after {
  display: block;
}
.calc-block .subscription-options select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  cursor: pointer;
}
.calc-block #final-price-block {
  margin-top: 30px;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-block #perDrawText {
  font-size: 16px;
  font-weight: normal;
  color: #555;
}
.calc-block .flex-gt {
  display: flex;
  justify-content: space-between;
}

.res-bl-1 {
  margin: 100px 0;
}
.res-bl-1 .lottery-draw {
  text-align: center;
}
.res-bl-1 .lottery-draw h2 {
  margin-bottom: 5px;
  font-size: 24px;
}
.res-bl-1 .lottery-draw p {
  margin-bottom: 20px;
  color: #666;
}
.res-bl-1 .winning-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.res-bl-1 .number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  background: orange;
  color: white;
}
.res-bl-1 .number.white {
  background: white;
  border: 2px solid #ccc;
  color: black;
}
.res-bl-1 .supp {
  display: flex;
  gap: 8px;
}
.res-bl-1 .table-wrapper {
  overflow-x: auto;
}
.res-bl-1 .lottery-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.res-bl-1 .lottery-table th, .res-bl-1 .lottery-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.res-bl-1 .lottery-table th {
  background-color: #f1f1f1;
  font-weight: bold;
}
.res-bl-1 .combo .dots {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.res-bl-1 .combo h6 {
  margin: 12px 0;
}
.res-bl-1 .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.res-bl-1 .dot.orange {
  background-color: orange;
}
.res-bl-1 .dot.white {
  background-color: white;
  border: 1px solid #ccc;
}

.s-block {
  margin-bottom: 100px;
}
.s-block .search-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-family: Arial, sans-serif;
}
.s-block .search-label {
  padding: 8px 20px;
  border: 1px solid black;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
}
.s-block .search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-block .search-input {
  width: 250px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 16px;
  outline: none;
}
.s-block .search-button {
  background-color: #f5a330;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.s-block .search-button:hover {
  background-color: #e18f1c;
}

.info-res {
  margin-bottom: 100px;
}
.info-res .tabs {
  display: flex;
  max-width: 700px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #000;
  justify-content: center;
  margin: 24px auto;
}
.info-res .res_button {
  flex: 1;
  padding: 12px;
  width: 100%;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #fff;
  font-size: 16px;
  transition: background 0.3s;
}
.info-res .res_button.active {
  background: #F29C35;
  color: #fff;
}
.info-res .res_block {
  display: none;
}
.info-res .res_block.active {
  display: block;
}
.info-res .note {
  margin-top: 10px;
  font-size: 24px;
  color: #1D1D1D;
}
.info-res .subtext {
  margin-bottom: 20px;
}
.info-res .numbers-grid {
  display: flex;
  gap: 40px;
}
.info-res .column {
  flex: 1;
}
.info-res .tabs-nb {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
  width: 100%;
}
.info-res .tabs-nb span {
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: #F29C35;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  font-weight: bold;
  margin-right: 8px;
}
.info-res .tabs-nb .fg {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
}
.info-res .tabs-nb .fg .bar {
  margin-top: 8px;
}
.info-res .tabs-nb .line_b {
  flex: 1;
  height: 8px;
  min-height: 8px;
  background: #F29C35;
  border-radius: 4px;
}

.how-block {
  margin: 100px 0;
}
.how-block .block {
  margin-bottom: 60px;
}
.how-block .block h2 {
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
}
.how-block .block h2 img {
  width: 35px;
  margin-right: 10px;
}
.how-block .block .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.how-block .block .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  position: relative;
}
.how-block .block .card .top {
  background: #f7941d;
  color: white;
  margin: -20px -20px 20px -20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.how-block .block .card .top .or {
  color: #fff;
  margin-bottom: 10px;
}
.how-block .block .card .top .balls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.how-block .block .card h3 {
  font-size: 18px;
}
.how-block .block .balls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.how-block .block .balls span {
  width: 16px;
  height: 16px;
  margin: 4px;
  border-radius: 50%;
  display: inline-block;
}
.how-block .block .filled {
  background: white;
  border: 2px solid #fff;
}
.how-block .block .empty {
  background: none;
  border: 2px solid #fff;
  opacity: 0.4;
}
.how-block .block .or {
  margin: 0 8px;
  font-weight: bold;
  color: #f7941d;
  font-size: 14px;
}
.how-block .block .description {
  font-size: 14px;
  margin-bottom: 10px;
}
.how-block .block .odds {
  font-size: 12px;
  color: #555;
  margin-bottom: 0;
}
.how-block .block .odds strong {
  color: black;
}
.how-block .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.how-block .h2 {
  text-align: center;
  margin-bottom: 30px;
}

.ways-15 {
  background: url(../img/a-winners-bg.png) center center/cover no-repeat;
  padding-bottom: 100px;
}
.ways-15 .items {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.ways-15 .items h5 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.main-card-2 {
  margin-top: 100px;
}

.policy {
  margin: 100px 0;
}
.policy h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 16px;
  font-family: "Geologica", sans-serif;
}
.policy p, .policy ul {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}
.policy h3 {
  font-size: 25px;
  margin-bottom: 16px;
  font-weight: bold;
}

.header-block-login {
  margin-bottom: 100px;
}

.login-bg {
  background: url(../img/log-bg-img.png) center center no-repeat;
  background-size: contain;
  width: 80%;
  margin: 0 auto;
  padding: 50px 10px;
}
.login-bg .title {
  text-align: center;
}
.login-bg .title h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  gap: 10px;
}
.login-bg .title h2 img {
  width: 80px;
}
.login-bg .title p {
  font-size: 14px;
}

.bg_sign {
  background: url(../img/reg-bg-img.png) center center no-repeat;
  background-size: contain;
  margin: 0 auto;
  width: 70%;
}

.login-info .sign_terms2 {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  padding: 50px 0;
}

.login-bg .title {
  margin-bottom: 10px;
}

.login-info .sign_terms2 small {
  color: #000;
  font-size: 12px;
}

.login-info input[type=text], .login-info input[type=email], .login-info input[type=password] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid #d5d5d5;
}

input::-moz-placeholder {
  color: #D2D2D2;
}

input::placeholder {
  color: #D2D2D2;
}

.login-info .name-fields {
  display: flex;
  gap: 10px;
}

.login-info .name-fields input {
  flex: 1;
}

.login-info .submit-btn {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 60px;
  background: #F29C35;
  text-decoration: none;
  margin-top: 7px;
  width: 100%;
  border: none;
  color: #fff;
}

.login-info .terms {
  font-size: 13px;
  margin-top: 10px;
  color: #000;
  text-align: left;
  margin-bottom: 0;
}

.login-info .terms a {
  color: #F29C35;
}

.login-info .eye-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.login-info .input-wrapper {
  position: relative;
}

.login-info .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.login-info .modal-content {
  background-color: #fff;
  padding: 45px 20px;
  border-radius: 10px;
  width: 92%;
  max-width: 430px;
  text-align: center;
  position: relative;
  color: #000;
}

.login-info .modal-content input[type=number] {
  width: 100%;
  padding: 10px;
  margin: 12px 0;
  border-radius: 5px;
  border: none;
  outline: none;
  border: 1px solid #d7d7d7;
}

.login-info .modal-content p {
  margin: 10px 0;
}

.login-info .generated-code {
  font-size: 18px;
  font-weight: bold;
  color: #00ffff;
}

.login-info .close-btn {
  background-color: #F29C35;
  border: none;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.login-info .form-policy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.login-info .form-policy p {
  margin-bottom: 0;
  font-size: 14px;
}
.login-info .form-policy a {
  color: #F29C35;
  font-size: 14px;
  text-decoration: none;
}

.login-info .form-policy a {
  color: #F29C35;
}

.login-info .eye-icon {
  font-size: 14px;
}

.close-btn, .x-btn {
  background: #F29C35;
  border: none;
  padding: 10px;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.x-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.card-winners_bl {
  margin-bottom: 100px;
}
.card-winners_bl .shopping-winners_bl {
  color: #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 48px 64px;
  background: url(../img/card-bg.png) center center no-repeat;
  background-size: contain;
}
.card-winners_bl .shopping-winners_bl h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 40px;
  gap: 10px;
}
.card-winners_bl .shopping-winners_bl h2 img {
  width: 100px;
}
.card-winners_bl #reset img {
  width: 24px;
}
.card-winners_bl input {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
}
.card-winners_bl .ticket-info, .card-winners_bl .total-info {
  margin: 15px 0;
}
.card-winners_bl .top {
  display: flex;
  justify-content: space-between;
}
.card-winners_bl .numbers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid #000;
  padding: 10px;
  border-radius: 30px;
}
.card-winners_bl .numbers .fg-t {
  display: flex;
}
.card-winners_bl .numbers p {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 17px;
}
.card-winners_bl .number {
  background: #F29C35;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.card-winners_bl .controls {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.card-winners_bl .controls button {
  border: none;
  color: #000;
  margin: 0 5px;
  background-color: transparent;
  cursor: pointer;
  padding: 5px;
}
.card-winners_bl .pay-block {
  margin-top: 20px;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  max-width: 320px;
  margin-left: auto;
  font-size: 20px;
  font-weight: bold;
}
.card-winners_bl .pay-btn {
  margin-top: 22px;
  background: #F29C35;
  border: none;
  padding: 11px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  width: 100%;
  font-weight: bold;
}

.modal_th {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 60px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  color: #000;
  position: relative;
}
.popup-content p {
  margin-bottom: 0;
}

.popup-close {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 33px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

@media (max-width: 999px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header .container {
    flex-direction: column;
  }
  .header-block .container {
    flex-direction: column;
  }
  .header-block .container .text {
    width: 100%;
  }
  .header-block .container .text h1 {
    font-size: 45px;
  }
  .header-block .container .img {
    margin-top: 35px;
    width: 70%;
  }
  .header-block .container .text .timer-bg h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .header-block .container .text h1 {
    margin-bottom: 35px;
  }
  .btn-link {
    font-size: 16px;
    padding: 12px 35px;
  }
  .header-bottom {
    padding: 70px 0;
  }
  .header-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .header-bottom .container .text h2 {
    font-size: 32px;
  }
  .header-bottom .container .btn-link {
    width: 100%;
  }
  .header-bottom .container .text .d-flex {
    flex-direction: column;
  }
  .header-bottom .container .text .d-flex h3 {
    margin-left: 0;
  }
  .main-card .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .main-card .items .item .game-block {
    padding: 30px;
  }
  .faq-section .faq-question {
    font-size: 16px;
  }
  .main-bottom {
    margin-bottom: 100px;
  }
  .calc-block .game-selector {
    flex-direction: column;
    align-items: start;
  }
  .calc-block .circle {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
  }
  .calc-block .controls button {
    font-size: 14px;
  }
  .calc-block .numbers-grid {
    gap: 5px;
    grid-template-columns: repeat(5, 1fr);
  }
  .calc-block .action-buttons button {
    padding: 10px 20px;
  }
  .calc-block .entry-box {
    padding: 0px;
    background: no-repeat;
  }
  .calc-block .flex-gt {
    flex-direction: column;
  }
  .calc-block .add-to-cart {
    text-align: center;
    margin-bottom: 29px;
  }
  .res-bl-1 .number {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .res-bl-1 .lottery-table {
    width: 1000px;
  }
  .info-res .numbers-grid {
    flex-direction: column;
    gap: 0;
  }
  .header-block .container .text h1::after {
    content: attr(data-text);
    position: absolute;
    left: -5px;
    top: -3px;
    color: transparent;
    -webkit-text-stroke: 1px #F29C35;
    z-index: -1;
  }
  .how-block .block h2 {
    font-size: 26px;
  }
  .how-block .block .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .how-block .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
  .main-card .items-b {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
  .ways-15 .items h5 {
    font-size: 18px;
  }
  .login-bg {
    background: url(../img/log-bg-img-m.png) center center no-repeat;
    background-size: 102%;
    width: 100%;
    padding: 30px 30px;
  }
  .bg_sign {
    background: url(../img/reg-bg-img-m.png) center center no-repeat;
    background-size: 102%;
    width: 100%;
    padding: 30px 30px;
  }
  .login-bg .title p {
    font-size: 11px;
    margin-top: 10px;
  }
  .login-info .form-policy a, .login-info .form-policy p {
    font-size: 11px;
  }
  .login-info input[type=text], .login-info input[type=email], .login-info input[type=password] {
    font-size: 14px;
  }
  .header-block-login {
    margin-top: 10px;
  }
  .header-block-login .container .img {
    display: none;
  }
  .card-winners_bl .shopping-winners_bl {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 20px 0;
    background: none;
  }
  .card-winners_bl .numbers {
    flex-direction: column;
    gap: 15px;
  }
  .card-winners_bl .pay-block {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  #toBePaid {
    margin-left: 10px;
  }
  .card-winners_bl .pay-block div {
    font-size: 22px;
  }
  .header-block {
    margin-top: 45px;
  }
  .card-winners_bl .number {
    background: #F29C35;
    width: 34px;
    height: 34px;
  }
  .header-bottom .container .btn-link {
    padding: 12px;
  }
  .info-res .res_button {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .header .container .left nav ul {
    gap: 15px;
  }
  .header .container .left nav ul li a {
    font-size: 13px;
  }
  .header .container .left .logo img {
    width: 90px;
  }
  .header .container .left {
    gap: 10px;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .calc-block select {
    width: 100%;
  }
  .footer p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */