@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --blue: #368ce7;
  --blue-dark: #1666ba;
  --blue-light: #7ab3ef;

  --red: #ff0000;
  --red-dark: #a70000;
  --red-light: #ff5252;

  --green: #76ba1b;
  --green-dark: #4c9a2a;
  --green-light: #acdf87;

  --orange: #ff7400;
  --orange-dark: #ff4d00;
  --orange-light: #ff9a00;

  --black: #000;
  --dark: #333;
  --light: #666;

  --white: #fff;
  --white-dark: #ccc;
  --white-light: #eee;
}

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

p {
  margin: 0;
}

a,
button,
input,
textarea {
  outline: 0;
  transition: all 0.5s ease;
}

a {
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", serif;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Russo One", serif;
  font-weight: 700;
}

header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
  width: 100%;
  float: left;
}

.logo {
  color: #7ab3ef;
  font-family: "Russo One";
}

.logo img {
  width: 200px;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 30px;
  font-weight: 800;
  background-color: #3033eb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

nav {
  position: absolute !important;
  top: 0 !important;
  width: 100%;
  float: left;
  left: 0;
  background-color: #3033eb;
  z-index: +5;
}

.navbar {
  padding: 5px;
  margin: 0 !important;
  transition: all 0.5s;
  padding: 15px 0;
}

.navbar-toggler {
  border: none !important;
}

.nav-container {
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  padding: 5px;
  border-radius: 5px;
  transition: 0.5s;
  font-size: 13px;
}

.nav-link:hover {
  transform: scale(1.03);
}

.navbar-nav {
  justify-content: end;
  width: 100%;
  align-items: center;
}

.nav-item {
  margin: 1px 5px;
}

.nav-icon img {
  width: 23px;
}

.navbar-brand img {
  width: 260px;
}

.navbar-brand {
  height: auto !important;
  color: #fff !important;
  font-size: 22px;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
}

.banner {
  position: relative;
  background-size: cover;
  margin-top: 72px;
  padding: 20px 0;
  background: url(../img/header-bg.png) bottom;
}

.banner .container {
  min-height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.banner h1 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 10px;
}

.banner p {
  font-size: 15px;
  line-height: 24px;
}

.jackpot-card {
  background-color: #cfcfcf;
  padding: 60px 20px;
  border-radius: 15px;
  width: 500px;
  max-width: 100%;
  text-align: center;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}

.jackpot-card h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}

.jackpot-card .amount {
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 25px;
}

.jackpot-card .button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #ffffff;
  color: #333;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.jackpot-card .button:hover {
  background-color: #e0e0e0;
}

.flex-me {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}

.nmbr-flex {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.div {
  width: 100%;
  float: left;
  background-color: #ccc;
  margin: 0 0 20px;
  height: 1px;
}

.flex-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.section-number {
  font-weight: bold;
  background-color: black;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  margin-right: 10px;
}

.dropdown {
  margin-top: 15px;
}

select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

hr {
  margin: 40px 0;
}

.multi-draw-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #333;
}

.checkbox-label input {
  accent-color: #f05a4f;
  width: 18px;
  height: 18px;
}

.subtext {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.section {
  padding: 20px 0;
  position: relative;
}

.section .container {
  position: relative;
  z-index: 2;
}

.h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 10px;
}

.para {
  font-size: 14px;
  line-height: 23px;
  margin: 0 0 20px;
}

.para:last-child {
  margin: 0;
}

.flexbox {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.flexbox:last-child {
  margin: 0;
}

.flexbox > p,
.flexbody {
  flex: 1;
}

.flexbox > p:first-child,
.flexbody:first-child {
  margin: 0 30px 0 0;
}

.flexbox > p:last-child,
.flexbody:last-child {
  margin: 0 0 0 30px;
}

.flexbox > img {
  width: 100%;
  max-width: 50%;
}

.table-container {
  background-color: #7476f3;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  margin: auto;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th,
td {
  text-align: left;
  padding: 14px;
}

th {
  font-weight: bold;
  color: #333;
}

tr:nth-child(even) {
  background-color: #fcdede;
}

td {
  color: #333;
}

@media (max-width: 600px) {
  th,
  td {
    padding: 10px;
    font-size: 14px;
  }

  .table-container {
    padding: 10px;
  }
}

.btn-cu {
  width: auto;
  padding: 10px 30px !important;
  background-color: #fff;
  float: left;
  color: #000 !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
}

.btn-cus {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff !important;
}

.btn-cu-black {
  background-color: #3033eb;
  color: #fff !important;
}

.btn-cus-black {
  background-color: transparent;
  border: 1px solid #3033eb;
  color: #3033eb !important;
}

.btn-box {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 20px;
}

.features-cu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  float: left;
}

.feature-tag {
  background-color: #f1f3f5;
  color: #333;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.h2:last-child {
  margin: 0;
}

.section2 {
  background-color: #7476f3;
}

.section1 {
  background-color: #fff;
}

.table-flex {
  width: 100%;
  float: left;
  background-color: #3033eb;
  color: #fff;
}

h4:last-child {
  margin: 0 !important;
}

.step {
  width: 33%;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  float: left;
  margin: 0 0 20px;
}

.circle {
  width: 40px;
  height: 40px;
  margin: auto;
  background: #eee;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.step h2 {
  color: #333;
  font-size: 17px;
}

.step p {
  color: #666;
  font-size: 0.95rem;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;
}

ul li {
  color: #4caf50;
  margin-bottom: 6px;
  font-size: 14px;
}

ul li span {
  color: #444;
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 15px;
  width: 100%;
  float: left;
}

.quick-pick {
  padding: 8px 15px;
  background: #eee;
  border: none;
  border-radius: 6px;
  color: #555;
  cursor: pointer;
  font-size: 12px;
}

.jackpot-box {
  margin-top: 20px;
  background: linear-gradient(to right, #f1f1f1, #fdf5d8);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  float: left;
}

.amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}

.label {
  font-size: 0.85rem;
  color: #777;
}

.section3 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bg-img.webp);
  background-size: cover;
  color: #fff;
}

.countdown-section {
  background: url("https://i.imgur.com/kG7FLEy.png") no-repeat center
    center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 30px 30px 30px 30px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  max-width: 100%;
  width: 600px;
  border: 1px solid rgba(255, 255, 255, 01);
}

.timer-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  width: 100%;
  float: left;
}

.time {
  background: #fff;
  color: #222;
  border-radius: 8px;
  padding: 15px 10px;
  flex: 1;
  min-width: 70px;
}

.time span {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

.time small {
  font-size: 0.75rem;
  color: #888;
}

.draw-number {
  font-size: 0.85rem;
  color: #ddd;
  margin: 10px 0;
}

.buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

button {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
}

.primary {
  background-color: white;
  color: #d10000;
  font-weight: bold;
}

.outline {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.table {
  width: 100%;
  float: left;
  border: 1px solid #fff;
  border-top: 0px;
  display: flex;
  margin: 0;
}

.table:first-child {
  border-top: 1px solid #fff;
}

.table span {
  width: 25%;
  float: left;
  padding: 15px;
  border-right: 1px solid #fff;
  display: flex;
  justify-content: flex-start;
  font-weight: 400;
  font-size: 14px;
  align-items: center;
}

.span-h {
  font-weight: 700 !important;
  font-size: 15px !important;
}

.table :nth-child(4) {
  border-right: 0;
}

.center {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin: 0 0 20px;
}

.center:last-child {
  margin: 0 !important;
}

.container > img {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}

.flexgroup > img {
  width: 33%;
  margin: 0 0 20px;
}

.flexgroup {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flexgroupbox {
  width: 19%;
  padding: 15px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #3033eb;
}

.flex {
  width: 49%;
}

.flex-cu {
  width: 19%;
}

.center a > img {
  width: 600px;
  max-width: 100%;
  float: left;
  margin: 0 0 20px;
}

.flexgroupbox > img {
  width: 100%;
  float: left;
  object-fit: cover;
  height: 150px;
  margin: 0 0 20px;
}

h4 {
  font-size: 20px;
}

.content {
  width: 600px;
  max-width: 100%;
  float: left;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
}

.flex {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.flex img {
  width: 160px;
}

.formsection {
  background: url(../img/img7.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.formsection:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.formsection .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.formsection .para {
  text-align: center;
  font-size: 28px;
  line-height: 1.5;
}

.formbox {
  width: 100%;
  float: left;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formfield {
  width: 49%;
  height: 50px;
  margin: 0 0 10px;
  padding: 0 10px;
  border: none;
  background: #f3f3f3;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}

.textarea-cu {
  width: 100%;
  height: 100px;
  margin: 0 0 10px;
  padding: 10px;
  border: none;
  background: #f3f3f3;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
  color: #333;
}

.formbutton {
  width: 49%;
  float: left;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  background: #212c62;
  color: #fff;
  cursor: pointer;
  outline: 0 !important;
}

footer {
  background: #3033eb;
  background-size: cover;
  padding: 20px 0;
  color: #fff;
}

footer .footer-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  float: left;
}

.footerlinks {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 20px;
}

footer .para > a {
  color: #fff;
  text-decoration: underline !important;
}

.ssl-img img {
  width: 90px;
}

.footerlinks a {
  font-size: 14px;
  color: #ffffff;
  margin: 0 6px;
}

.footerlinks a:hover {
  text-decoration: underline !important;
}

.copyrights {
  font-size: 14px;
  color: #fff;
}

.text-white {
  font-size: 14px;
}

.cookiesection {
  width: 100%;
  float: left;
  min-height: calc(100vh - 126px);
  padding: 40px 0;
  margin-top: 72px;
}

.cookiesection h2 {
  font-size: 22px;
  font-weight: 600;
}

.cookiesection p {
  font-size: 14px;
  line-height: 20px;
}

.cookiesection p strong {
  font-weight: 600;
}

.cookiesection p .bolder {
  display: block;
  margin: 30px 0 10px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.backbutton {
  float: left;
  display: inline-flex;
  align-items: center;
  margin: 30px 0 20px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark) !important;
  border: solid 1px var(--blue-dark);
}

.backbutton img {
  width: 15px;
  margin: 0 5px 0 0;
  transition: all 0.3s ease;
}

.backbutton:hover {
  background: var(--blue-dark);
  color: #fff !important;
}

.backbutton:hover img {
  filter: saturate(0) brightness(10);
}

.alert {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 10px;
  margin-bottom: 0 !important;
  left: 26px;
  max-width: 100%;
  text-align: center;
  width: 300px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  align-items: center;
  border-radius: 20px;
}

.alert-dismissible {
  z-index: +3;
}

.alert-close {
  border: 1px solid transparent;
  border-radius: 4px;
  background: #862041;
  color: white;
  padding: 0px !important;
  width: 3rem;
  height: 2rem;
  font-size: 14px;
}

.hide {
  display: none;
}

span {
  font-weight: bold;
}

.alert p {
  font-size: 14px;
  margin: 0 0 20px !important;
  width: 100%;
  float: left;
}

.hide {
  display: none;
}

.alert-close {
  padding: 0px 9px !important;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #862041;
  color: white;
  margin: 0 !important;
  font-size: 14px;
}

.show-mbl {
  display: none;
}

.form-box,
.info-box {
  width: 49%;
  background: white;
  border-radius: 12px;
  color: #3033eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.info-box {
  background: #0e5df3;
  color: white;
}

label {
  display: block;
  margin: 12px 0 4px;
  font-size: 14px;
  color: #3033eb;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

textarea {
  height: 100px;
  resize: vertical;
}

.checkbox {
  margin-top: 15px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox label {
  margin: 0;
}

.checkbox input {
  margin-right: 6px;
}

.checkbox a {
  color: #007bff;
  text-decoration: none;
}

.checkbox a:hover {
  text-decoration: underline;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4a4a4a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.info-item {
  margin-bottom: 20px;
}

.info-item strong {
  display: block;
  font-size: 15px;
}

.info-item p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

input::placeholder {
  font-size: 14px;
}

.option {
  font-size: 14px;
}

.h-low .container {
  min-height: 100px;
}

.info-box-cu {
  background-color: #f0f6ff;
  border-left: 4px solid #007bff;
  border-radius: 10px;
  padding: 20px 25px;
  width: 100%;
  color: #333;
  float: left;
  margin: 0 0 20px;
}

.info-box-cu h3 {
  color: #003399;
  margin-top: 0;
  font-size: 16px;
}

.info-box-cu .ul {
  padding-left: 18px;
  margin: 10px 0 0 0;
  color: #000 !important;
}

.info-box-cu .ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #000 !important;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
  width: auto;
}

.left,
.right {
  margin: 10px;
}

.logo {
  width: 80px;
}

.draw-info {
  margin-top: 10px;
}

.draw-info h2 {
  margin: 0;
  font-size: 18px;
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

.number {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #e74c3c, #c0392b);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}

.search-section h3 {
  margin-bottom: 8px;
}

.search-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  float: left;
}

.search-bar input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  height: 50px;
}

.search-bar button {
  padding: 10px 20px;
  background: orange;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: stretch;
  }
}

.lotto-div-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.lotto-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

.lotto-header {
  background-color: #e74c3c;
  color: #fff;
  font-weight: bold;
}

.lotto-cell {
  flex: 1;
  padding: 12px 16px;
  min-width: 120px;
}

.lotto-row:hover:not(.lotto-header) {
  background-color: #f9f9f9;
}

h2 > span {
  color: #999;
}

@media (max-width: 768px) {
  .lotto-row {
    flex-direction: column;
  }

  .lotto-cell {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .lotto-cell:last-child {
    border-bottom: none;
  }
}

.cart-wrapper {
  max-width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.cart-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cart-left,
.cart-right {
  flex: 1;
  min-width: 300px;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-title h2 {
  font-size: 24px;
}

.cart-logo {
  width: 60px;
}

.cart-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.ticket-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lotto-numbers-box {
  border: 1px dashed red;
  padding: 10px;
  border-radius: 10px;
}

.lotto-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.line-index {
  font-weight: bold;
}

.numbers {
  display: flex;
  gap: 10px;
}

.num {
  background: #e74c3c;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

.number-controls {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
}

.ctrl {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  background: #f0f0f0;
  font-weight: bold;
}

.ctrl.delete {
  background: transparent;
  font-size: 18px;
}

.ticket-summary p {
  margin: 0;
  font-size: 14px;
}

.payment-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 250px;
}

.amount-label {
  font-size: 18px;
}

.amount-value {
  font-size: 24px;
  font-weight: bold;
}

.pay-btn {
  padding: 10px 30px;
  background: orange;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cart-content {
    flex-direction: column;
  }

  .number-controls {
    margin-left: 0;
  }
}
.m-0 {
  margin: 0;
}
@media (max-width: 800px) {
  .show-mbl {
    display: block;
  }

  .banner .container {
    min-height: 200px;
  }

  .carousel-item {
    height: 200px;
  }

  .desktop {
    display: none;
  }

  .banner h1 {
    font-size: 28px;
  }

  .h2 {
    font-size: 20px;
  }

  .para {
    font-size: 14px;
  }

  .flexbox {
    flex-direction: column;
  }

  .flexbox > img {
    max-width: 100%;
    order: 1;
    margin: 0 0 15px;
  }

  .flexbody,
  .flexbox > .para {
    padding: 0 !important;
    order: 2;
  }

  footer .footer-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flexgroupbox {
    width: 100%;
  }

  .formfield {
    width: 100%;
  }

  .formbutton {
    width: 100%;
  }

  .img-size {
    width: 100%;
    margin: 0 0 30px;
  }

  .footerlinks {
    justify-content: center;
    margin: 10px 0;
  }

  .hilight-font {
    font-size: 13px;
  }

  .flexbody {
    margin: 0 !important;
    padding: 20px !important;
    width: 100%;
    float: left;
  }

  .step {
    width: 100%;
  }

  .footerlinks:first-child {
    width: 100%;
  }

  .form-box,
  .info-box {
    width: 100%;
  }

  .flex-me {
    flex-direction: column;
    gap: 20px;
  }
  .m-0 {
    flex-direction: row;
  }
}
