/**
* Current version: 1.2
*/
@import url("https://fonts.googleapis.com/css2?family=Genos:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Arial:wght@200;300;400;500;600;700&display=swap");
@font-face {
  font-family: 'Caooli';
  src: url('../assets/font/CAOOLI.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
  --heading-font: 'Caooli', sans-serif;
  --body-font: "Arial", sans-serif;
  /* ========================= Color Variables Start =========================== */
  --white: 0 0% 100%;
  --light-h: 0;
  --light-s: 1%;
  --light-l: 53%;
  --light: var(--light-h) var(--light-s) var(--light-l);
  --black-h: 0;
  --black-s: 0%;
  --black-l: 13.7%;
  --black: var(--black-h) var(--black-s) var(--black-l);
  --heading-color: var(--white);
  --body-color: var(--white) / 0.6;
  --border-color: 0 0% 88%;
  --section-bg: 208 100% 97%;
  /* ================================ Box Shadow Start =============================== */
  --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
  --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
  --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
  /* ================================ Box Shadow End =============================== */
  /* ========================= Base Color ============================= */
  --base-h: 1;
  --base-s: 68%;
  --base-l: 45.3%;
  --base: var(--base-h) var(--base-s) var(--base-l);

  /* Base Darken  */
  --base-d-100: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-700: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.9);
  /* Base Lighten */
  --base-l-100: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
  --base-l-400: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
  --base-l-500: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
  --base-l-600: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
  --base-l-700: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
  --base-l-800: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
  --base-l-900: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
  --base-gradient: linear-gradient(
    180deg,
    hsl(var(--base-two)),
    hsl(var(--base))
  );
  /* ========================= Base Two Color ============================= */
  --base-two-h: var(--base-h);
  --base-two-s: 68%;
  --base-two-l: 65%;
  --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
  /* Base Two Darken */
  --base-two-d-100: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.05);
  --base-two-d-200: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.1);
  --base-two-d-300: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.2);
  --base-two-d-400: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.3);
  --base-two-d-500: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.4);
  --base-two-d-600: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.5);
  --base-two-d-700: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.6);
  --base-two-d-800: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.7);
  --base-two-d-900: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.8);
  /* Base Two Lighten */
  --base-two-l-100: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.05);
  --base-two-l-200: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
  --base-two-l-300: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
  --base-two-l-400: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
  --base-two-l-500: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
  --base-two-l-600: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
  --base-two-l-700: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
  --base-two-l-800: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
  --base-two-l-900: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
  /* ============================== Bootstrap Modifier Start ============================== */
  /* Primary Color */
  --primary-h: 211;
  --primary-s: 100%;
  --primary-l: 50%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  /* Primary Darken */
  --primary-d-100: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.1);
  --primary-d-200: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.2);
  --primary-d-300: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.3);
  --primary-d-400: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.4);
  --primary-d-500: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.5);
  /* primary Lighten */
  --primary-l-100: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
  --primary-l-200: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
  --primary-l-300: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
  --primary-l-400: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
  --primary-l-500: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
  --primary-l-600: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.6);
  /* Secondary Color */
  --secondary-h: 208;
  --secondary-s: 7%;
  --secondary-l: 46%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
  /* Secondary Darken */
  --secondary-d-100: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.1);
  --secondary-d-200: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.2);
  --secondary-d-300: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.3);
  --secondary-d-400: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.4);
  --secondary-d-500: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.5);
  /* secondary Lighten */
  --secondary-l-100: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
  --secondary-l-200: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
  --secondary-l-300: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
  --secondary-l-400: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
  --secondary-l-500: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
  --secondary-l-600: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.6);
  /* Success Color */
  --success-h: 148;
  --success-s: 98%;
  --success-l: 38%;
  --success: var(--success-h) var(--success-s) var(--success-l);
  /* Success Darken */
  --success-d-100: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.1);
  --success-d-200: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.2);
  --success-d-300: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.3);
  --success-d-400: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.4);
  --success-d-500: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.5);
  /* Success Lighten */
  --success-l-100: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
  --success-l-200: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
  --success-l-300: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
  --success-l-400: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
  --success-l-500: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
  --success-l-600: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.6);
  /* Danger Color */
  --danger-h: 0;
  --danger-s: 96%;
  --danger-l: 63%;
  --danger: var(--danger-h) var(--danger-s) var(--danger-l);
  /* Danger Darken */
  --danger-d-100: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.1);
  --danger-d-200: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.2);
  --danger-d-300: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.3);
  --danger-d-400: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.4);
  --danger-d-500: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.5);
  /* danger Lighten */
  --danger-l-100: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
  --danger-l-200: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
  --danger-l-300: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
  --danger-l-400: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
  --danger-l-500: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
  --danger-l-600: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.6);
  /* Warning Color */
  --warning-h: 29;
  --warning-s: 100%;
  --warning-l: 63%;
  --warning: var(--warning-h) var(--warning-s) var(--warning-l);
  /* Warning Darken */
  --warning-d-100: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.1);
  --warning-d-200: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.2);
  --warning-d-300: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.3);
  --warning-d-400: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.4);
  --warning-d-500: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.5);
  /* Warning Lighten */
  --warning-l-100: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
  --warning-l-200: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
  --warning-l-300: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
  --warning-l-400: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
  --warning-l-500: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
  --warning-l-600: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.6);
  /* Info Color */
  --info-h: 196;
  --info-s: 100%;
  --info-l: 50%;
  --info: var(--info-h) var(--info-s) var(--info-l);
  /* Info Darken */
  --info-d-100: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.1);
  --info-d-200: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.2);
  --info-d-300: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.3);
  --info-d-400: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.4);
  --info-d-500: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.5);
  --info-l-100: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
  --info-l-200: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
  --info-l-300: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
  --info-l-400: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
  --info-l-500: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
  --info-l-600: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.6);
  /* dark Color */
  --dark-h: 0;
  --dark-s: 0%;
  --dark-l: 8%;
  --dark: var(--dark-h) var(--dark-s) var(--dark-l);
  /* dark Darken */
  --dark-d-100: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.1);
  --dark-d-200: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.2);
  --dark-d-300: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.3);
  --dark-d-400: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.4);
  --dark-d-500: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.5);
  --dark-l-100: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.1);
  --dark-l-200: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.2);
  --dark-l-300: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.3);
  --dark-l-400: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.4);
  --dark-l-500: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.5);
  --dark-l-600: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.6);
  /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* ============================ Media Breakpoint for Each Device Start ============================ */
/* ================================== Font Size For responsive devices End =============================== */
/* ================================= Common Typography Css Start =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: hsl(var(--body-color));
  word-break: break-word;
  background-color: hsl(var(--black));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

p {
  font-weight: 400;
  margin: 0;
}

span {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: hsl(var(--heading-color));
  line-height: 0.8;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 0.424rem + 3.803vw, 3.75rem);
}

h2 {
  font-size: clamp(1.5rem, -0.326rem + 3.803vw, 3rem);
}

h3 {
  font-size: clamp(1.375rem, 0.006rem + 2.853vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 0.337rem + 1.902vw, 2rem);
}

h5 {
  font-size: clamp(1.125rem, 0.669rem + 0.951vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  transition: 0.2s linear;
  line-height: 1.3;
}

a {
  display: inline-block;
  transition: 0.2s linear;
  text-decoration: none;
  color: #0667f6;
}

a:hover {
  color: #2f83ff;
}

img {
  max-width: 100%;
  height: auto;
}

select {
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: 0;
  background-color: transparent;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.form-select:focus {
  outline: 0;
  box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
  .col-xsm-6 {
    width: 50%;
  }
}

section .container {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  section .container {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 98%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 98%;
  }
}

@media (min-width: 990px) {
  .container {
    max-width: 98%;
  }
}

@media (max-width: 1199px) {
  .container {
    padding-top: 80px;
  }
}
/* Section Background */
.section-bg {
  background-color: hsl(var(--section-bg));
}

/* Bg Image Css */
.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  width: 100%;
  height: 100%;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
  position: absolute;
  overflow-y: hidden;
  padding-right: 17px;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .scroll-hide {
    padding-right: 0;
  }
}

.scroll-hide-sm {
  position: absolute;
  overflow-y: hidden;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
}

/* Overlay Start */
.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.body-overlay.show-overlay {
  visibility: visible;
  opacity: 1;
}

.sidebar-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.sidebar-overlay.show {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

/* Overlay End */
/* ================================= Custom Classes Css End =========================== */
/* Fully Fit image Css */
.fit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap,
.form--radio,
.form--check {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .flex-wrap,
  .form--radio,
  .form--check {
    font-size: 13px;
  }
}

.flex-align {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend,
.alert__link::before {
  position: absolute;
  content: "";
}

.top-center-extend {
  top: 50%;
  transform: translateY(-50%);
}

.left-center-extend {
  left: 50%;
  transform: translateX(-50%);
}

.top-left-center-extend {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================= Positioning Css Class End ===================== */
/* ===================== Font Size For responsive devices Start =================== */
.fs-10 {
  font-size: 0.625rem;
}

.fs-11 {
  font-size: 0.6875rem;
}

.fs-12,
.badge {
  font-size: 0.75rem;
}

/* h2.badge {
  font-size: 1rem;
}

@media screen and (min-width: ) {
  
} */

.fs-13,
.form--check .form-check-input:checked::before {
  font-size: 0.8125rem;
}

.fs-14,
.form--radio .form-check-label {
  font-size: 0.875rem;
}

.fs-15,
.form--label,
.btn--icon {
  font-size: 0.9375rem;
}

.fs-16,
.info-card__list-link,
.info-card__desc,
.latest-blog__title a,
.alert__title,
.form--check .form-check-label,
.btn,
p {
  font-size: 1rem;
}

@media screen and (max-width: 1199px) {
  .fs-16,
  .info-card__list-link,
  .info-card__desc,
  .latest-blog__title a,
  .alert__title,
  .form--check .form-check-label,
  .btn,
  p {
    font-size: 0.875rem;
  }
}

.fs-17 {
  font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
  .fs-17 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-17 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 576px) {
  .fs-17 {
    font-size: 0.75rem;
  }
}


.fs-18,
.socket-nav__link,
.socket-area__text,
.newsletter__input input::placeholder,
.newsletter__input input,
.form--control::placeholder,
.form--control {
  font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
  .fs-18,
  .socket-nav__link,
  .socket-area__text,
  .newsletter__input input::placeholder,
  .newsletter__input input,
  .form--control::placeholder,
  .form--control {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-18,
  .socket-nav__link,
  .socket-area__text,
  .newsletter__input input::placeholder,
  .newsletter__input input,
  .form--control::placeholder,
  .form--control {
    font-size: 1rem;
  }
}

.fs-20,
.breadcrumb__item,
.social-list__link {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  .fs-20,
  .breadcrumb__item,
  .social-list__link {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .fs-20,
  .breadcrumb__item,
  .social-list__link {
    font-size: 1.0625rem;
  }
}
/* ===================== Font Size For responsive devices End =================== */
/* ====================== Section Heading ==================== */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 1199px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading__title {
  position: relative;
  padding-bottom: 30px;
}

.section-heading__title .title-color {
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading__title .title-color::selection {
  -webkit-text-fill-color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .section-heading__title {
    padding-bottom: 15px;
  }
}

.section-heading__desc {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
}

.section-heading.style-left {
  text-align: left;
}

.section-heading.style-left .section-heading__title::before {
  left: 0;
  transform: translateX(0);
}

.section-heading.style-left .section-heading__desc {
  margin-left: 0;
}

/* ====================== Section Heading En d==================== */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background-color: hsl(var(--white) / 0.1);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: var(--base-gradient);
  border-radius: 10px;
}

/* ================================= Background Color Css Start =========================== */
.bg--base {
  background-color: hsl(var(--base)) !important;
}

.bg--primary {
  background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.bg--success {
  background-color: hsl(var(--success)) !important;
}

.bg--danger {
  background-color: hsl(var(--danger)) !important;
}

.bg--warning {
  background-color: hsl(var(--warning)) !important;
}

.bg--info {
  background-color: hsl(var(--info)) !important;
}

.bg--dark {
  background-color: hsl(var(--dark)) !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
  color: hsl(var(--base)) !important;
}

.text--primary {
  color: hsl(var(--primary)) !important;
}

.text--secondary {
  color: hsl(var(--secondary)) !important;
}

.text--success {
  color: hsl(var(--success)) !important;
}

.text--danger {
  color: hsl(var(--danger)) !important;
}

.text--warning {
  color: hsl(var(--warning)) !important;
}

.text--info {
  color: hsl(var(--info)) !important;
}

.text--dark {
  color: hsl(var(--dark)) !important;
}

.text--muted {
  color: hsl(var(--white) / 0.6);
}

/* ================================= Color Css End =========================== */
/* ================================= margin Css Start =========================== */
.my-100 {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (min-width: 576px) {
  .my-100 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.mt-100 {
  margin-top: 50px;
}

@media (min-width: 576px) {
  .mt-100 {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .mt-100 {
    margin-top: 100px;
  }
}

.mb-100 {
  margin-bottom: 50px;
}

@media (min-width: 576px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .mb-100 {
    margin-bottom: 100px;
  }
}

.my-50 {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .my-50 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.mt-50 {
  margin-top: 30px;
}

@media (min-width: 576px) {
  .mt-50 {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .mt-50 {
    margin-top: 50px;
  }
}

.mb-50 {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .mb-50 {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .mb-50 {
    margin-bottom: 50px;
  }
}
/* ================================= margin Css End =========================== */
/* ================================= padding Css Start =========================== */
.py-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 576px) {
  .py-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pt-100 {
  padding-top: 50px;
}

@media (min-width: 576px) {
  .pt-100 {
    padding-top: 80px;
  }
}

@media (min-width: 992px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.pb-100 {
  padding-bottom: 50px;
}

@media (min-width: 576px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .pb-100 {
    padding-bottom: 100px;
  }
}

.py-50 {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .py-50 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.pt-50 {
  padding-top: 30px;
}

@media (min-width: 576px) {
  .pt-50 {
    padding-top: 40px;
  }
}

@media (min-width: 992px) {
  .pt-50 {
    padding-top: 50px;
  }
}

.pb-50 {
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .pb-50 {
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .pb-50 {
    padding-bottom: 50px;
  }
}
/* ================================= padding Css End =========================== */
/* ================================= Border Color Css Start =========================== */
.border--base {
  border-color: hsl(var(--base)) !important;
}

.border--primary {
  border-color: hsl(var(--primary)) !important;
}

.border--secondary {
  border-color: hsl(var(--secondary)) !important;
}

.border--success {
  border-color: hsl(var(--success)) !important;
}

.border--danger {
  border-color: hsl(var(--danger)) !important;
}

.border--warning {
  border-color: hsl(var(--warning)) !important;
}

.border--info {
  border-color: hsl(var(--info)) !important;
}

.border--dark {
  border-color: hsl(var(--dark)) !important;
}

/* ================================= Border Color Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion {
  height: 392px;
  overflow-y: auto;
}

@media screen and (max-width: 991px) {
  .custom--accordion {
    height: auto;
  }
}

.custom--accordion::-webkit-scrollbar {
  width: 8px;
}

.custom--accordion::-webkit-scrollbar-track {
  background-color: hsl(var(--white) / 0.1);
  border-radius: 10px;
}

.custom--accordion::-webkit-scrollbar-thumb {
  background: var(--base-gradient);
  border-radius: 10px;
}

.custom--accordion .accordion-item {
  border: 1px solid hsl(var(--black) / 0.09);
  background-color: transparent !important;
  border-radius: 5px;
  overflow: hidden;
}

.custom--accordion .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.custom--accordion .accordion-header {
  line-height: 1;
}

.custom--accordion .accordion-body {
  padding: 20px 4px 20px 0;
}

.custom--accordion .accordion-body .text {
  color: hsl(var(--light));
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-body .text {
    max-width: 100%;
  }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.custom--accordion .accordion-button {
  background-color: hsl(var(--section-bg));
  background-color: hsl(var(--black)) !important;
  color: hsl(var(--white));
  padding: 15px;
  font-weight: 700;
  border: 1px solid hsl(var(--white) / 0.1);
}

.custom--accordion .accordion-button .accordion-title {
  font-size: 24px;
}

@media (max-width: 767px) {
  .custom--accordion .accordion-button .accordion-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .custom--accordion .accordion-button .accordion-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-button {
    padding: 13px;
    padding-right: 30px;
  }
}

.custom--accordion .accordion-button::after {
  display: none;
}

.custom--accordion .accordion-button:focus {
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
}

.custom--accordion .accordion-button .accordion-icon {
  position: absolute;
  height: 100%;
  right: 0;
  width: 56px;
  border-left: 1px solid hsl(var(--white) / 0.1);
  display: grid;
  place-content: center;
}

.custom--accordion .accordion-button[aria-expanded="true"] .accordion-icon i,
.custom--accordion .accordion-button[aria-expanded="false"] .accordion-icon i {
  transition: all linear 0.3s;
  font-size: 20px;
  color: #979797;
  transform: rotate(180deg);
}

.custom--accordion .accordion-button[aria-expanded="false"] .accordion-icon i {
  top: auto;
  transform: rotate(0deg);
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: none;
  background-color: none;
  border-color: none;
}

.pill {
  border-radius: 40px !important;
}

.btn {
  color: hsl(var(--white)) !important;
  font-weight: 500;
  padding: 16px 29px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  font-family: var(--body-font);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .btn {
    padding: 14px 25px;
    font-size: 0.875rem;
  }
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
  box-shadow: none !important;
}

.btn:active {
  top: 1px;
}

.btn--gradient {
  background: linear-gradient(
    180deg,
    hsl(var(--base-l-300)) 5%,
    hsl(var(--base-two)) 108%
  );
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border-bottom: 4px solid hsl(var(--base-l-100));
  font-size: 24px;
  font-family: var(--heading-font);
  color: hsl(var(--dark)) !important;
  padding: 8px 24px !important;
  font-weight: 700;
}

.btn--gradient::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    0deg,
    hsl(var(--base-d-100)) -6%,
    hsl(var(--base-two-l-100)) 113%
  );
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
  transition: all linear 0.3s;
}

.btn--gradient:hover::after {
  opacity: 0.2;
}

/* btn gradient success css start here  */
.btn--gradient-success {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border-bottom: 4px solid hsl(var(--base-l-100));
  font-size: 24px;
  font-family: var(--heading-font);
  color: hsl(var(--dark)) !important;
  padding: 8px 24px !important;
  font-weight: 700;
}

.btn--gradient-success::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    0deg,
    hsl(var(--success-d-100)) -6%,
    hsl(var(--success-two-l-100)) 113%
  );
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
  transition: all linear 0.3s;
}

/* btn gradient success end here  */

.btn--lg {
  padding: 20px 35px;
}

@media screen and (max-width: 991px) {
  .btn--lg {
    padding: 18px 30px;
  }
}

@media screen and (max-width: 767px) {
  .btn--lg {
    padding: 16px 25px;
  }
}

.btn--sm {
  padding: 10px 16px;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .btn--sm {
    padding: 8px 12px;
  }
}

.btn--icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0;
}

.btn .icon {
  margin-right: 5px;
}

.btn--base {
  background-color: hsl(var(--base)) !important;
}

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
  background-color: hsl(var(--base-d-200)) !important;
  border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
  background-color: transparent !important;
  border: 1px solid hsl(var(--base)) !important;
  color: hsl(var(--base)) !important;
}

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
}

.btn--primary {
  background-color: hsl(var(--primary)) !important;
}

.btn--primary:hover,
.btn--primary:focus .btn--primary:focus-visible {
  background-color: hsl(var(--primary-d-200)) !important;
  border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
  background-color: transparent !important;
  border: 1px solid hsl(var(--primary)) !important;
  color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover,
.btn-outline--primary:focus .btn-outline--primary:focus-visible {
  background-color: hsl(var(--primary)) !important;
  color: hsl(var(--white)) !important;
}

.btn--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.btn--secondary:hover,
.btn--secondary:focus .btn--secondary:focus-visible {
  background-color: hsl(var(--secondary-d-200)) !important;
  border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
  background-color: transparent !important;
  border: 1px solid hsl(var(--secondary)) !important;
  color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary:hover,
.btn-outline--secondary:focus .btn-outline--secondary:focus-visible {
  background-color: hsl(var(--secondary)) !important;
  color: hsl(var(--white)) !important;
}

.btn--success {
  background-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus .btn--success:focus-visible {
  background-color: hsl(var(--success-d-200)) !important;
  border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
  background-color: transparent !important;
  border: 1px solid hsl(var(--success)) !important;
  color: hsl(var(--success)) !important;
}

.btn-outline--success:hover,
.btn-outline--success:focus .btn-outline--success:focus-visible {
  background-color: hsl(var(--success)) !important;
  color: hsl(var(--white)) !important;
}

.btn-outline--disburse {
  --color: #0f6fcf;
  color: var(--color) !important;
  border-color: var(--color) !important;
}

.btn-outline--disburse:hover,
.btn-outline--disburse:active,
.btn-outline--disburse:focus-visible {
  background-color: var(--color) !important;
  color: var(--btn-color) !important;
}


.btn--danger {
  background-color: hsl(var(--danger)) !important;
}

.btn--danger:hover,
.btn--danger:focus .btn--danger:focus-visible {
  background-color: hsl(var(--danger-d-200)) !important;
  border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
  background-color: transparent !important;
  border: 1px solid hsl(var(--danger)) !important;
  color: hsl(var(--danger)) !important;
}

.btn-outline--danger:hover,
.btn-outline--danger:focus .btn-outline--danger:focus-visible {
  background-color: hsl(var(--danger)) !important;
  color: hsl(var(--white)) !important;
}

.btn--warning {
  background-color: hsl(var(--warning)) !important;
}

.btn--warning:hover,
.btn--warning:focus .btn--warning:focus-visible {
  background-color: hsl(var(--warning-d-200)) !important;
  border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
  background-color: transparent !important;
  border: 1px solid hsl(var(--warning)) !important;
  color: hsl(var(--warning)) !important;
}

.btn-outline--warning:hover,
.btn-outline--warning:focus .btn-outline--warning:focus-visible {
  background-color: hsl(var(--warning)) !important;
  color: hsl(var(--white)) !important;
}

.btn--info {
  background-color: hsl(var(--info)) !important;
}

.btn--info:hover,
.btn--info:focus .btn--info:focus-visible {
  background-color: hsl(var(--info-d-200)) !important;
  border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
  background-color: transparent !important;
  border: 1px solid hsl(var(--info)) !important;
  color: hsl(var(--info)) !important;
}

.btn-outline--info:hover,
.btn-outline--info:focus .btn-outline--info:focus-visible {
  background-color: hsl(var(--info)) !important;
  color: hsl(var(--white)) !important;
}

.btn--dark {
  background-color: hsl(var(--dark)) !important;
}

.btn--dark:hover,
.btn--dark:focus .btn--dark:focus-visible {
  background-color: hsl(var(--dark-d-200)) !important;
  border: 1px solid hsl(var(--dark-d-200)) !important;
}

.btn-outline--dark {
  background-color: transparent !important;
  border: 1px solid hsl(var(--dark)) !important;
  color: hsl(var(--dark)) !important;
}

.btn-outline--dark:hover,
.btn-outline--dark:focus .btn-outline--dark:focus-visible {
  background-color: hsl(var(--dark)) !important;
  color: hsl(var(--white)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.custom--card {
  background-color: hsl(var(--black));
  border: 1px solid hsl(var(--white) / 0.1);
  border-top: 5px solid hsl(var(--base));
  border-radius: 12px;
  padding: 25px;
}

.custom--card .card-header {
  padding: 12px 24px;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.custom--card .card-header .title {
  margin-bottom: 0;
}

.custom--card .card-body {
  padding: 24px;
  border-radius: 5px;
}

.custom--card .card-footer {
  padding: 12px 24px;
  background-color: transparent;
  border-top: 1px solid hsl(var(--black) / 0.1);
}

@media (max-width: 767px) {
  .custom--card {
    padding: 8px;
  }
  .custom--card .card-body {
    padding: 12px;
  }
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
.form--label {
  margin-bottom: 10px;
  color: hsl(var(--white) / 0.6);
  font-weight: 400;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group .require {
  color: hsl(var(--danger));
  font-size: 16px;
}

.re-captha {
  margin-top: 24px;
}

.form-submit .btn--gradient {
  padding: 20px 24px !important;
  font-size: 27px;
  border: 0;
  background: hsl(var(--base-d-100));
  border-radius: 16px;
  font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
  .form-submit .btn--gradient {
    padding: 16px 24px !important;
    font-size: 28px;
  }
}

@media screen and (max-width: 424px) {
  .form-submit .btn--gradient {
    padding: 14px 20px !important;
    font-size: 24px;
  }
}

.form-submit .btn--gradient::after {
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  background: var(--base-gradient);
  border-top: 0;
  border: 4px solid hsl(var(--base-two));
}

.input-inner {
  display: flex;
  align-items: center;
}

.input-inner.border-style .form--control {
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 4px;
}

.input-inner.border-style .form--control:focus {
  border: 1px solid hsl(var(--base));
}

.input-inner.right-style .form--control {
  border-right: 0;
  border-left: 1px solid hsl(var(--white) / 0.1);
  border-radius: 4px 0px 0px 4px;
}

.input-inner.right-style .form--control:focus {
  border-left: 1px solid hsl(var(--base));
}

.input-inner__styletwo .form--control {
  border-radius: 12px 0px 0px 12px !important;
}

.input-inner__styletwo .input-inner__text {
  border-radius: 0px 12px 12px 0px !important;
}

.input-inner__icon,
.input-inner__text {
  height: 56px;
  width: 60px;
  border-radius: 4px 0 0 4px;
  display: grid;
  place-content: center;
  color: hsl(var(--dark));
  flex-shrink: 0;
  background: var(--base-gradient);
  font-size: 24px;
}

@media screen and (max-width: 424px) {
  .input-inner__icon,
  .input-inner__text {
    height: 46px;
    width: 48px;
    font-size: 18px;
  }
}

.input-inner__text {
  width: 92px;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 424px) {
  .input-inner__text {
    width: 70px;
  }
}

.input-inner .form--control {
  flex: 1;
  border-left: 0;
  height: 56px;
  border-radius: 0px 4px 4px 0px;
}

@media screen and (max-width: 424px) {
  .input-inner .form--control {
    height: 46px;
  }
}
/* Form Select */
.select {
  color: hsl(var(--black) / 0.6) !important;
}

.select:focus {
  border-color: hsl(var(--base));
  color: hsl(var(--black)) !important;
}

.select option {
  background-color: hsl(var(--black));
  color: hsl(var(--white));
}

/* Form Control Start */
.form--control {
  border-radius: 5px;
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 13px 24px;
  background-color: hsl(var(--dark)) !important;
  border: 1px solid hsl(var(--white) / 0.1);
  color: hsl(var(--white) / 0.6);
  line-height: 1.28;
}

.form--control::placeholder {
  color: hsl(var(--white) / 0.4);
}

.form--control:focus {
  border-color: hsl(var(--base));
  box-shadow: none;
  color: hsl(var(--white) / 0.6) !important;
}

.form--control:disabled,
.form--control[readonly] {
  background-color: hsl(var(--white) / 0.05) !important;
  opacity: 1;
  border: 1px solid hsl(var(--white) / 0.1);
}

.form--control[type="password"] {
  color: hsl(var(--white) / 0.6);
}

.form--control[type="password"]:focus {
  color: hsl(var(--white) / 0.6);
}

.form--control[type="file"] {
  line-height: 50px;
  padding: 0;
  position: relative;
}

.form--control[type="file"]::file-selector-button {
  border: 1px solid hsl(var(--black) / 0.08);
  padding: 4px 6px;
  border-radius: 0.2em;
  background-color: hsl(var(--base)) !important;
  transition: 0.2s linear;
  line-height: 25px;
  position: relative;
  margin-left: 15px;
  color: hsl(var(--body-color)) !important;
}

.form--control[type="file"]::file-selector-button:hover {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--black));
}

textarea.form--control {
  height: 130px;
}

@media screen and (max-width: 424px) {
  textarea.form--control {
    height: 90px;
  }
}
/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--white)) !important;
  caret-color: hsl(var(--white));
}

/* Autofill Css End */
/* input group */
.input--group {
  position: relative;
}

/* Show Hide Password */
input#your-password,
input#confirm-password {
  padding-right: 50px;
}

.password-show-hide {
  position: absolute;
  right: 20px;
  z-index: 5;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--white) / 0.6);
}

/* --------------- Number Arrow None --------------------- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Custom Checkbox Design */
.form--check a {
  display: inline;
}

.form--check .form-check-input {
  box-shadow: none;
  background-color: transparent;
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 0px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-image: var(--base-gradient);
  border-image-slice: 1;
}

.form--check .form-check-input:checked {
  border-color: hsl(var(--base)) !important;
  box-shadow: none;
}

.form--check .form-check-input:checked[type="checkbox"] {
  background-image: none;
}

.form--check .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: var(--base-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form--check .form-check-label {
  font-weight: 400;
  width: calc(100% - 16px);
  padding-left: 10px;
  cursor: pointer;
  color: hsl(var(--white));
}

.form--check .form-check-label .text {
  background: var(--base-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

@media screen and (max-width: 424px) {
  .form--check label {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 424px) {
  .form--check a {
    font-size: 0.9375rem;
  }
}
/* Custom Radio Design */
.form--radio .form-check-input {
  box-shadow: none;
  border: 1px solid hsl(var(--black) / 0.2);
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.form--radio .form-check-input:active {
  filter: brightness(100%);
}

.form--radio .form-check-input:checked {
  background-color: transparent;
  border-color: hsl(var(--base));
}

.form--radio .form-check-input:checked[type="radio"] {
  background-image: none;
}

.form--radio .form-check-input:checked::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: hsl(var(--base));
  border-radius: 50%;
  z-index: 999;
}

.form--radio .form-check-label {
  font-weight: 600;
  width: calc(100% - 16px);
  padding-left: 12px;
  cursor: pointer;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
  border-radius: 3px;
  background-image: none;
  position: relative;
  box-shadow: none;
  border: 0;
  background-color: hsl(var(--white)) !important;
  padding: 10px !important;
  margin-left: 0;
  margin-bottom: 5px;
  border-radius: 40px;
  width: 70px;
  height: 38px;
  cursor: pointer;
}

.form--switch .form-check-input:focus {
  border-radius: 40px;
  background-image: none;
  position: relative;
  box-shadow: none;
  border: 0;
}

.form--switch .form-check-input::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background-color: hsl(var(--white));
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  left: 5px;
  border-radius: 50%;
  transition: 0.2s linear;
}

.form--switch .form-check-input:checked {
  background-color: hsl(var(--base)) !important;
}

.form--switch .form-check-input:checked::before {
  left: calc(100% - 33px);
  background-color: hsl(var(--white)) !important;
}

.form--switch .form-check-input:checked[type="checkbox"] {
  background-image: none;
}

.form--switch .form-check-label {
  width: calc(100% - 14px);
  padding-left: 5px;
  cursor: pointer;
}

/*  Custom Switch End Design */
/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal.modal {
  background-color: hsl(var(--black) / 0.45) !important;
}

.custom--modal .modal-header {
  border-bottom: 1px solid hsl(var(--base) / 0.3);
}
.custom--modal .modal-header,
.custom--modal .modal-footer {
  padding: 16px;
}

.custom--modal .modal-content {
  background-color: hsl(var(--black)) !important;
  border-radius: 10px !important;
}

.custom--modal .btn-close {
  transition: 0.2s linear;
}

.custom--modal .btn-close:focus {
  box-shadow: none;
}

.custom--modal .btn-close:hover {
  background-color: hsl(var(--black) / 0.08);
  border-radius: 50%;
}

.custom--modal .modal-body {
  padding: 16px;
  background-size: 10px;
}

.custom--modal .modal-icon i {
  font-size: 2rem;
  color: hsl(var(--base));
  border: 3px solid hsl(var(--base));
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.custom--modal .modal-footer {
  border-top: 1px solid hsl(var(--base) / 0.3);
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 56px;
}

@media screen and (max-width: 1199px) {
  .pagination {
    margin-top: 48px;
  }
}

@media screen and (max-width: 991px) {
  .pagination {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 32px;
  }
}

.pagination .page-item.active .page-link {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

.pagination .page-item .page-link {
  border: 1px solid hsl(var(--black) / 0.15);
  margin: 0 5px;
  border-radius: 5px;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
  color: hsl(var(--body-color));
}

.pagination .page-item .page-link:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base));
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

/* ================================= Pagination Css End =========================== */
/* Table Css Start */
.table {
  margin: 0;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0px 0px;
}

.table thead tr {
  border: 0;
}

.table thead tr th {
  text-align: center;
  padding: 21px 20px;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-weight: 600;
  max-width: 170px;
  font-size: 24px;
  white-space: nowrap;
}

@media screen and (max-width: 1399px) {
  .table thead tr th {
    padding: 10px;
  }
}

.table tbody {
  border: 0 !important;
}

/* .table tbody tr:last-child {
  border-bottom: 0;
}

.table tbody tr:last-child td {
  border-bottom: 0;
} */

.table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 16px 32px;
  border-width: 1px;
  border: 0;
  font-weight: 400;
  max-width: 170px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  background-color: hsl(var(--black));
  color: hsl(var(--white) / 0.6);
}

@media screen and (max-width: 575px) {
  .table tbody tr td {
    font-size: 12px;
  }
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 0.8;
  background: var(--base-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  display: none;
  width: 45% !important;
  text-align: left;
}

@media screen and (max-width: 575px) {
  .table tbody tr td::before {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .table--responsive--md thead {
    display: none;
  }

  .table--responsive--md tbody tr {
    display: block;
  }

  .table--responsive--md tbody tr:last-child td {
    border-bottom: 0;
  }

  .table--responsive--md tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--black) / 0.8);
    max-width: unset;
  }

  .table--responsive--md tbody tr td:last-child {
    border: none;
  }

  .table--responsive--md tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--md tbody tr td::before {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .table--responsive--md tbody tr td {
    border: 0;
  }
}

@media screen and (max-width: 991px) {
  .table--responsive--lg thead {
    display: none;
  }

  .table--responsive--lg tbody tr:nth-child(even) {
    background-color: hsl(var(--black) / 0.02);
  }

  .table--responsive--lg tbody tr:last-child td {
    border-bottom: 0;
  }

  .table--responsive--lg tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--white) / 0.1) !important;
    max-width: unset;
  }

  .table--responsive--lg tbody tr td:last-child {
    border: none;
  }

  .table--responsive--lg tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--lg tbody tr td::before {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .table--responsive--lg tbody tr td {
    border: none;
  }
}

@media screen and (max-width: 1199px) {
  .table--responsive--xl thead {
    display: none;
  }

  .table--responsive--xl tbody tr {
    display: block;
  }

  .table--responsive--xl tbody tr:nth-child(even) {
    background-color: hsl(var(--black) / 0.02);
  }

  .table--responsive--xl tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    max-width: unset;
  }

  .table--responsive--xl tbody tr td:last-child {
    border: none;
  }

  .table--responsive--xl tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--xl tbody tr td::before {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .table--responsive--xl tbody tr td {
    border: 0;
  }
}

@media screen and (max-width: 1399px) {
  .table--responsive--xxl thead {
    display: none;
  }

  .table--responsive--xxl tbody tr {
    display: block;
  }

  .table--responsive--xxl tbody tr:last-child td {
    border-bottom: 0;
  }

  .table--responsive--xxl tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    max-width: unset;
  }

  .table--responsive--xxl tbody tr td:last-child {
    border: none;
  }

  .table--responsive--xxl tbody tr td:first-child {
    text-align: right;
    border-left: 0;
  }

  .table--responsive--xxl tbody tr td::before {
    display: block;
  }
}

@media screen and (max-width: 1399px) {
  .table--responsive--xxl tbody tr td {
    border: 0;
  }
}
/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 40px !important;
}

.custom--tab .nav-item {
  border-bottom: 0;
  padding: 5px;
}

.custom--tab .nav-item .nav-link {
  color: hsl(var(--base));
  padding: 8px 25px !important;
  background-color: transparent !important;
  border-radius: 5px;
  transition: 0.4s;
  border: 1px solid hsl(var(--black) / 0.08) !important;
}

@media screen and (max-width: 1199px) {
  .custom--tab .nav-item .nav-link {
    padding: 12px 15px !important;
  }
}

.custom--tab .nav-item .nav-link.active {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-200)) !important;
  border: 1px solid transparent !important;
}

.custom--tab .nav-item .nav-link.active:hover {
  color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
  color: hsl(var(--white));
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
  border-radius: 5px;
  padding: 8px 10px;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.badge--base {
  background-color: hsl(var(--base) / 0.15) !important;
  color: hsl(var(--base)) !important;
}

.badge--disburse {
  background-color: #223242;
  border: 0.5px solid #469aee;
  color: #469aee;
}

.badge--primary {
  background-color: hsl(var(--primary) / 0.15) !important;
  color: hsl(var(--primary)) !important;
}

.badge--secondary {
  background-color: hsl(var(--secondary) / 0.15) !important;
  color: hsl(var(--secondary)) !important;
}

.badge--success {
  background-color: hsl(var(--success) / 0.15) !important;
  color: hsl(var(--success)) !important;
}

.badge--danger {
  background-color: hsl(var(--danger) / 0.15) !important;
  color: hsl(var(--danger)) !important;
}

.badge--warning {
  background-color: hsl(var(--warning) / 0.15) !important;
  color: hsl(var(--warning)) !important;
}

.badge--info {
  background-color: hsl(var(--info) / 0.15) !important;
  color: hsl(var(--info)) !important;
}

.badge--dark {
  background-color: hsl(var(--dark) / 0.15) !important;
  color: hsl(var(--dark)) !important;
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
  margin-bottom: 0;
  background-color: hsl(var(--white)) !important;
  font-weight: 400;
  padding: 17px 24px;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .alert {
    padding: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert {
    padding: 12px;
  }
}

.alert__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.alert__content {
  width: calc(100% - 24px);
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  .alert__content {
    padding-left: 16px;
  }
}

@media screen and (max-width: 575px) {
  .alert__content {
    padding-left: 0;
    width: 100%;
    margin-top: 6px;
  }
}

.alert__title {
  color: hsl(var(--base-two) / 0.8);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.alert__desc {
  color: hsl(var(--base-two) / 0.5);
  display: block;
  line-height: 1.375;
}

@media screen and (max-width: 424px) {
  .alert__desc {
    font-size: 0.8125rem;
  }
}

.alert__link {
  position: relative;
}

.alert__link:hover::before {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.alert__link::before {
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: hsl(var(--base));
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.alert--base {
  border-color: hsl(var(--base) / 0.6);
}

.alert--base .alert__icon {
  color: hsl(var(--base));
}

.alert--primary {
  border-color: hsl(var(--primary) / 0.6);
}

.alert--primary .alert__icon {
  color: hsl(var(--primary));
}

.alert--success {
  border-color: hsl(var(--success) / 0.6);
}

.alert--success .alert__icon {
  color: hsl(var(--success));
}

.alert--info {
  border-color: hsl(var(--info) / 0.6);
}

.alert--info .alert__icon {
  color: hsl(var(--info));
}

.alert--danger {
  border-color: hsl(var(--danger) / 0.6);
}

.alert--danger .alert__icon {
  color: hsl(var(--danger));
}

.alert--warning {
  border-color: hsl(var(--warning) / 0.6);
}

.alert--warning .alert__icon {
  color: hsl(var(--warning));
}

.alert--secondary {
  border-color: hsl(var(--secondary) / 0.6);
}

.alert--secondary .alert__icon {
  color: hsl(var(--secondary));
}

.alert--dark {
  border-color: hsl(var(--dark) / 0.6);
}

.alert--dark .alert__icon {
  color: hsl(var(--dark));
}

/* ====================================== Alert Css End =============================== */
/* ================================= preload Css Start =========================== */
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: hsl(var(--black));
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-p {
  width: 150px;
  height: 150px;
  background: url(../images/game/dbl-preparing.gif) no-repeat center center;
  background-size: contain;
}
/* ================================= preload Css End ===========================  */
/* ============= Header Start Here ======================= */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand.logo img {
  max-width: 200px;
  max-height: 45px;
}

@media screen and (max-width: 1199px) {
  .navbar-brand.logo img {
    max-width: 140px;
  }
}

.header {
  position: relative;
  z-index: 5;
  background: hsl(var(--black) / 0.7);
  position: sticky;
  width: 100%;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  top: 0;
  border-top: 4px solid hsl(var(--base));
  box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
}

.top-banner {
  background: black;
  color: white;
  padding: 15px 0;
  width: 100%;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .top-banner {
    font-size: 13px;
    text-align: center;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    top: 0px;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    background: hsl(var(--dark));
  }

  .header::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

  .header::-webkit-scrollbar-thumb {
    border-radius: 0px;
  }

  .header-navbar {
    padding: 10px 0;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-150%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
.header .nav-menu .nav-item .nav-link {
  font-weight: 500;
  font-size: 1.25rem;
  font-family: var(--body-font);
}

@media (min-width: 1199px) {
  .header .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header .nav-menu .nav-item {
    position: relative;
    padding-right: 24px;
  }

  .header .nav-menu .nav-item:last-child {
    padding-right: 0;
  }

  .header .nav-menu .nav-item.active .nav-link {
    color: hsl(var(--base)) !important;
  }

  .header .nav-menu .nav-item.active .nav-link::before {
    width: 100%;
  }

  .header .nav-menu .nav-item .nav-link.active {
    background: linear-gradient(
      270deg,
      hsl(var(--base-two)) -13.66%,
      hsl(var(--base)) 90.62%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .header .nav-menu .nav-item.active .nav-link {
    background: linear-gradient(
      270deg,
      hsl(var(--base-two)) -13.66%,
      hsl(var(--base)) 90.62%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .header .nav-menu .nav-item:hover .nav-link::before {
    width: 100%;
  }

  .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
    transform: rotate(180deg);
    transition: 0.2s;
  }


  .header .nav-menu .nav-item .nav-link:hover::before {
    left: 0;
    transition: 0.3s;
  }

  .header .nav-menu .nav-item .nav-link::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 30px;
    width: 0;
    height: 2px;
    background: var(--base-gradient);
    transition: 0.3s;
  }

  .header .nav-menu .nav-item .nav-link .nav-item__icon {
    transition: 0.3s;
    font-size: 0.8125rem;
    margin-left: 2px;
  }
}

@media screen and (min-width: 1199px) and (max-width: 1199px) {
  .header .nav-menu .nav-item .nav-link .nav-item__icon {
    margin-right: 6px;
  }
}

@media (min-width: 1199px) {
  .header .nav-menu .nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    top: 100% !important;
    transform: scaleY(1);
  }
}
/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 1199px) {
  .header .nav-menu .nav-item {
    text-align: left;
    display: block;
    position: relative;
    margin: 0;
  }

  .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
    transform: rotate(0deg) !important;
  }

  .header .nav-item:first-child {
    border-bottom: none;
  }

  .header .nav-item:last-child > a {
    border-bottom: 0;
  }

  .header .nav-item.active .nav-link {
    color: hsl(var(--base));
  }

  .header .nav-item .nav-link {
    margin-bottom: 8px;
    padding: 10px 10px 10px 10px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
    border-bottom: 1px solid hsl(var(--base-two) / 0.4);
    border-radius: 0px!important;
    background-color: transparent!important;
    color: hsl(var(--white))!important;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
    font-family: var(--heading-font);
  }

  .header .nav-item .nav-link::before {
    display: none;
  }

  .header .nav-item .nav-link.show[aria-expanded="true"] {
    color: hsl(var(--base)) !important;
  }

  .header .nav-item .nav-link.show[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .navbar-collapse {
    position: fixed;
    top: 60px; 
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #000;
    overflow-y: auto;
    height: calc(100vh - 60px);
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse .container {
      padding-top: 0 !important;
  }

  .navbar-collapse.show .container {
      padding-top: 0 !important;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
  }

  .navbar-toggler {
    z-index: 1001;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  body.nav-open {
    overflow: hidden;
  }
}

.header .navbar-toggler.header-button {
  border-color: transparent;
  color: hsl(var(--white));
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  transition: 0.15s ease-in-out;
  width: auto;
  font-size: 2.5rem;
}

.header .navbar-toggler.header-button:focus {
  box-shadow: none !important;
}

.header .navbar-toggler.header-button[aria-expanded="true"] i::before {
  content: "\f00d";
}

@media screen and (max-width: 1199px) {
  .body-overlay.show {
    visibility: visible;
    opacity: 1;
  }
}

.language {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language__icon {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    hsl(var(--base)) 5.48%,
    hsl(var(--base-two)) 59.04%,
    hsl(var(--base)) 107.63%
  );
  border: 2px solid hsl(var(--base-two));
  color: hsl(var(--dark));
  display: grid;
  place-content: center;
  font-size: 24px;
}

.language__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.language__wrapper.show .language__arrow {
  transform: rotate(180deg);
}

.language__text {
  color: hsl(var(--white));
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.language__arrow {
  font-size: 14px;
  color: hsl(var(--white));
  transition: all linear 0.2s;
}

.language .dropdown-menu {
  position: absolute;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: hsl(var(--dark));
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.language .dropdown-menu .language_text {
  color: hsl(var(--white));
  padding: 0px 16px;
  font-family: var(--heading-font);
  font-size: 24px;
  cursor: pointer;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
 .navbar-collapse {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #000;
    overflow-y: auto;
    padding: 1rem;
    height: calc(90vh - 60px);
    -webkit-overflow-scrolling: touch;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
  }

  .navbar-toggler {
    z-index: 1001;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header-navbar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header .nav-item .nav-link {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
/* ================================= Header Css End =========================== */
/* ============= Footer Start Here ======================= */
.footer-area {
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .footer-area {
    margin-top: 220px;
  }
}

@media screen and (max-width: 767px) {
  .footer-area {
    margin-top: 170px;
  }
}

@media screen and (max-width: 575px) {
  .footer-area {
    margin-top: 120px;
  }
}

.footer-area::after,
.footer-area::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  width: 100%;
  left: 0;
}

.footer-area::after {
  -webkit-mask-image: url(../images/shapes/footer-bg.png);
  background-image: url(../images/shapes/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  top: 0;
  z-index: -1;
}

.footer-area::before {
  -webkit-mask-image: url(../images/shapes/footer-shape.png);
  height: calc(100% + 10px);
  top: -20px;
  z-index: -2;
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

.footer-area__thumb {
  position: relative;
  z-index: -3;
  margin: calc(-10% + 10px) auto -40px;
  max-width: 1120px;
}

@media screen and (max-width: 1399px) {
  .footer-area__thumb {
    margin: -15% auto -70px;
  }
}

@media screen and (max-width: 1199px) {
  .footer-area__thumb {
    margin: -200px auto -100px;
  }
}

@media screen and (max-width: 991px) {
  .footer-area__thumb {
    position: absolute;
    top: 7%;
  }
}

@media screen and (max-width: 767px) {
  .footer-area__thumb {
    position: absolute;
    top: 10%;
  }
}

@media (max-width: 660px) {
  .footer-area__thumb {
    position: absolute;
    top: 15%;
  }
}

@media (max-width: 400px) {
  .footer-area__thumb {
    position: absolute;
    top: 20%;
  }
}

.payment-method {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

@media screen and (max-width: 1199px) {
  .payment-method {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .payment-method {
    padding-bottom: 30px;
  }
}

.payment-method__title {
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .payment-method {
    padding-top: 100px;
  }
}

.payment-slider .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .payment-slider .slick-slide {
    display: block !important;
  }
}

.payment-single-item {
  -webkit-mask-image: url(../images/shapes/payment-item.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background-image: url(../images/shapes/payment-item.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 208px !important;
  height: 108px;
  display: grid !important;
  place-content: center;
}

@media screen and (max-width: 767px) {
  .payment-single-item {
    background-image: none !important;
    border-radius: 12px;
    width: 100% !important;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    margin: 10px;
    -webkit-mask-image: none !important;
  }
}

.footer-bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .footer-bottom__wrapper {
    flex-direction: column;
  }
}

.footer-bottom__logo {
  flex-shrink: 0;
}

.footer-bottom__logo img {
  width: 240px;
}

.newsletter {
  max-width: 670px;
  position: relative;
  flex: 1;
}

@media screen and (max-width: 991px) {
  .newsletter {
    width: 100%;
  }
}

.newsletter__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter__input {
  flex: 1;
}

.newsletter__input input {
  height: 70px;
  border-radius: 8px 0px 0px 8px;
  border: 1px solid hsl(var(--dark) / 0.1) !important;
  background: hsl(var(--dark)) !important;
  color: hsl(var(--light));
}

@media screen and (max-width: 767px) {
  .newsletter__input input {
    height: 60px;
  }
}

@media screen and (max-width: 424px) {
  .newsletter__input input {
    height: 50px;
  }
}

.newsletter__input input::placeholder {
  color: hsl(var(--white) / 0.2);
}

.newsletter__btn {
  flex-shrink: 0;
  padding: 0 50px;
  height: 70px;
  border-radius: 0px 8px 8px 0px;
  background: var(--base-gradient);
  color: hsl(var(--dark));
  font-weight: 700;
  font-size: 24px;
  font-family: var(--heading-font);
}

@media screen and (max-width: 767px) {
  .newsletter__btn {
    height: 60px;
    padding: 0px 25px;
  }
}

@media screen and (max-width: 424px) {
  .newsletter__btn {
    font-size: 18px;
    height: 50px;
    padding: 0px 15px;
  }
}

.socket-area {
  background-color: #303a45;
  padding: 16px 0;
}

.socket-area__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 12px;
}

@media screen and (max-width: 575px) {
  .socket-area__wrapper {
    flex-direction: column;
  }
}

.socket-nav {
  gap: 32px;
}

@media screen and (max-width: 991px) {
  .socket-nav {
    gap: 16px;
  }
}

.socket-nav__link {
  color: hsl(var(--white) / 0.4);
}

.socket-nav__link:hover {
  color: hsl(var(--base));
  text-decoration: underline;
}

/* ===================== Scroll to Top Start ================================= */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: hsl(var(--black));
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
  transition: 0.5s;
  cursor: pointer;
  transform: scale(0);
  background: var(--base-gradient);
}

.scroll-top:hover {
  color: hsl(var(--black));
}

.scroll-top.show {
  transform: scale(1);
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::selection {
  color: hsl(var(--white));
  background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-list__item {
  margin-right: 10px;
}

.social-list__item:last-child {
  margin-right: 0;
}

.social-list__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  color: hsl(var(--white) / 0.4);
  background-color: #303a45;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  transition: all linear 0.3s;
}

.social-list__link::after {
  content: "";
  position: absolute;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background: var(--base-gradient);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all linear 0.3s;
  opacity: 0;
  border-radius: 50%;
}

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
  color: hsl(var(--dark)) !important;
}

.social-list__link.active::after,
.social-list__link:hover::after,
.social-list__link:focus::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .social-list__link {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}
/* ================================= Social Icon Css End ===========================  */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  padding: 175px 0 166px;
}

@media screen and (max-width: 1599px) {
  .breadcrumb {
    padding: 200px 0 90px;
  }
}

@media screen and (max-width: 1399px) {
  .breadcrumb {
    padding: 190px 0 60px;
  }
}

@media screen and (max-width: 1199px) {
  .breadcrumb {
    padding: 170px 0 70px;
  }
}

@media screen and (max-width: 991px) {
  .breadcrumb {
    padding: 160px 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 160px 0 50px;
  }
}

.breadcrumb::after,
.breadcrumb::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  left: 0;
}

.breadcrumb::after {
  -webkit-mask-image: url(../images/shapes/breadcumb-mask.png);
  background-image: url(../images/shapes/breadcumb-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -2;
  top: 0;
  width: 100%;
  height: 100%;
}

.breadcrumb::before {
  -webkit-mask-image: url(../images/shapes/breadcumb-shape.png);
  z-index: -2;
  background: linear-gradient(
    88deg,
    hsl(var(--base-two)) 13.34%,
    hsl(var(--base)) 78.66%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  width: 100%;
  height: calc(100% + 10px);
  top: 10px;
}

@media screen and (max-width: 575px) {
  .breadcrumb::before {
    top: 0;
  }
}

.breadcrumb__overlay {
  -webkit-mask-image: url(../images/shapes/breadcumb-overlay.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.breadcrumb__overlay img {
  width: 100%;
  height: calc(100% + 10px);
}

.breadcrumb__wrapper {
  text-align: center;
}

.breadcrumb__title {
  margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
  .breadcrumb__title {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 991px) {
  .breadcrumb__title {
    margin-bottom: 12px;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumb__item {
  color: hsl(var(--white));
  padding: 0 5px;
  font-weight: 700;
}

.breadcrumb__item-text {
  color: hsl(var(--white));
}

.breadcrumb__link {
  color: hsl(var(--white));
}

.breadcrumb__link:hover {
  color: hsl(var(--base));
}

/* ====================== Breadcrumb Css End ==================== */
.transection-section .latest-transection {
  padding: 35px 50px 16px;
  border: 1px solid hsl(var(--white) / 0.1);
  border-top: 5px solid hsl(var(--base));
}

@media screen and (max-width: 991px) {
  .transection-section .latest-transection {
    padding: 30px 20px;
  }
}

.transection-section .latest-transection::after {
  -webkit-mask-image: url(../images/shapes/table-bigbg.png);
}

.transection-section .latest-transection::before {
  -webkit-mask-image: url(../images/shapes/table-bigshape.png);
  bottom: 5px;
  left: 11px;
  height: calc(100% + 10px);
  width: calc(100% + 5px);
  z-index: -1;
}

.transection-section .table thead tr th {
  padding: 20px;
}

.blog-sidebar-wrapper {
  position: sticky;
  top: 100px;
}

/* ============ Sidebar search box ============= */
.search-box {
  position: relative;
}

.search-box__button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--base));
}

/* ================== Sidebar Box & Title =================== */
.blog-sidebar {
  background-color: hsl(var(--black) / 0.03);
  padding: 30px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.blog-sidebar:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .blog-sidebar {
    padding: 20px 15px;
  }
}

.blog-sidebar__title {
  position: relative;
  padding-bottom: 10px;
  color: hsl(var(--white));
  margin-bottom: 10px;
}

.blog-sidebar__title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: hsl(var(--base));
  left: 0;
  bottom: 0px;
}

/* ========================= Category & Tags List Style ========================= */
.text-list {
  /* Category */
  /* Style Tag */
}

.text-list.style-category .text-list__item {
  border-bottom: 1px dashed hsl(var(--black) / 0.2);
}

.text-list.style-category .text-list__item:last-child {
  border-bottom: 0;
}

.text-list.style-category .text-list__link {
  color: hsl(var(--body-color));
}

.text-list.style-category .text-list__link:hover {
  color: hsl(var(--base));
}

.text-list.style-tag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: -7px;
}

.text-list.style-tag .text-list__item {
  padding: 7px;
}

.text-list.style-tag .text-list__link {
  color: hsl(var(--light));
  border: 1px solid hsl(var(--white) / 0.1);
  padding: 6px 20px;
  border-radius: 3px;
}

.text-list.style-tag .text-list__link.active {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

.text-list.style-tag .text-list__link:hover {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

/* ======================== Latest Blog Css========================  */
.latest-blog {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.latest-blog:last-of-type {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0;
}

.latest-blog__thumb {
  width: 80px;
  max-height: 80px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .latest-blog__thumb {
    width: 60px;
  }
}

.latest-blog__thumb a {
  display: block;
  height: 100%;
  width: 100%;
}

.latest-blog__content {
  width: calc(100% - 80px);
  padding-left: 15px;
}

@media screen and (max-width: 424px) {
  .latest-blog__content {
    width: calc(100% - 60px);
  }
}

.latest-blog__title {
  margin-bottom: 5px;
}

.latest-blog__title a {
  color: hsl(var(--heading-color));
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-blog__title a:hover {
  color: hsl(var(--base));
}

/* ========================= Latest Blog Css End ===================*/
/* ================================= Range Slider Css Start =========================== */
.custom--range__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.custom--range__content label {
  width: 40%;
}

.custom--range__content input {
  width: 60%;
  text-align: right;
}

.custom--range input {
  border: 0;
  color: hsl(var(--body-color));
  font-weight: 500;
}

.custom--range #slider-range {
  height: 5px;
  border: 0;
  background: hsl(var(--base) / 0.2);
}

.custom--range #slider-range .ui-widget-header {
  background-color: hsl(var(--base));
}

.custom--range #slider-range span:focus {
  background-color: hsl(var(--base));
}

.custom--range #slider-range .ui-slider-handle {
  width: 15px !important;
  height: 15px !important;
  background-color: hsl(var(--base)) !important;
  border: 2px solid hsl(var(--white)) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/* ================================= Range Slider Css End =========================== */
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider .slick-list {
  margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
  display: flex;
}

.slick-initialized.slick-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide > div {
  height: 100%;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: hsl(var(--white));
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s linear;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .slick-arrow {
    width: 45px;
    height: 45px;
  }
}

.slick-arrow:hover {
  border-color: hsl(var(--base));
  background-color: hsl(var(--base-two));
}

.slick-next {
  right: -20px;
}

@media screen and (max-width: 991px) {
  .slick-next {
    right: -10px;
  }
}

@media screen and (max-width: 575px) {
  .slick-next {
    right: 10px;
  }
}

.slick-prev {
  left: -20px;
}

@media screen and (max-width: 991px) {
  .slick-prev {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  .slick-prev {
    left: 10px;
  }
}
/* -------------- Slick Slider Arrow Style two ------------  */
.slick-arrow {
  position: absolute;
  z-index: 1;
  border: none;
  background-color: transparent;
  color: hsl(var(--white));
  width: 32px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.4s;
  background-color: hsl(var(--black));
  color: hsl(var(--white));
  top: -67px;
}

@media screen and (max-width: 1199px) {
  .slick-arrow {
    top: -69px;
  }
}

@media screen and (max-width: 767px) {
  .slick-arrow {
    top: auto;
    bottom: -50px;
    right: 50%;
  }
}

.slick-arrow:hover {
  background-color: hsl(var(--black));
  color: hsl(var(--white));
}

.slick-next {
  right: 10px;
  background-color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
  .slick-next {
    top: auto;
    right: calc(50% - 37px);
  }
}

.slick-prev {
  right: 52px;
}

@media screen and (max-width: 767px) {
  .slick-prev {
    top: auto;
    right: calc(50% + 5px);
  }
}
/* Dots Css Start */
.slick-dots {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

@media screen and (max-width: 991px) {
  .slick-dots {
    padding-top: 30px;
  }
}

.slick-dots li {
  display: flex;
}

.slick-dots li button {
  border: none;
  background-color: #d9d9d9;
  color: hsl(var(--white));
  margin: 0 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  text-indent: -9999px;
  transition: linear 0.3s;
}

.slick-dots li.slick-active button {
  background: hsl(var(--base-two));
  transform: scale(1.1);
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */
/* =========================== Banner Section Start Here ========================= */
.banner-section {
  position: relative;
  z-index: 1;
  padding: 140px 0 20px;
}

@media screen and (max-width: 1199px) {
  .banner-section {
    padding: 120px 0 60px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section {
    padding: 70px 0 40px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section.bg-img {
    background-position: center right;
    object-fit: contain;
  }
}

.banner-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    178deg,
    hsl(var(--dark) / 0.5) 26.04%,
    hsl(var(--dark)) 76.18%
  );
  z-index: -1;
}

.banner-content {
  flex: 1;
}

@media screen and (max-width: 424px) {
  .banner-content {
    text-align: center;
  }
}

.banner-content__title {
  color: hsl(var(--white));
  margin-bottom: 14px;
  line-height: 52px;
  font-size: 58px;
}

@media screen and (max-width: 1399px) {
  .banner-content__title {
    margin-bottom: 10px;
    line-height: 36px;
    font-size: 38px;
  }
}

@media screen and (max-width: 575px) {
  .banner-content__title {
    line-height: 27px;
    font-size: 28px;
  }
}

.banner-content__title .title-inner {
  background: linear-gradient(
    270deg,
    hsl(var(--base-two)) 56.78%,
    hsl(var(--base)) 92.71%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content__title .title-inner::selection {
  background: linear-gradient(
    270deg,
    hsl(var(--base-two)) 56.78%,
    hsl(var(--base)) 92.71%
  );
}

.banner-content__desc {
  font-size: 20px;
}

@media screen and (max-width: 1199px) {
  .banner-content__desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .banner-content__desc {
    font-size: 14px;
  }
}

.banner-content__button {
  margin-top: 46px;
}

@media screen and (max-width: 1399px) {
  .banner-content__button {
    margin-top: 30px;
  }
}

@media screen and (max-width: 575px) {
  .banner-content__button {
    margin-top: 15px;
  }
}

.banner-thumb {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .banner-thumb img {
    max-width: 400px;
    width: 100%;
  }
}

.banner-content-slider {
  position: relative;
}

@media screen and (max-width: 424px) {
  .banner-content-slider {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-radius: 12px;
  }
}

.banner-content-slider::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 60px;
  filter: blur(25px);
  background: linear-gradient(
    256deg,
    rgba(198, 151, 5, 0.7) 23.99%,
    rgba(255, 194, 0, 0.7) 109.47%
  );
  border-radius: 100px 10px 100px 10px;
}

@media screen and (max-width: 424px) {
  .banner-content-slider::before {
    display: none;
  }
}

.banner-content-slider__inner {
  padding: 57px 45px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1399px) {
  .banner-content-slider__inner {
    padding: 30px 25px;
  }
}

@media screen and (max-width: 991px) {
  .banner-content-slider__inner {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 767px) {
  .banner-content-slider__inner {
    padding: 30px 15px;
  }
}

.banner-content-slider__inner::after,
.banner-content-slider__inner::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  height: 100%;
}

@media screen and (max-width: 424px) {
  .banner-content-slider__inner::after,
  .banner-content-slider__inner::before {
    display: none;
  }
}

.banner-content-slider__inner::before {
  width: calc(100% + 10px);
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-mask-image: url(../images/thumbs/banner-shape.png);
  z-index: -2;
  background: linear-gradient(
    259deg,
    hsl(var(--base)) 1.66%,
    hsl(var(--base-two)) 109.25%
  );
}

.banner-content-slider__inner::after {
  width: 100%;
  -webkit-mask-image: url(../images/thumbs/banner-shape.png);
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.banner-slider-item__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px;
}

@media screen and (max-width: 424px) {
  .banner-slider-item__wrapper {
    flex-direction: column-reverse;
  }
}

.banner-slider-item .banner-image {
  width: 185px;
  height: 215px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1399px) {
  .banner-slider-item .banner-image {
    height: 185px;
    width: 160px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-slider-item .banner-image {
    height: 165px;
    width: 140px;
  }
}

@media screen and (max-width: 991px) {
  .banner-slider-item .banner-image {
    height: 200px;
    width: 175px;
  }
}

@media screen and (max-width: 767px) {
  .banner-slider-item .banner-image {
    height: 165px;
    width: 140px;
  }
}

@media screen and (max-width: 575px) {
  .banner-slider-item .banner-image {
    height: 145px;
    width: 130px;
  }
}

.banner-slider-item .banner-image img {
  -webkit-mask-image: url(../images/thumbs/slider-shape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.banner-slider-item .banner-image::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../images/thumbs/slider-shape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    0deg,
    hsl(var(--base)) -6.03%,
    hsl(var(--base-two)) 113.15%
  );
  z-index: -1;
}

/* =========================== Banner Section End Here ========================= */
.games-section-content {
  padding: 86px 44px;
  position: relative;
  z-index: 1;
}

.games-section-inner {
  padding: 40px;
  position: relative;
  background-color: hsl(var(--black));
  border: 1px solid hsl(var(--white) / 0.1);
  border-top: 5px solid hsl(var(--base));
  border-radius: 12px;
}

.games-section-inner.live-games {
  padding: 50px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1199px) {
  .games-section-content {
    background-color: hsl(var(--black));
    border-radius: 12px;
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
  }

  .games-section-inner,
  .blog-section-content {
    padding: 80px 40px !important;
  }
}

@media screen and (max-width: 1199px) {
  .games-section-content {
    padding: 80px 30px;
  }
}

@media screen and (max-width: 991px) {
  .games-section-content {
    padding: 40px 25px;
  }

  .games-section-inner,
  .blog-section-content {
    padding: 40px 25px !important;
  }
}

.games-section-content::after,
.games-section-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .games-section-content::after,
  .games-section-content::before {
    display: none;
  }
}

.games-section-content::after {
  -webkit-mask-image: url(../images/games/game-shape.png);
  background-image: url(../images/games/game-shape.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  top: 0;
  left: 0;
  z-index: -1;
}

.games-section-content::before {
  -webkit-mask-image: url(../images/games/games-shape.png);
  top: -20px;
  left: 0px;
  z-index: -2;
  background: linear-gradient(
    78deg,
    hsl(var(--base-two)) 23.38%,
    hsl(var(--base)) 77.89%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.games-section-wrapper {
  padding: 20px 10px;
}

.game-item {
  padding: 25px;
}


.game-item.dashboard {
  width: calc(45% - 30px) !important;
  min-width: 300px !important;
}

.game-item.normal-game {
  width: calc(30% - 30px) !important;
  min-width: 300px !important;
}

@media screen and (min-width: 1199px) {
  .modal-normal-games {
    --bs-modal-width: 1100px !important;
  }
}

.game-provider-image {
  width: calc(20% - 50px);
  min-width: 150px !important;
}

/* @media screen and (max-width: 1199px) {
  .game-item {
    width: calc(33.3333333333% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .game-item {
    width: calc(50% - 15px);
  }
} */

.game-item:hover .game-item__play {
  opacity: 1;
  color: white;
  visibility: visible;
}

.game-item:hover .game-item__play p {
  opacity: 0.7;
}

.game-item:hover .game-item__play .icon {
  transform: scale(1);
}

.game-item__play {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: hsl(var(--dark) / 0.8);
  top: 0;
  left: 0;
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  display: grid;
  place-content: center;
  transition: all linear 0.3s;
  visibility: hidden;
  opacity: 0;
}

.game-item__play .icon {
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
  width: 65px;
  height: 65px;
  display: grid;
  place-content: center;
  font-size: 20px;
  color: hsl(var(--dark));
  border-radius: 50%;
  transition: all linear 0.3s;
  transform: scale(0.3);
}

.game-item__image {
  position: relative;
  z-index: 1;
}

.game-item__image img.game-dashboard {
  height: 50% !important;
}

.game-item__image.dashboard.coming-soon:hover {
  cursor:default;
}

.game-item__image img, .game-item__image .game-btn {
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

@media screen and (max-width: 1399px) {
  .game-item__image img {
    height: 280px;
  }
}

@media screen and (max-width: 1199px) {
  .game-item__image img {
    height: 315px;
  }
}

@media screen and (max-width: 991px) {
  .game-item__image img {
    height: 228px;
  }
}

@media screen and (max-width: 767px) {
  .game-item__image img {
    height: 252px;
  }
}

@media (max-width: 575px) {
  .game-item__image img {
    height: 240px;
  }
}



.game-item__image::after {
  position: absolute;
  content: "";
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    0deg,
    hsl(var(--base)) -6.03%,
    hsl(var(--base-two)) 113.15%
  );
  z-index: -1;
}

.game-item__title {
  text-align: center;
  margin-top: 30px;
}

.game-item__title.dashboard {
  height: auto;
}

@media screen and (max-width: 991px) {
  .game-item__title {
    margin-top: 15px;
  }
}

.games-callaction {
  margin-top: 70px;
  max-width: 1034px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.games-callaction__wrapper {
  padding: 25px 28px;
  background-color: hsl(var(--black)) !important;
  border-radius: 12px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 50px;
}

@media screen and (max-width: 991px) {
  .games-callaction__wrapper {
    background-image: none;
  }
}

.games-callaction::after {
  position: absolute;
  content: "";
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  top: 50%;
  left: 50%;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  background: var(--base-gradient);
  z-index: -1;
}

.games-callaction__content {
  max-width: 530px;
  width: 100%;
}

.games-callaction__title {
  margin-bottom: 10px;
}

.games-callaction__desc {
  font-weight: 600;
}

.choose-us-wrapper {
  position: relative;
  padding: 112px 40px 80px;
}

@media screen and (max-width: 991px) {
  .choose-us-wrapper {
    padding: 80px 40px;
  }
}

@media screen and (max-width: 1199px) {
  .choose-us-wrapper {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .choose-us-wrapper {
    padding: 60px 24px;
  }
}

.choose-us-wrapper::after,
.choose-us-wrapper::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1199px) {
  .choose-us-wrapper::after,
  .choose-us-wrapper::before {
    display: none;
  }
}

.choose-us-wrapper::after {
  -webkit-mask-image: url(../images/thumbs/choose-us-bg.png);
  background-image: url(../images/thumbs/choose-us-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.choose-us-wrapper::before {
  -webkit-mask-image: url(../images/thumbs/choose-us-shape.png);
  z-index: -2;
  background: linear-gradient(
    249deg,
    hsl(var(--base-two)) 0.13%,
    hsl(var(--base)) 55.8%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.achievement-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 12px;
}

@media screen and (max-width: 424px) {
  .achievement-wrapper {
    flex-direction: column;
  }
}

.achievement-card {
  padding: 23px 20px;
  width: 50%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 575px) {
  .achievement-card {
    flex-direction: column;
    padding: 15px;
  }
}

@media screen and (max-width: 424px) {
  .achievement-card {
    width: 100%;
  }

  .achievement-card:not(:last-child) {
    border-bottom: 1px solid hsl(var(--white) / 0.1);
  }
}

.achievement-card:not(:last-child) {
  border-right: 1px solid hsl(var(--white) / 0.1);
}

.achievement-card__icon {
  flex-shrink: 0;
  font-size: 40px;
  display: flex;
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-card__content {
  flex: 1;
}

.achievement-card__title {
  margin-bottom: 12px;
}

@media screen and (max-width: 1399px) {
  .achievement-card__title {
    margin-bottom: 6px;
    font-size: 19px;
  }
}

.achievement-card__count {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 34px;
}

@media screen and (max-width: 1399px) {
  .achievement-card__count {
    font-size: 32px;
  }
}

.card-slider .slick-slide:nth-child(even) .card-item::before {
  top: 5px;
  right: 1px;
  left: auto;
}

.card-slider .slick-slide:nth-child(even) .card-item::after {
  background-position: top center;
}

.card-item {
  position: relative;
  z-index: 1;
  margin: 5px 0;
}

@media screen and (max-width: 767px) {
  .card-item {
    border: 1px solid hsl(var(--white) / 0.1);
    border-radius: 12px;
  }
}

.card-item__content {
  padding: 59px 32px;
  text-align: center;
}

@media screen and (max-width: 1399px) {
  .card-item__content {
    padding: 51px 27px;
  }
}

@media screen and (max-width: 1199px) {
  .card-item__content {
    padding: 91px 27px;
  }
}

@media screen and (max-width: 991px) {
  .card-item__content {
    padding: 67px 27px;
  }
}

@media screen and (max-width: 767px) {
  .card-item__content {
    padding: 30px 15px;
  }
}

.card-item::after,
.card-item::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .card-item::after,
  .card-item::before {
    display: none;
  }
}

.card-item::after {
  -webkit-mask-image: url(../images/thumbs/card-bg.png);
  background-image: url(../images/thumbs/card-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
}

.card-item::before {
  -webkit-mask-image: url(../images/thumbs/cardbg-shape.png);
  z-index: -2;
  top: -5px;
  left: 0;
  background: linear-gradient(
    72deg,
    hsl(var(--base-two)) 7.57%,
    hsl(var(--base)) 103.29%
  );
  width: calc(100% - 10px);
}

.card-item__image {
  width: 75px;
  height: 68px;
  margin: 0px auto 15px;
  position: relative;
  -webkit-mask-image: url(../images/thumbs/cardimage-shape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: var(--base-gradient);
  display: grid;
  place-content: center;
}

.card-item__image img {
  width: 32px;
}

.card-item__image-lg {
  width: 95px;
  height: 85px;
}

.card-item__image-lg img {
  width: 100%;
}

.card-item__title {
  margin-bottom: 20px;
  line-height: 1;
}

.card-item__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.winner-section-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 24px;
}

@media screen and (max-width: 1199px) {
  .winner-section-wrapper {
    flex-direction: column;
  }
}

.winner-section-wrapper .slick-track {
  display: block !important;
}

.latest-winner {
  width: 320px;
  padding: 35px 25px;
  position: relative;
  min-height: 550px;
  max-height: 550px;
}

@media screen and (max-width: 1199px) {
  .latest-winner {
    width: 100%;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
  }
}

.latest-winner::after,
.latest-winner::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .latest-winner::after,
  .latest-winner::before {
    display: none;
  }
}

.latest-winner::after {
  -webkit-mask-image: url(../images/shapes/winner-bg.png);
  background-image: url(../images/shapes/winner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.latest-winner::before {
  -webkit-mask-image: url(../images/shapes/winner-shape.png);
  top: 0px;
  right: 0px;
  z-index: -2;
  background: linear-gradient(
    78deg,
    hsl(var(--base-two)) 23.38%,
    hsl(var(--base)) 77.89%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  height: calc(100% + 20px);
  width: calc(100% + 18px);
}

.latest-winner__heading {
  text-align: center;
  margin-bottom: 16px;
  line-height: 1;
}

.latest-winner-item {
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.latest-winner-item__title {
  margin-bottom: 12px;
  line-height: 1;
}

.latest-winner-item__amount {
  background: var(--base-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest-winner-item__amount::selection {
  background: none;
}

.latest-transection {
  flex: 1;
  position: relative;
  padding: 35px 25px 16px 40px;
  top: 20px;
  /* min-height: 550px; */
  background-color: hsl(var(--black));
  border-radius: 12px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .latest-transection {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 1399px) {
  .latest-transection {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.latest-transection::after,
.latest-transection::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1399px) {
  .latest-transection::after,
  .latest-transection::before {
    display: none;
  }
}

/* .latest-transection::after {
  -webkit-mask-image: url(../images/shapes/transection-bg.png);
  background-image: url(../images/shapes/transection-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.latest-transection::before {
  -webkit-mask-image: url(../images/shapes/transection-shape.png);
  bottom: 0px;
  left: 0px;
  z-index: -2;
  background: linear-gradient(
    78deg,
    hsl(var(--base-two)) 23.38%,
    hsl(var(--base)) 77.89%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  height: calc(100% + 20px);
  width: calc(100% + 18px);
} */

/* .transection-table-scroller {
  max-height: 500px;
  overflow-y: auto;
} */

.transection-table-scroller::-webkit-scrollbar {
  width: 8px;
}

.transection-table-scroller::-webkit-scrollbar-track {
  background-color: hsl(var(--white) / 0.1);
  border-radius: 10px;
}

.transection-table-scroller::-webkit-scrollbar-thumb {
  background: var(--base-gradient);
  border-radius: 10px;
}

.transection-table thead {
  -webkit-mask-image: url(../images/shapes/table-header-shape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: var(--base-gradient);
  background-color: hsl(var(--base-two));
  position: sticky;
  top: 0;
  z-index: 1;
}

.transection-section .transection-table thead {
  -webkit-mask-image: url(../images/shapes/full-table-shape.png) !important;
}

.testimonials-wrapper {
  position: relative;
  padding: 110px 40px 74px;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .testimonials-wrapper {
    padding: 80px 40px;
  }
}

@media screen and (max-width: 767px) {
  .testimonials-wrapper {
    padding: 60px 24px;
  }
}

@media screen and (max-width: 1199px) {
  .testimonials-wrapper {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.testimonials-wrapper::after,
.testimonials-wrapper::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .testimonials-wrapper::after,
  .testimonials-wrapper::before {
    display: none;
  }
}

.testimonials-wrapper::after {
  -webkit-mask-image: url(../images/thumbs/testimonialOverly.png);
  background-image: url(../images/thumbs/testimonialOverly.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
  height: 100%;
  top: 0;
  width: 100%;
  left: 0;
}

.testimonials-wrapper::before {
  -webkit-mask-image: url(../images/thumbs/testimonialbg.png);
  z-index: -2;
  background: linear-gradient(
    278deg,
    hsl(var(--base-two)) 6.25%,
    hsl(var(--base)) 73.14%
  );
  height: 100%;
  top: 20px;
  width: calc(100% - 1px);
  left: 1px;
}

.winstep-content {
  padding: 89px 60px;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .winstep-content {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 1199px) {
  .winstep-content {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.winstep-content::after,
.winstep-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .winstep-content::after,
  .winstep-content::before {
    display: none;
  }
}

.winstep-content::after {
  -webkit-mask-image: url(../images/shapes/win-bg.png);
  background-image: url(../images/shapes/win-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  top: 0;
  left: 0;
  z-index: -1;
}

.winstep-content::before {
  -webkit-mask-image: url(../images/shapes/win-shape.png);
  top: 20px;
  left: 20px;
  z-index: -2;
  background: linear-gradient(
    226deg,
    hsl(var(--base-two)),
    hsl(var(--base)) 97.44%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.winstep-content .slick-initialized .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.winstep-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
  gap: 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1399px) {
  .winstep-wrapper {
    gap: 28px;
  }
}

@media screen and (max-width: 991px) {
  .winstep-wrapper {
    justify-content: center;
    gap: 30px 50px;
  }
}

@media (max-width: 475px) {
  .winstep-wrapper {
    gap: 20px;
  }
}

.winstep-item {
  height: 270px !important;
  width: 270px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-top: 45px;
}

.winstep-item:last-child::before {
  -webkit-mask-image: url(../images/shapes/bottom-single-shape.png) !important;
  width: calc(100% + 5px);
  -webkit-mask-position: bottom center;
}

@media screen and (max-width: 1399px) {
  .winstep-item:last-child::before {
    width: calc(100% + 20px);
  }
}

@media screen and (max-width: 1399px) {
  .winstep-item {
    height: 270px !important;
    width: 260px !important;
  }
}

@media screen and (max-width: 1199px) {
  .winstep-item {
    height: 190px !important;
    width: 180px !important;
  }
}

@media (max-width: 475px) {
  .winstep-item {
    height: 220px !important;
    width: 210px !important;
  }
}

.winstep-item::after,
.winstep-item::before {
  content: "";
  position: absolute;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
}

.winstep-item::after {
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
  -webkit-mask-image: url(../images/shapes/top-shape.png);
  -webkit-mask-position: top center;
  -webkit-mask-size: auto;
  -webkit-mask-repeat: no-repeat;
  width: calc(100% + 5px);
  top: 0;
}

@media screen and (max-width: 1399px) {
  .winstep-item::after {
    -webkit-mask-size: contain;
    width: calc(100% + 20px);
  }
}

.winstep-item::before {
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
  -webkit-mask-image: url(../images/shapes/bottom-shape.png);
  -webkit-mask-position: bottom right;
  -webkit-mask-size: auto;
  -webkit-mask-repeat: no-repeat;
  width: calc(100% + 182px);
  bottom: 0;
}

@media screen and (max-width: 1399px) {
  .winstep-item::before {
    width: calc(100% + 188px);
  }
}

@media screen and (max-width: 1199px) {
  .winstep-item::before {
    -webkit-mask-image: url(../images/shapes/bottom-single-shape.png) !important;
    width: calc(100% + 18px);
    -webkit-mask-position: bottom center;
    -webkit-mask-size: contain;
  }
}

.winstep-item__content {
  text-align: center;
}

.winstep-item__icon {
  max-width: 64px;
  margin: 0 auto 12px;
}

.winstep-item__title {
  line-height: 1;
}

.winstep-item__badge {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1399px) {
  .winstep-item__badge {
    top: -36px;
  }
}

.winstep-item__badge .count {
  height: 85px;
  width: 85px;
  font-size: 42px;
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
  border-radius: 50%;
  font-weight: 700;
  color: hsl(var(--dark));
  display: grid;
  place-content: center;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .winstep-item__badge .count {
    height: 60px;
    width: 60px;
    font-size: 28px;
  }
}

.winstep-item__badge::after {
  content: "";
  position: absolute;
  top: calc(100% - 24px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  height: 30px;
  width: 30px;
  background-color: hsl(var(--base));
  z-index: -1;
}

.faq-section-content {
  padding: 90px 60px;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .faq-section-content {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 1199px) {
  .faq-section-content {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.faq-section-content::after,
.faq-section-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .faq-section-content::after,
  .faq-section-content::before {
    display: none;
  }
}

.faq-section-content::after {
  -webkit-mask-image: url(../images/shapes/faq-bg.png);
  background-image: url(../images/shapes/faq-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.faq-section-content::before {
  -webkit-mask-image: url(../images/shapes/faq-shape.png);
  height: calc(100% - 10px);
  width: calc(100% + 20px);
  top: 30px;
  right: 1px;
  z-index: -2;
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

/* ================================= Blog Section Css Start Here ============================= */
.blog-content {
  padding: 106px 40px 100px;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .blog-content {
    padding: 75px 20px;
  }
}

@media screen and (max-width: 1199px) {
  .blog-content {
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.blog-content::after,
.blog-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .blog-content::after,
  .blog-content::before {
    display: none;
  }
}

.blog-content::after {
  -webkit-mask-image: url(../images/shapes/blog-bg.png);
  background-image: url(../images/shapes/blog-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.blog-content::before {
  -webkit-mask-image: url(../images/shapes/blog-shape.png);
  height: calc(100% - 60px);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  width: calc(100% - 2px);
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

.blog-section-content {
  padding: 100px 50px;
  position: relative;
  background-color: hsl(var(--black));
  border: 1px solid hsl(var(--white) / 0.1);
  border-top: 5px solid hsl(var(--base));
  border-radius: 12px;
}

.blog-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 40px;
}

@media screen and (max-width: 1199px) {
  .blog-wrapper {
    gap: 40px 30px;
  }
}

@media screen and (max-width: 424px) {
  .blog-wrapper {
    gap: 30px 20px;
  }
}

.blog-item {
  position: relative;
  width: calc(25% - 30px);
  z-index: 1;
  height: 335px;
}

@media screen and (max-width: 1399px) {
  .blog-item {
    height: 295px;
  }
}

@media screen and (max-width: 1199px) {
  .blog-item {
    width: calc(33.3333333333% - 20px);
    height: 325px;
  }
}

@media screen and (max-width: 991px) {
  .blog-item {
    height: 230px;
  }
}

@media screen and (max-width: 767px) {
  .blog-item {
    width: calc(50% - 15px);
    height: 260px;
  }
}

@media (max-width: 475px) {
  .blog-item {
    width: 100%;
    height: 430px;
  }
}

@media (max-width: 400px) {
  .blog-item {
    width: 100%;
    height: 340px;
  }
}

@media (max-width: 340px) {
  .blog-item {
    width: 100%;
    height: 290px;
  }
}

.blog-item__thumb {
  position: relative;
  z-index: 1;
  height: 100%;
}

.blog-item__thumb img {
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  width: 100%;
}

.blog-item__content {
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: 2;
  width: 100%;
  padding: 24px;
}

.blog-item__title {
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item__date {
  color: hsl(var(--dark));
  background: var(--base-gradient);
  display: inline-block;
  padding: 6px 15px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  border-radius: 10px 2px 10px 2px;
  font-family: var(--heading-font);
}

.blog-item:hover .blog-item__readmore {
  opacity: 1;
  visibility: visible;
}

.blog-item:hover .blog-item__readmore .readmore-button {
  transform: scale(1);
}

.blog-item__readmore {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: hsl(var(--dark) / 0.8);
  top: 0;
  left: 0;
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  display: grid;
  place-content: center;
  transition: all linear 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 4;
}

.blog-item__readmore .readmore-button {
  transition: all linear 0.3s;
  transform: scale(0.5);
}

.blog-item::after,
.blog-item::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

.blog-item::after {
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    0deg,
    hsl(var(--base)) -6.03%,
    hsl(var(--base-two)) 113.15%
  );
  z-index: -1;
  border-radius: 10px;
}

.blog-item::before {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  -webkit-mask-image: url(../images/games/game-bgshape.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
  border-radius: 10px;
  background: linear-gradient(
    359deg,
    #0f1923 20.14%,
    rgba(15, 25, 35, 0.65) 35.67%,
    rgba(255, 255, 255, 0) 64.3%
  );
}

.call-section__left {
  flex: 1;
  max-width: 675px;
  width: 100%;
}

.call-section__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .call-section__wrapper {
    flex-direction: column-reverse;
  }
}

.call-section__thumbs {
  flex-shrink: 0;
}

.call-section .section-heading {
  margin-bottom: 30px;
}

.call-section-content {
  padding: 22px 60px;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .call-section-content {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 1199px) {
  .call-section-content {
    padding: 50px 30px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.call-section-content::after,
.call-section-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .call-section-content::after,
  .call-section-content::before {
    display: none;
  }
}

.call-section-content::after {
  -webkit-mask-image: url(../images/shapes/action-bg.png);
  background-image: url(../images/shapes/action-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.call-section-content::before {
  -webkit-mask-image: url(../images/shapes/action-shape.png);
  height: 100%;
  bottom: -20px;
  left: 0;
  z-index: -2;
  width: calc(100% + 18px);
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

.games-callaction-section .games-callaction {
  max-width: 100%;
}

.about-section {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .about-section {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .about-section {
    margin-top: 60px;
  }
}

@media screen and (max-width: 575px) {
  .about-section {
    margin-top: 40px;
  }
}

.about-section__shape {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 40px);
  transform: translateX(-50%);
}

@media screen and (max-width: 1199px) {
  .about-section__shape {
    bottom: calc(100% - 20px);
  }
}

@media screen and (max-width: 991px) {
  .about-section__shape {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .about-thumb {
    max-width: 400px;
    margin: 0 auto;
  }
}

.about-section-content {
  position: relative;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 75px;
}

@media screen and (max-width: 1399px) {
  .about-section-content {
    max-width: 1105px;
    padding: 65px 50px;
  }
}

@media screen and (max-width: 1199px) {
  .about-section-content {
    max-width: 900px;
    padding: 80px 20px;
  }
}

@media screen and (max-width: 991px) {
  .about-section-content {
    padding: 40px 20px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .about-section-content {
    padding: 60px 24px;
  }
}

.about-section-content::after,
.about-section-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .about-section-content::after,
  .about-section-content::before {
    display: none;
  }
}

.about-section-content::after {
  -webkit-mask-image: url(../images/shapes/about-sectionbg.png);
  background-image: url(../images/shapes/about-sectionbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-section-content::before {
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../images/shapes/about-sectionshape.png);
  z-index: -2;
  background: linear-gradient(
    219deg,
    hsl(var(--base-two)) -6.84%,
    hsl(var(--base)) 71.34%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  width: calc(100% + 80px);
  height: calc(100% + 120px);
}

.about-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

@media screen and (max-width: 1199px) {
  .about-card-wrapper {
    gap: 16px;
  }
}

.about-card {
  height: 67px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1399px) {
  .about-card {
    height: 58px;
    width: 220px;
  }
}

@media screen and (max-width: 991px) {
  .about-card {
    height: 85px;
    width: 319px;
  }
}

@media screen and (max-width: 767px) {
  .about-card {
    height: 60px;
    width: 225px;
  }
}

@media screen and (max-width: 575px) {
  .about-card {
    padding: 20px 10px;
    border-radius: 12px;
    border: 1px solid hsl(var(--white) / 0.1);
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 424px) {
  .about-card {
    width: 100%;
    padding: 30px 20px;
  }
}

.about-card::after,
.about-card::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  .about-card::after,
  .about-card::before {
    display: none;
  }
}

.about-card::after {
  -webkit-mask-image: url(../images/shapes/acard-bg.png);
  background-image: url(../images/shapes/acard-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-card::before {
  top: 8px;
  left: 3px;
  -webkit-mask-image: url(../images/shapes/acard-shape.png);
  z-index: -2;
  background: linear-gradient(
    219deg,
    hsl(var(--base-two)) -6.84%,
    hsl(var(--base)) 71.34%
  );
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  width: 100%;
  height: calc(100% - 5px);
}

.about-card__icon {
  background: var(--base-gradient);
  display: flex;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
}

@media screen and (max-width: 991px) {
  .about-card__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .about-card__title {
    font-size: 20px;
  }
}

.info-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 24px;
}

@media screen and (max-width: 1199px) {
  .info-wrapper {
    gap: 24px;
  }
}

.info-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 430px;
  height: 158px;
  padding: 36px 40px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .info-card {
    width: calc(50% - 12px);
    height: 158px;
    padding: 20px 24px;
  }
}

@media screen and (max-width: 991px) {
  .info-card {
    width: 336px;
    height: 122px;
    padding: 20px 24px;
  }
}

@media screen and (max-width: 767px) {
  .info-card {
    width: calc(50% - 12px);
    padding: 20px 24px;
    height: auto;
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
  }
}

@media screen and (max-width: 575px) {
  .info-card {
    width: 100%;
  }
}

.info-card::after,
.info-card::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .info-card::after,
  .info-card::before {
    display: none;
  }
}

.info-card::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/info-cardbg.png);
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: hsl(var(--black));
}

.info-card::before {
  height: calc(100% + 6px);
  width: calc(100% + 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../images/shapes/info-cardbg.png);
  z-index: -2;
  background: linear-gradient(
    259deg,
    hsl(var(--base)) 1.66%,
    hsl(var(--base-two)) 109.25%
  );
}

.info-card__icon {
  flex-shrink: 0;
  height: 65px;
  width: 65px;
  background-color: hsl(var(--black));
  display: grid;
  place-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.info-card__icon::before,
.info-card__icon::after {
  content: "";
  position: absolute;
}

.info-card__icon::before {
  background-color: hsl(var(--black));
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 50%;
}

.info-card__icon::after {
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  top: 50%;
  left: 50%;
  transform: translate(-51%, -49%);
  background: var(--base-gradient);
  border-radius: 50%;
  z-index: -2;
}

.info-card__icon .icon {
  font-size: 30px;
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-card__content {
  flex: 1;
}

.info-card__title {
  margin-bottom: 12px;
}

.info-card__list-link {
  color: var(--white) / 0.6;
}

.info-card__list-link:hover {
  color: hsl(var(--base));
}

.contact-wrapper {
  max-width: 1293px;
  margin: 0px auto;
  position: relative;
  padding: 65px 80px 100px;
  min-height: 950px;
  max-height: 980px;
}

@media screen and (max-width: 1399px) {
  .contact-wrapper {
    padding: 40px 30px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    min-height: auto;
    max-height: auto;
  }
}

@media screen and (max-width: 575px) {
  .contact-wrapper {
    padding: 30px 15px;
  }
}

.contact-wrapper::after,
.contact-wrapper::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1399px) {
  .contact-wrapper::after,
  .contact-wrapper::before {
    display: none;
  }
}

.contact-wrapper::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/contact-shape.png);
  background-image: url(../images/shapes/contact-shape.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.contact-wrapper::before {
  height: calc(100% + 28px);
  width: calc(100% + 42px);
  top: -15px;
  left: -20px;
  -webkit-mask-image: url(../images/shapes/contact-bg.png);
  z-index: -2;
  background: linear-gradient(
    259deg,
    hsl(var(--base)) 1.66%,
    hsl(var(--base-two)) 109.25%
  );
}

@media screen and (max-width: 991px) {
  .contact-thumb {
    max-width: 440px;
    margin: 0 auto;
  }
}

.contact-form {
  padding-right: 60px;
  border: 1px solid var(--vase);
  border: 0;
  border-right-width: 1px;
  border-style: solid;
  border-image: var(--base-gradient);
  border-image-slice: 1;
}

@media screen and (max-width: 991px) {
  .contact-form {
    border: 0;
    padding: 0;
  }
}

.contact-form__title {
  margin-bottom: 12px;
  text-align: center;
}

.withdraw-content {
  position: relative;
  max-width: 550px;
  width: 100%;
  padding: 90px 50px 105px;
  margin: 0 auto;
}

@media screen and (max-width: 1399px) {
  .withdraw-content {
    max-width: 500px;
    padding: 60px 50px 90px;
  }
}

@media screen and (max-width: 575px) {
  .withdraw-content {
    border-radius: 12px;
    background-color: hsl(var(--black));
    border-top: 5px solid hsl(var(--base));
    border: 1px solid hsl(var(--white) / 0.1);
    padding: 40px 30px;
  }
}

@media screen and (max-width: 424px) {
  .withdraw-content {
    padding: 40px 15px 20px;
  }
}

.withdraw-content::after,
.withdraw-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  .withdraw-content::after,
  .withdraw-content::before {
    display: none;
  }
}

.withdraw-content::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/widraw-bg.png);
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.withdraw-content::before {
  height: calc(100% + 30px);
  width: calc(100% + 20px);
  top: -15px;
  left: -10px;
  -webkit-mask-image: url(../images/shapes/widraw-shape.png);
  z-index: -2;
  background: var(--base-gradient);
}

.withdraw-content__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
}

@media screen and (max-width: 991px) {
  .withdraw-content__title {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .withdraw-content__title {
    font-size: 28px;
  }
}

.referrals {
  padding-top: 150px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1199px) {
  .referrals {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .referrals {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 575px) {
  .referrals {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.referrals-content {
  position: relative;
  max-width: 1134px;
  width: 100%;
  padding: 80px 65px 35px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .referrals-content {
    padding: 65px 50px 30px;
  }
}

@media screen and (max-width: 991px) {
  .referrals-content {
    padding: 35px 40px 12px;
  }
}

.referrals-content__shape,
.referrals-content__shapetwo {
  position: absolute;
  z-index: -3;
}

@media screen and (max-width: 767px) {
  .referrals-content__shape,
  .referrals-content__shapetwo {
    display: none;
  }
}

.referrals-content__shape {
  bottom: calc(100% + 10px);
  left: 100px;
}

.referrals-content__shapetwo {
  top: calc(100% + 10px);
  right: 100px;
}

@media (min-width: 1200px) {
  .referrals-content .form--control,
  .referrals-content .input-inner__text {
    height: 70px;
  }

  .referrals-content .input-inner__text {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .referrals-content {
    border-radius: 12px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    padding: 30px 20px;
  }
}

.referrals-content::after,
.referrals-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .referrals-content::after,
  .referrals-content::before {
    display: none;
  }
}

.referrals-content::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/referral-bg.png);
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.referrals-content::before {
  height: calc(100% + 30px);
  width: calc(100% + 20px);
  top: -15px;
  left: -10px;
  -webkit-mask-image: url(../images/shapes/referral-shape.png);
  z-index: -2;
  background: var(--base-gradient);
}

.ticketform-inner {
  max-width: 1090px;
  margin: 0px auto;
  position: relative;
  padding: 90px 60px 140px 80px;
}

@media (min-width: 1200px) {
  .ticketform-inner__scroller {
    max-height: 665px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .ticketform-inner {
    padding: 40px 30px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
  }
}

@media screen and (max-width: 575px) {
  .ticketform-inner {
    padding: 30px 15px;
  }
}

.ticketform-inner::after,
.ticketform-inner::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .ticketform-inner::after,
  .ticketform-inner::before {
    display: none;
  }
}

.ticketform-inner::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/registration-bg.png);
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.ticketform-inner::before {
  height: calc(100% + 35px);
  width: calc(100% + 34px);
  top: -17px;
  left: -16px;
  -webkit-mask-image: url(../images/shapes/registration-shape.png);
  z-index: -2;
  background: linear-gradient(
    259deg,
    hsl(var(--base)) 1.66%,
    hsl(var(--base-two)) 109.25%
  );
}

.ticketform-inner__ticket {
  text-align: center;
  margin-bottom: 32px;
  font-size: 40px;
}

@media screen and (max-width: 991px) {
  .ticketform-inner__ticket {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .ticketform-inner__ticket {
    font-size: 28px;
  }
}

.ticketform-inner .plus-icon,
.ticketform-inner .remove-button {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--base-gradient);
  display: grid;
  place-content: center;
  font-size: 24px;
  color: hsl(var(--black));
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .ticketform-inner .plus-icon,
  .ticketform-inner .remove-button {
    height: 46px;
    width: 46px;
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .ticketform-inner .plus-icon,
  .ticketform-inner .remove-button {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }
}

.form--control[type="file"] {
  line-height: 56px;
}

@media screen and (max-width: 424px) {
  .form--control[type="file"] {
    line-height: 46px;
  }
}

.form--control[type="file"]::-webkit-file-upload-button {
  background: var(--base-gradient);
  border-radius: 4px;
  padding: 0px 24px;
  margin: 0;
  margin-right: 20px;
  color: hsl(var(--black)) !important;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 54px;
  border: 0;
}

@media screen and (max-width: 424px) {
  .form--control[type="file"]::-webkit-file-upload-button {
    line-height: 44px;
    font-size: 15px;
    padding: 0px 12px;
  }
}

.form--control[type="file"]::-webkit-file-upload-button:hover {
  border: 0;
}

.filter_wrapper {
  position: relative;
  width: 100%;
  padding: 40px 50px 35px;
  margin: 60px 0;
}

@media screen and (max-width: 1399px) {
  .filter_wrapper {
    padding: 25px 50px 24px;
  }
}

@media screen and (max-width: 1199px) {
  .filter_wrapper {
    margin: 0 0;
  }
}

@media screen and (max-width: 991px) {
  .filter_wrapper {
    padding: 35px 40px 12px;
  }
}

.filter_wrapper__shape,
.filter_wrapper__shapetwo {
  position: absolute;
  z-index: -3;
}

.filter_wrapper__shape img,
.filter_wrapper__shapetwo img {
  height: 40px;
  width: 220px;
}

@media screen and (max-width: 1199px) {
  .filter_wrapper__shape,
  .filter_wrapper__shapetwo {
    display: none;
  }
}

.filter_wrapper__shape {
  bottom: calc(100% + 10px);
  left: 100px;
}

.filter_wrapper__shapetwo {
  top: calc(100% + 7px);
  right: 100px;
}

@media screen and (max-width: 1199px) {
  .filter_wrapper {
    border-radius: 12px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    padding: 30px 20px;
  }
}

.filter_wrapper::after,
.filter_wrapper::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .filter_wrapper::after,
  .filter_wrapper::before {
    display: none;
  }
}

.filter_wrapper::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/filter-bg.png);
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.filter_wrapper::before {
  height: calc(100% + 22px);
  width: calc(100% + 20px);
  top: -12px;
  left: -10px;
  -webkit-mask-image: url(../images/shapes/filter-shape.png);
  z-index: -2;
  background: var(--base-gradient);
}

.filter-input-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.filter-input-wrapper .require {
  color: hsl(var(--danger));
}

@media screen and (max-width: 575px) {
  .filter-input-wrapper {
    gap: 16px;
  }
}

.filter-input-inner {
  width: calc(33.3333333333% - 66.6666666667px - 24px);
}

@media screen and (max-width: 1199px) {
  .filter-input-inner {
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 575px) {
  .filter-input-inner {
    width: 100%;
  }
}

.filter-input-button {
  width: 200px;
}

.filter-input-button .btn--gradient {
  height: 54px;
}

@media screen and (max-width: 1199px) {
  .filter-input-button {
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 575px) {
  .filter-input-button {
    width: 100%;
  }
}

.headtail-body {
  position: relative;
}

.headtail-body__flip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headtail-body .coin-flipbox {
  /* height: 240px; */
  /* width: 240px; */
  position: relative;
}

@media screen and (max-width: 1399px) {
  .headtail-body .coin-flipbox {
    height: 200px;
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  .headtail-body .coin-flipbox {
    height: 240px;
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .headtail-body .coin-flipbox {
    height: 190px;
    width: 190px;
  }
}

@media screen and (max-width: 575px) {
  .headtail-body .coin-flipbox {
    height: 150px;
    width: 150px;
  }
}

@media screen and (max-width: 424px) {
  .headtail-body .coin-flipbox {
    height: 120px;
    width: 120px;
  }
}

.headtail-body .coin-flipbox__front,
.headtail-body .coin-flipbox__back {
  position: absolute;
}

.headtail-body .coin-flipbox__front img,
.headtail-body .coin-flipbox__back img {
  height: 100%;
  width: 100%;
}

.headtail-wrapper {
  position: relative;
  max-width: 605px;
  padding: 60px 40px 45px;
  margin-left: auto;
}

@media screen and (max-width: 1399px) {
  .headtail-wrapper {
    padding: 40px 40px 35px;
  }
}

@media screen and (max-width: 1199px) {
  .headtail-wrapper {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 991px) {
  .headtail-wrapper {
    padding: 80px 40px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .headtail-wrapper {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 575px) {
  .headtail-wrapper {
    padding: 50px 30px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.headtail-wrapper::after,
.headtail-wrapper::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  .headtail-wrapper::after,
  .headtail-wrapper::before {
    display: none;
  }
}

.headtail-wrapper::after {
  -webkit-mask-image: url(../images/shapes/headtail-bg.png);
  background-image: url(../images/shapes/headtail-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.headtail-wrapper::before {
  -webkit-mask-image: url(../images/shapes/headtail-shape.png);
  bottom: -20px;
  left: -18px;
  z-index: -2;
  height: calc(100% + 18px);
  width: calc(100% + 15px);
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

.game-contet-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.game-contet-title .text {
  background: var(--base-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-contet-title .text::selection {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: hsl(var(--white));
}

.game-playbtn {
  max-width: 375px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .input-inner-note {
    font-size: 12px;
  }
}

.headtail-slect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-block: 40px;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .headtail-slect {
    gap: 16px;
    margin-block: 20px;
  }
}

@media screen and (max-width: 991px) {
  .headtail-slect {
    margin-block: 50px;
  }
}

@media screen and (max-width: 767px) {
  .headtail-slect {
    margin-block: 30px;
  }
}

.headtail-slect__box {
  width: 175px;
  height: 165px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid hsl(var(--white) / 0.1);
  background: hsl(var(--dark));
}

@media screen and (max-width: 1399px) {
  .headtail-slect__box {
    width: 160px;
    height: 150px;
  }
}

@media screen and (max-width: 1199px) {
  .headtail-slect__box {
    width: 140px;
    height: 130px;
  }
}

@media screen and (max-width: 991px) {
  .headtail-slect__box {
    width: 195px;
    height: 185px;
  }
}

@media screen and (max-width: 767px) {
  .headtail-slect__box {
    width: 150px;
    height: 140px;
  }
}

@media screen and (max-width: 424px) {
  .headtail-slect__box {
    width: 108px;
    height: 100px;
  }
}

.headtail-slect__image img {
  width: 120px;
}

@media screen and (max-width: 1399px) {
  .headtail-slect__image img {
    width: 100px;
  }
}

@media screen and (max-width: 1199px) {
  .headtail-slect__image img {
    width: 90px;
  }
}

@media screen and (max-width: 991px) {
  .headtail-slect__image img {
    width: 125px;
  }
}

@media screen and (max-width: 767px) {
  .headtail-slect__image img {
    width: 100px;
  }
}

@media screen and (max-width: 424px) {
  .headtail-slect__image img {
    width: 70px;
  }
}

.game-select-box {
  border: 1px solid transparent;
  position: relative;
}

.game-select-box::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: hsl(var(--black) / 0.5);
  overflow: hidden;
  border-radius: inherit;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
}

.game-select-box.active {
  border: 1px solid hsl(var(--base-two));
}

.game-select-box.active::after {
  visibility: visible;
  opacity: 1;
}

.card-box-image img {
  width: 90px;
}

@media screen and (max-width: 1399px) {
  .card-box-image img {
    width: 80px;
  }
}

@media screen and (max-width: 1199px) {
  .card-box-image img {
    width: 70px;
  }
}

@media screen and (max-width: 991px) {
  .card-box-image img {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .card-box-image img {
    width: 80px;
  }
}

@media screen and (max-width: 575px) {
  .card-box-image img {
    width: 70px;
  }
}

@media screen and (max-width: 424px) {
  .card-box-image img {
    width: 50px;
  }
}

.diceroll-slect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 75px;
  margin-bottom: 105px;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .diceroll-slect {
    margin-top: 75px;
    margin-bottom: 90px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .diceroll-slect {
    margin-top: 35px;
    margin-bottom: 43px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .diceroll-slect {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .diceroll-slect {
    margin: 40px 0;
  }
}

.diceroll-selct {
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
}

.diceroll-selct img {
  border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .diceroll-selct img {
    width: 50px;
  }
}

@media screen and (max-width: 575px) {
  .diceroll-selct img {
    width: 50px;
  }
}

.diceroll-selct.active {
  border-width: 2px;
}

.rockselect-box {
  width: 145px;
  height: 145px;
  border-radius: 12px;
  display: grid;
  place-content: center;
  border: 1px solid hsl(var(--white) / 0.1);
  background: hsl(var(--dark));
}

@media (min-width: 992px) and (max-width: 1200px) {
  .rockselect-box {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 575px) {
  .rockselect-box {
    width: 100px;
    height: 100px;
  }
}

.poolselect-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-block: 27px;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .poolselect-wrapper {
    gap: 8px;
    margin-block: 20px;
  }
}

@media screen and (max-width: 991px) {
  .poolselect-wrapper {
    margin-block: 50px;
  }
}

@media screen and (max-width: 767px) {
  .poolselect-wrapper {
    margin-block: 30px;
  }
}

.poolselect-box {
  width: 95px;
  height: 85px;
  border-radius: 12px;
  display: grid;
  place-content: center;
  border: 1px solid hsl(var(--white) / 0.1);
  background: hsl(var(--dark));
}

@media (min-width: 992px) and (max-width: 1200px) {
  .poolselect-box {
    width: 80px;
    height: 80px;
  }

  .poolselect-box__image img {
    width: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .poolselect-box {
    width: 120px;
    height: 100px;
  }

  .poolselect-box__image img {
    width: 60px;
  }
}

@media screen and (max-width: 424px) {
  .poolselect-box {
    width: 72px;
    height: 72px;
  }

  .poolselect-box__image img {
    width: 40px;
  }
}

.game-contet__sm::after {
  -webkit-mask-image: url(../images/shapes/gamesm-ng.png);
  background-image: url(../images/shapes/gamesm-ng.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.game-contet__sm::before {
  -webkit-mask-image: url(../images/shapes/gamesm-shape.png);
  bottom: -20px;
  left: -18px;
  z-index: -2;
  height: calc(100% + 18px);
  width: calc(100% + 15px);
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

.game-contet__sm .game-playbtn {
  margin-top: 98px;
}

@media screen and (max-width: 1399px) {
  .game-contet__sm .game-playbtn {
    margin-top: 94px;
  }
}

@media screen and (max-width: 1199px) {
  .game-contet__sm .game-playbtn {
    margin-top: 24px;
  }
}

@media screen and (max-width: 991px) {
  .game-contet__sm .game-playbtn {
    margin-top: 115px;
  }
}

@media screen and (max-width: 767px) {
  .game-contet__sm .game-playbtn {
    margin-top: 80px;
  }
}

@media screen and (max-width: 575px) {
  .game-contet__sm .game-playbtn {
    margin-top: 40px;
  }
}

.keno-history-content {
  position: relative;
  max-width: 605px;
  padding: 55px 40px 45px;
  margin-left: auto;
}

.keno-history-content__desc {
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 1399px) {
  .keno-history-content {
    padding: 40px 40px 35px;
  }
}

@media screen and (max-width: 1199px) {
  .keno-history-content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 991px) {
  .keno-history-content {
    padding: 80px 40px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .keno-history-content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 575px) {
  .keno-history-content {
    padding: 50px 30px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
    top: 0;
  }
}

.keno-history-content::after,
.keno-history-content::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  .keno-history-content::after,
  .keno-history-content::before {
    display: none;
  }
}

.keno-history-content::after {
  -webkit-mask-image: url(../images/shapes/keno-bg.png);
  background-image: url(../images/shapes/keno-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.keno-history-content::before {
  -webkit-mask-image: url(../images/shapes/keno-shape.png);
  bottom: -20px;
  left: -18px;
  z-index: -2;
  height: calc(100% + 18px);
  width: calc(100% + 15px);
  background: linear-gradient(
    180deg,
    hsl(var(--base-two)) 0%,
    hsl(var(--base)) 100%
  );
}

.keno-history {
  max-height: 342px;
  min-height: 342px;
  overflow-y: auto;
  padding-right: 10px;
}

.keno-history__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.keno-history__item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.keno-history__text {
  color: hsl(var(--white));
}

.keno-history__count {
  background: var(--base-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

/* =========================================== Blog Details Css Start ==============================*/
.blog-details {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 2px 15px hsl(var(--white) / 0.25);
}

.blog-details__thumb {
  height: 450px;
  max-height: 100%;
  padding: 20px;
}

.blog-details__thumb img {
  border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .blog-details__thumb {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .blog-details__thumb {
    height: 300px;
  }
}

.blog-details__content {
  padding: 35px 25px;
}

@media screen and (max-width: 767px) {
  .blog-details__content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 575px) {
  .blog-details__content {
    padding: 25px 15px;
  }
}

.blog-details__title {
  margin-top: 20px;
  margin-bottom: 15px;
}

.blog-details__desc {
  margin-bottom: 15px;
}

.blog-details .social-list__link {
  border: 1px solid hsl(var(--black) / 0.1);
  color: hsl(var(--body-color));
}

.blog-details .social-list__link:hover {
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

.quote-text {
  background-color: hsl(var(--base) / 0.1);
  padding: 30px 20px;
  border-radius: 5px;
  border-left: 3px solid hsl(var(--base));
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .quote-text {
    padding: 25px 15px;
  }
}
/* =========================================== Account Css Start =========================*/

.account-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 715px;
  width: 100%;
  padding: 50px 50px;
  margin: 0 auto;
  min-height: 700px;
  max-height: 950px;
}

.account-inner .account-form {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .account-inner {
    padding: 95px 40px;
  }
}

@media screen and (max-width: 991px) {
  .account-inner {
    min-height: 925px;
    max-height: 925px;
  }
}

@media screen and (max-width: 767px) {
  .account-inner {
    border-radius: 12px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    padding: 40px 30px;
    max-height: auto;
    min-height: auto;
  }
}

@media screen and (max-width: 424px) {
  .account-inner {
    padding: 40px 15px 20px;
  }
}

.account-inner::after,
.account-inner::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .account-inner::after,
  .account-inner::before {
    display: none;
  }
}

.account-inner::after {
  height: 100%;
  width: 100%;
  /* -webkit-mask-image: url(../images/shapes/login-bg.png); */
  /* background-image: url(../images/shapes/login-bg.png); */
  background-color: #232323;
  border-radius: 20px; /* modern rounded corners */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

/* .account-inner::before {
  height: calc(100% + 30px);
  width: calc(100% + 20px);
  top: -15px;
  left: -10px;
  -webkit-mask-image: url(../images/shapes/login-shape.png);
  z-index: -2;
  background: var(--base-gradient);
} */

.account-form__content {
  margin-bottom: 24px;
}

.account-form__logo {
  max-width: 250px;
  margin: 0 auto 10px;
  display: block;
}

.account-form__desc {
  font-size: 18px;
  text-align: center;
}

.accout-bg {
  min-height: 100vh;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Modern dark red gradient */
  background: linear-gradient(135deg, #232323 0%, #2b0f0f 40%, #c22725 100%);
  color: #fff;

  /* Optional overlay texture for depth */
  background-blend-mode: overlay;
}

.accout-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(194, 39, 37, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(194, 39, 37, 0.1) 0%, transparent 50%);
  pointer-events: none;
}


.accout-bg::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -3;
  background: linear-gradient(
    2deg,
    hsl(var(--dark)) 12.21%,
    hsl(var(--dark) / 0.6) 86.4%
  );
}

.account-note {
  color: hsl(var(--white));
}

.account-note a {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  display: inline-block;
}

.back-button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: hsl(var(--white) / 0.2);
  border-radius: 50%;
  display: grid;
  place-content: center;
}

@media screen and (max-width: 575px) {
  .back-button {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 424px) {
  .back-button {
    top: 10px;
    right: 10px;
  }
}

.back-button .icon {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

@media screen and (max-width: 575px) {
  .back-button .icon {
    font-size: 18px;
  }
}

.forgot-password {
  font-weight: 400;
  color: hsl(var(--white));
}

.forgot-password:hover {
  color: hsl(var(--base));
}

/* ============================================ Account Css End ====================================*/

.registration-inner {
  margin: 0px auto;
  position: relative;
  padding: 50px 80px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1400px) {
  .registration-inner {
    min-height: 1100px;
  }
}

@media screen and (max-width: 1399px) {
  .registration-inner {
    padding: 40px 30px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--white) / 0.1);
    border-top: 5px solid hsl(var(--base));
    border-radius: 12px;
  }
}

@media screen and (max-width: 575px) {
  .registration-inner {
    padding: 30px 15px;
  }
}

.registration-inner::after,
.registration-inner::before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

@media screen and (max-width: 1399px) {
  .registration-inner::after,
  .registration-inner::before {
    display: none;
  }
}

.registration-inner::after {
  height: 100%;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/registration-bg.png);
  background-image: url(../images/shapes/registration-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: hsl(var(--black));
  bottom: 0;
  right: 0;
  z-index: -1;
}

.registration-inner::before {
  height: calc(100% + 35px);
  width: calc(100% + 34px);
  top: -17px;
  left: -16px;
  -webkit-mask-image: url(../images/shapes/registration-shape.png);
  z-index: -2;
  background: linear-gradient(
    259deg,
    hsl(var(--base)) 1.66%,
    hsl(var(--base-two)) 109.25%
  );
}
/*# sourceMappingURL=main.css.map */
.input-group-text {
  background-color: hsl(var(--base));
  border: none;
  color: hsl(var(--white));
}

.menu_has_children .sub-menu {
  position: absolute;
  width: 250px;
  top: 105%;
  left: -50px!important;
  background: hsl(var(--dark) / 0.7);
  padding: 10px 0;
  box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid hsl(var(--base));
  z-index: 9;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu_has_children .nav-link {
  position: relative;
}

.menu_has_children .sub-menu li a {
  color: hsl(var(--white));
  padding: 7px 15px;
  font-family: var(--body-font);
  font-size: 20px;
  display: block;
  line-height: 1;
  transition: all linear 0.3s;
}

.menu_has_children .sub-menu li a:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
}

.menu_has_children:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.menu_has_children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  transition: all 0.3s;
  display: none;
}

@media (max-width: 1199px) {
  .menu_has_children > a::after {
    display: block;
  }

  .menu_has_children .sub-menu {
    opacity: 1;
    visibility: visible;
    display: none;
    position: static;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    border-radius: 0;
    background-color: hsl(var(--black) / 0.3);
  }

  .open.menu_has_children .sub-menu {
    display: block;
  }
}

.mobile-code {
  font-size: 22px;
  font-family: var(--heading-font);
  font-weight: 700;
}

.list-group-item {
  background-color: transparent;
  color: hsl(var(--white) / 0.6);
  border: 1px solid hsl(var(--base) / 0.2);
}

.support-card {
  border: 1px solid hsl(var(--base) / 0.5);
  border-radius: 10px;
  background: hsl(var(--dark));
}

.support-card__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .support-card__title {
    margin-bottom: 0;
  }
}

.support-card__head {
  padding: 12px 15px;
  border-bottom: 1px solid hsl(var(--base) / 0.5);
}

@media screen and (min-width: 768px) {
  .support-card__head {
    display: flex;
    justify-content: space-between;
  }
}

.support-card__date {
  display: block;
  line-height: 1;
}

.support-card__body {
  padding: 12px 15px;
}

.support-card__body-text {
  font-size: 14px;
  margin-bottom: 0;
  color: hsl(var(--white) / 0.8);
}

.support-card__list {
  --gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .support-card__list {
    margin-top: 1rem;
  }
}

.support-card__file {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 1;
  color: hsl(var(--base));
}

.win-loss-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transform: scale(0.5);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.win-loss-popup.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.win-loss-popup__inner {
  width: 480px;
  max-width: 100%;
  text-align: center;
  background-color: #01162f;
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 575px) {
  .win-loss-popup__inner {
    width: 300px;
  }
}

.win-loss-popup__header {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.win-loss-popup__body {
  padding: 20px 30px;
}

.win-loss-popup__body .icon {
  font-size: 200px;
  line-height: 1;
  color: #ed1569;
  text-shadow: 0 5px 15px #ed1569;
}

.win-loss-popup__footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* mine games */

.mine-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.mine-box {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
  height: 80px;
  width: calc(100% / 3 - 13px);
}

@media (min-width: 425px) {
  .mine-box {
    width: calc(100% / 4 - 12px);
  }
}

@media (min-width: 768px) {
  .mine-box {
    width: calc(100% / 5 - 13px);
  }
}

@media (min-width: 992px) {
  .mine-box {
    width: calc(100% / 4 - 12px);
  }
}

@media (min-width: 1200px) {
  .mine-box {
    width: calc(100% / 5 - 13px);
  }
}

.mine-box-wrapper {
  height: 100%;
  transform-origin: center right;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.57, 0.5, 0.15, 0.93);
  width: 100%;
}

.mine-box.active-hidden .mine-box-wrapper {
  transform: translateX(-100%) rotateY(-180deg);
}

.mine-box-front {
  align-items: center;
  backface-visibility: hidden;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 8px;
  position: absolute;
  width: 100%;
  background-color: #232640;
}

.mine-box-front img {
  height: 95%;
  pointer-events: none;
  transition: all 0.3s ease;
  user-select: none;
  width: 95%;
  object-fit: contain;
}

.mine-box.active-hidden {
  cursor: not-allowed;
  pointer-events: none;
}

.mine-box.gold-box {
  pointer-events: none;
}

.mine-box-hidden {
  align-items: center;
  backface-visibility: hidden;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 8px;
  position: absolute;
  width: 100%;
  transform: rotateY(180deg);
  background: #232640;
}

.mine-box.active-hidden .mine-box-hidden {
  transform: rotateY(180deg);
}

.mine-box-hidden img {
  animation: imageanimted 0.8s ease-in-out forwards;
  height: 100%;
  opacity: 0;
  transform: scale(1.4);
  width: 100%;
  object-fit: contain;
}

@keyframes imageanimted {
  50% {
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* poker */
.card-item {
  display: flex;
  align-items: center;
  gap: 5px;
  /* border: 1px solid #dddddd26; */
  border-radius: 8px;
  /* margin-bottom: 5px; */
}
.card-item:last-child {
  margin-bottom: 8px;
}

.card-item__thumb img {
  max-width: 80px;
  max-height: 30px;
}
.card-item__text {
  color: #ed1569;
  display: flex;
  align-items: center;
}
.card-item .card-item__text {
  font-size: 12px;
  font-weight: 600;
}

/* poker table wrapper  */
.poker-table__wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.poker-table {
  /* background-color: #020c25; */
  padding: 60px 50px;
  border-radius: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  border-bottom: 0;
}
.poker-card .card-body {
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .poker-table {
    padding: 50px 30px;
  }
}
.poker-table__thumb img {
  cursor: pointer;
  width: 100%;
  object-fit: cover;
}
.poker-table::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 33%;
  width: 41%;
  transform: translateY(-50%);
  background: #11c563;
  filter: blur(107px);
  z-index: -1;
  height: 61%;
}
.card.poker-card {
  padding: 40px 20px;
}
.card-item__icon {
  font-weight: 600;
  font-size: 14px;
}
.poker-card-table {
  position: relative;
}
.poker-card__bottom .cmn-btn {
  border-radius: 30px;
  z-index: 999;
  position: relative;
}
.poker-card__bottom {
  display: flex;
  gap: 10px;

  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .card-item {
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .poker-table__thumb {
    max-width: 70px;
  }
  .poker-table__wrapper {
    flex-wrap: wrap;
  }
}

.form-submit .btn--gradient-success {
  border-bottom: 4px solid hsl(var(--base-l-100));
  font-family: var(--heading-font);
  color: hsl(var(--dark)) !important;
  padding: 8px 24px !important;
  font-weight: 700;
  padding: 20px 24px !important;
  font-size: 32px;
  border: 0;
  background: hsl(var(--success-d-100));
  border-radius: 16px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  transition: all linear 0.4s;
}
.form-submit .btn--gradient-success::after {
  content: "";
  position: absolute;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  background: linear-gradient(179deg, #4fed0c, #295314c9);
  border-top: 0;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
  transition: all linear 0.4s;
}
.btn--gradient-success:hover::after {
  opacity: 0.5;
}

.game--card {
  background-color: hsl(var(--black));
  border: 1px solid hsl(var(--white) / 0.1);
  border-top: 5px solid hsl(var(--base));
  border-radius: 12px;
  padding: 50px 25px;
  margin: 0 auto;
}

.form--control:disabled:focus,
.form--control[readonly]:focus {
  border: 1px solid hsl(var(--white) / 0.1);
}

.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.maintenance-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
  color: #e73d3e;
}

.input-group {
  border-radius: 12px !important;
  overflow: hidden;
}

.input-group-text {
  height: 56px;
  width: 60px;
  display: grid;
  place-content: center;
  color: hsl(var(--dark));
  flex-shrink: 0;
  background: var(--base-gradient);
  font-size: 18px;
  font-weight: 600;
}

/* @media (max-width: 576px) {
  .input-group-text {
    height: 48px;
  }
} */

@media (max-width: 425px) {
  .input-group-text {
    padding: 4px !important;
    font-size: 16px;
  }
}

.input-group .form--control {
  border-radius: 12px;
}

.minmax-btn {
  position: relative;
}

.minmax-btn:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: hsl(var(--black));
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.policy {
  color: #000 !important;
}

/* ====================== */

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

.account-form .social-list {
  justify-content: center;
}

.account-form__other {
  text-align: center;
  position: relative;
  margin: 16px 0;
}

.account-form__other span {
  width: 50px;
  background: hsl(var(--black));
  z-index: 1;
  position: relative;
}

.account-form__other-line {
  position: absolute !important;
  top: 50%;
  left: 0;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  width: 100% !important;
}

@media (max-width: 424px) {
  .account-form__other span {
    width: 50px;
  }
}
.social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-list__item {
  margin-right: 10px;
}

.social-list__item:last-child {
  margin-right: 0;
}

.social-list__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  color: hsl(var(--white) / 0.4);
  background-color: #303a45;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  transition: all linear 0.3s;
}

.social-list__link::after {
  content: "";
  position: absolute;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background: var(--base-gradient);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all linear 0.3s;
  opacity: 0;
  border-radius: 50%;
}

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
  color: hsl(var(--dark)) !important;
}

.social-list__link.active::after,
.social-list__link:hover::after,
.social-list__link:focus::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .social-list__link {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}

.register-disable {
  height: 100vh;
  width: 100%;
  background-color: #fff;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-disable-image {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 32px;
}

.register-disable-title {
  color: rgb(0 0 0 / 80%);
  font-size: 42px;
  margin-bottom: 18px;
  text-align: center;
}

.register-disable-icon {
  font-size: 16px;
  background: rgb(255, 15, 15, 0.07);
  color: rgb(255, 15, 15, 0.8);
  border-radius: 3px;
  padding: 6px;
  margin-right: 4px;
}

.register-disable-desc {
  color: rgb(0 0 0 / 50%);
  font-size: 18px;
  max-width: 565px;
  width: 100%;
  margin: 0 auto 32px;
  text-align: center;
}

.register-disable-footer-link {
  color: #fff;
  background-color: #5b28ff;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.register-disable-footer-link:hover {
  background-color: #440ef4;
  color: #fff;
}

.account-header {
  color: white;
  font-size: 1.3rem;
  font-weight: bold; 
  font-family: var(--heading-font);
}

.account-header:hover {
  color: white;
}

.btn-insurance, .btn-normal {
  font-size: 17px;
}

@media screen and (min-width: 575px) {
  .btn-insurance, .btn-normal {
    font-size: 20px;
  }
}

@media screen and (min-width: 991px) {
  .btn-insurance, .btn-normal {
    font-size: 24px;
  }
}

/* Display provider name above the game thumbnail */
.bg-gold {
    background-image: linear-gradient(190deg, #c22725, #ed7b7b);
    background-repeat: no-repeat;
    background-size: cover;
}

.provider-tab {
    top: -32px;
    right: 4px;
  clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
    height: 30px;
}

.provider-tab-inner {
    height: 100%;
}

/* Display provider logo beside the game name */
.game-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid hsl(var(--base));
    border-radius: 20px;
    padding: 20px 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.6), inset 0 0 8px rgba(220, 200, 108, 0.2);
    color: hsl(var(--base));
    margin-bottom: 30px;
    gap: 20px;
}

.game-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.game-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: hsl(var(--base));
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(220, 108, 108, 0.5);
}

.game-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-radius: 12px;
    color: #1f1600;
    font-weight: 600;
    transition: background 0.3s;
    background: rgb(148, 37, 22); /* gold tint */
    background: linear-gradient(to right, #c22725, #ed7b7b);
    backdrop-filter: blur(6px); /* frosted glass effect */
    box-shadow:
      inset 0 0 4px rgba(220, 108, 108, 0.25),
        0 0 10px rgba(220, 108, 108, 0.3);
}

.provider-logo {
    height: 32px;
    padding: 6px;
    border-radius: 10px;

    transition: transform 0.25s ease;
}

.game-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #c22725, #ed7b7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.btn-refresh-balance {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c22725, #ed7b7b);
    color: #1a1a1a;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 0 12px rgba(222, 126, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-refresh-balance:hover {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(218, 39, 39, 0.85);
}

@media (max-width: 768px) {
  .game-info-container {
      padding: 14px 20px;
      gap: 14px;
  }

  .game-details {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
  }

  .game-type {
      font-size: 0.65rem;
      padding: 4px 10px;
  }

  .game-platform {
      padding: 4px 10px;
      font-size: 0.85rem;
      gap: 8px;
      border-radius: 10px;
  }

  .provider-logo {
      height: 24px;
      padding: 4px;
      border-radius: 8px;
  }

  .game-name {
      font-size: 1.1rem;
      white-space: normal;
      line-height: 1.3;
  }

  .btn-refresh-balance {
      width: 38px;
      font-size: 1rem;
      align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .game-info-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      gap: 10px;
      flex-wrap: nowrap;
  }

  .game-details {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      flex: 1;
  }

  .game-platform {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 8px;
  }

  .provider-logo {
      height: 22px;
      padding: 4px;
      border-radius: 6px;
  }

  .game-name {
      display: inline-block;
      font-size: 1.15rem;
      font-weight: 900;
      background: linear-gradient(to right, hsl(var(--base)), hsl(var(--base)));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 6px rgba(255, 150, 150, 0.3);
      white-space: nowrap;
  }

  .game-type {
      display: inline-block;
      font-size: 0.6rem;
      padding: 3px 8px;
      border-radius: 999px;
      background-color: hsl(var(--base));
      color: #1a1a1a;
      box-shadow: 0 0 6px rgba(220, 108, 108, 0.4);
      white-space: nowrap;
  }

  .btn-refresh-balance {
      width: 40px;
      font-size: 1rem;
      border-radius: 50%;
      flex-shrink: 0;
      align-self: center;
  }
}

/* =========================== Dashboard Revamp ========================= */
/* === Swiper Pagination Custom === */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: hsl(var(--base)) !important;
    margin: 0 5px;
    border-radius: 50%;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
}

.bannerSwiper {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.bannerSwiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.parallax-card {
    background-size: 150% auto !important;
    background-repeat: no-repeat;
    background-position: 0 center; 
    transition: background-position 0.1s ease-out;
}

/* === Game Name Font === */
.game-name-font {
    font-family: var(--body-font);
}

/* === View All Button === */
.btn-view-all {
  border: 1px solid hsl(var(--base));
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff!important;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  width: auto;
  max-width: fit-content;
  text-align: center;
}

.btn-view-all:hover {
  background-color: hsl(var(--base));
  color: white!important;
}


/* === Sidebar Navigation === */
.sidenav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: hsl(var(--black)) !important;
    z-index: 1050;
    transition: width 0.3s ease;
    overflow: hidden;
    width: 250px!important;
    overflow-y: auto;
}

.sidenav.collapsed {
    width: 70px !important;
    overflow-x: hidden;

}

.sidenav.collapsed .sidenav-logo {
    display: none;
}

.sidenav-header {
    position: sticky;
    top: 0;
    z-index: 10; 
    background-color: hsl(var(--black)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.nav-link {
    color: white !important;
    padding: 0.75rem 1rem;
    margin: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--body-font);
    font-weight: 600;
}

.nav-link:hover {
    background: hsl(var(--base)) !important;
    color: #fff !important;
    font-weight: 700;
}

.nav-link.active {
    background: hsl(var(--base)) !important;
    color: #fff !important;
    font-weight: 700;
}

.nav-link .nav-icon {
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter 0.3s ease;
}

.nav-link.active .nav-icon,
.nav-link:hover .nav-icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.nav-icon {
    width: 25px;
    height: 25px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.nav-text {
    transition: opacity 0.3s ease;
}

.dropdown-toggle.nav-link.account-header:hover {
    background: none !important;
    color: white!important;
}

.sidenav.collapsed .nav-text {
    display: none;
}

.sidenav.collapsed .nav-link {
    margin: 0.5rem 0.25rem;
    text-align: center;
    padding: 0.75rem 0.5rem;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidenav.collapsed .nav-icon {
    margin-right: 0;
}

.sidenav.collapsed .sidenav-header {
    text-align: center;
    padding: 1rem 0.5rem;
}

.sidenav.collapsed .btn-crypto {
    display: none;
}

.sidenav.collapsed .language-selector,
.sidenav.collapsed .copyright {
    display: none;
}

.sidenav-footer {

    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-crypto {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-crypto:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(var(--base));
}

.main-content {
    margin-left:250px;
    transition: margin-left 0.3s ease;
}

.main-content.expanded {
    margin-left: 70px;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.sidenav-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidenav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidenav.collapsed .sidenav-toggle {
    display: block;
    margin: 0 auto;
}

.sidenav.collapsed .btn-crypto {
    display: none !important;
}

@media (max-width: 1199px) {
    .sidenav {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
    }
}

/* === Game Cards Overlay === */
.game-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid hsl(var(--base));
    border-radius: 1rem;

}

.game-card:hover .overlay {
    opacity: 1;
}

.play-button {
    color: hsl(var(--base)) ;
    font-size: 2.5rem;
}

/* === Game Type and Game Provider === */
.gameTypeTabs-container {
    background: #121212;
    border-radius: 10px;
    padding: 8px;
    display: block;
    width: 100%;
    border: 1px solid hsl(var(--dark));
}

.gameTypeTabs {
    border: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.gameTypeTabs .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #ddd;
    font-size: 14px;
    padding: 8px 25px;
    margin-right: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.gameTypeTabs .nav-link i {
    font-size: 16px;
}

.gameTypeTabs .nav-link.active{
    background: hsl(var(--black)) !important;
    color: #fff !important;
    font-weight: 700;
}

.gameTypeTabs .nav-link:hover{
    background: hsl(var(--black)) !important;
    color: #fff !important;
    font-weight: 700;
}
/* .gameTypeTabs .nav-link.active {
    background: #7f5af0;
    color: white;
    border: 1px solid transparent;
}

.gameTypeTabs .nav-link:hover {
    background: rgba(255,255,255,0.05);
    color: white;
} */

.gameTypeTabs-container .nav-icon {
    height: 16px;
    width: auto;
    margin-right: 2px;
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s;
    vertical-align: middle;
}

.gameTypeTabs-container .nav-link.active .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: hsl(var(--base));
    transition: color 0.3s;
}

/* === Sub Menu of Sub Menu === */
.sub-menu li.menu_has_children {
    position: relative;
}

.sub-menu li.menu_has_children > .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: -248px !important;
    right: 100%;
    min-width: 180px;
    background: hsl(var(--dark) / 0.7);
    z-index: 1000;
    padding: 5px 0;
    color: #fff;
}

.sub-menu li.menu_has_children:hover > .sub-menu,
.sub-menu li.menu_has_children.open > .sub-menu {
    display: block;
}

.sub-menu li.menu_has_children > .sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
}

.sub-menu li.menu_has_children > .sub-menu li a:hover {
    background: hsl(var(--base));
}

/* === Account Details Card === */
.custom-info-card {
    border-radius: 16px;
    background: #121212;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.custom-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(230, 211, 159, 0.25);
}

.custom-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.glow-blue {
    background: radial-gradient(circle at bottom center, rgba(31, 81, 255, 0.7), rgba(31, 81, 255, 0.15) 70%, rgba(73, 73, 73, 0.05));
    box-shadow: 0 0 30px rgba(31, 81, 255, 0.8);
}

.glow-purple {
    background: radial-gradient(circle at bottom center, rgba(176, 38, 255, 0.7), rgba(176, 38, 255, 0.15) 70%, rgba(73, 73, 73, 0.05));
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.8);
}

.glow-green {
    background: radial-gradient(circle at bottom center, rgba(57, 255, 20, 0.7), rgba(57, 255, 20, 0.15) 70%, rgba(73, 73, 73, 0.05));
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.glow-red {
    background: radial-gradient(circle at bottom center, rgba(255, 7, 58, 0.7), rgba(255, 7, 58, 0.15) 70%, rgba(73, 73, 73, 0.05));
    box-shadow: 0 0 30px rgba(255, 7, 58, 0.8);
}

.glow-yellow {
    background: radial-gradient(circle at bottom center, rgba(255, 221, 0, 0.7), rgba(255, 221, 0, 0.15) 70%, rgba(73, 73, 73, 0.05));
    box-shadow: 0 0 30px rgba(255, 221, 0, 0.8);
}

.glow-cyan {
    background: radial-gradient(circle at bottom center, rgba(0, 255, 213, 0.7), rgba(0, 255, 213, 0.15) 70%, rgba(73, 73, 73, 0.05));
    box-shadow: 0 0 30px rgba(0, 255, 213, 0.8);
}

.btn-casino {
    min-width: 180px;
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #a52220, #c22725);
    font-weight: 700;
    /* box-shadow: 0 0 15px rgba(230, 159, 159, 0.4), 0 0 10px rgba(191, 167, 106, 0.3); */
    transition: all 0.3s ease-in-out;
    border: none;
    display: inline-block;
    font-family: var(--heading-font);
    color: #fff!important;
    font-size: 1.2rem;
}

.btn-casino:hover {
    background: linear-gradient(135deg, #a52220, hsl(var(--base)));
    transform: scale(1.05);
    /* box-shadow: 0 0 25px rgba(230, 159, 159, 0.6), 0 0 20px rgba(191, 167, 106, 0.4); */
    color: #fff;
    text-decoration: none;
}

/* === Coming Soon Badge === */
.coming-soon-badge {
    background-color: hsl(var(--base)) !important;
    color: #fff !important;
    font-size: 14px;
    padding: 8px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.coming-soon-text {
    font-size: 10px;
    color: hsl(var(--base));
    margin-left: 4px;
    font-weight: 500;
}

.disabled-feature {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}


/* Registraion KYC Page */

.submit-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #c22725;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    height: 3.5rem!important;
}

.submit-btn:disabled,
.submit-btn[disabled] {
    background: #3c3c3cff;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:hover {
    background: #a01e1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(194, 39, 37, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Desktop Step Progress */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    gap: 20px;
}

.step-progress__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-progress__number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232323;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.step-progress__item::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #232323; 
    z-index: 1;
}

.step-progress__item:last-child::after {
    display: none; 
}

.step-progress__item.active .step-progress__number {
    background: #c22725;
    color: #fff;
}

.step-progress__item.active .step-progress__label {
    color: #c22725;
    font-weight: 600;
}

.step-progress__item.completed .step-progress__number {
    background: #c22725;
    color: #fff;
}
.step-progress__item.completed .step-progress__label {
    color: #c22725; 
    font-weight: 600;
}

.step-progress__item.completed::after {
    background: #c22725;
}

.step-progress__label {
    font-size: 12px;
    color: #aaa;
    text-align: center;
}

.step-progress__item.active .step-progress__label {
    color: #c22725;
    font-weight: 600;
}

.step-progress__item.active::before {
    content: '';
    position: absolute;
    top: 21px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: #c22725;
    z-index: 1;
}

.step-progress__item:first-child.active::before {
    display: none;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1399px) {
    .form-disabled.account-inner::after {
        display: block !important;
    }
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form--control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Mobile optimizations */
@media (max-width: 991px) {
    .step-progress {
        display: none !important;
    }
    
    .account-inner {
        padding: 1rem !important;
        margin: 0 !important;
        min-height: auto !important;
        max-height: none !important;
        height: auto !important;
    }
    
    .account-form {
        padding: 0 !important;
    }
    
    .account-form__content {
        padding: 1rem 0 !important;
    }
    
    .step-content {
        padding: 0 !important;
    }
    
    .step-content h4 {
        font-size: 1.25rem !important;
        margin-bottom: 1.5rem !important;
        margin-top: 1rem !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form--control {
        font-size: 16px !important;
        padding: 0.75rem !important;
    }
    
    .submit-btn {
        height: 3rem !important;
        font-size: 0.95rem !important;
        margin-top: 1.5rem !important;
    }
    

    .d-flex.justify-content-between .btn {
        margin-left: 0 !important;
    }
    
    .d-flex.justify-content-between .btn + .btn {
        margin-left: 1rem !important;
    }
    
    .account-form__logo img {
        max-height: 60px !important;
        width: auto !important;
    }
    
    .row {
        margin: 0 !important;
    }
    
    .row > [class*="col-"] {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .form-group input[type="file"] {
        padding: 0rem !important;
    }
    
    .text-muted {
        font-size: 0.8rem !important;
    }
    
    .form--check {
        margin: 1rem 0 !important;
    }
    
    .form-check-label {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .modal-dialog {
        margin: 1rem !important;
    }
}

@media (max-width: 575px) {
    .account-inner {
        padding: 0.5rem !important;
    }
    
    .step-content h4 {
        font-size: 1.1rem !important;
    }
    
    .row > [class*="col-"] {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    /* .d-flex.justify-content-between {
        flex-direction: column !important;
    }
     */
    .d-flex.justify-content-between .btn {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .d-flex.justify-content-between .btn + .btn {
        margin-left: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .account-inner {
        padding: 1.5rem !important;
    }
    
    .step-content h4 {
        font-size: 1.35rem !important;
    }
}

@media (min-width: 1400px) {
    .form-disabled.account-inner::after {
        display: block !important;
    }
}
/* =========================== DRAGON SHIELD MODAL ========================= */

#dragonShieldInfoModal .modal-dialog {
  width: 95%;
  max-width: 95%;
}

@media (min-width: 992px) {
  #dragonShieldInfoModal .modal-dialog {
    width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 991px) {
    .modal-dialog {
        margin: 0rem !important;
    }
}

 #dragonShieldInfoModal .modal-content,
  #dragonShieldInfoModal .modal-body { overflow: visible; }

  #dragonShieldInfoModal .vip-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;     
    scroll-snap-type: x mandatory;
    padding-top: 2.5rem;     
  }

  .custom-scroll::-webkit-scrollbar {
    height: 6px; 
  }

  .custom-scroll::-webkit-scrollbar-track {
    background: transparent; 
  }

  .custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
  }

  .custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) transparent;
  }

  /* Card layout */
  #dragonShieldInfoModal .vip-card {
    position: relative;
    background: #2e2e2e;
    border-radius: 20px;
    min-width: 300px;
    padding: 4.5rem 1rem 1rem; 
    scroll-snap-align: start;
    overflow: visible;        
    z-index: 1;
  }

  /* Theme helpers */
  #dragonShieldInfoModal .vip-cta {
    background:#c22825; color:#fff; border-radius:12px;
  }
  #dragonShieldInfoModal .vip-reward {
    background:#232323; border-radius:12px;
  }

#dragonShieldInfoModal .vip-reward {
  background: linear-gradient(135deg, #232323, #2e2e2e);
  border: 1px solid #c22825;
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(194,40,37,0.3);
  height: 5rem;
}

#dragonShieldInfoModal .vip-features {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #ddd;
}

#dragonShieldInfoModal .vip-features li {
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}

#dragonShieldInfoModal .vip-features li::before {
  content: "•";
  color: #c22825;
  font-weight: bold;
  position: absolute;
  left: 0;
}

#dragonShieldInfoModal .vip-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

#dragonShieldInfoModal .dragon-name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

#dragonShieldInfoModal .vip-level {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c22825; 
  background: rgba(194,40,37,0.15);
  border: 1px solid #c22825;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  margin-top: 0.3rem;
}

#dragonShieldInfoModal .modal-header-title {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

#dragonShieldInfoModal .modal-title {
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#dragonShieldInfoModal .modal-title .highlight {
  color: #c22825; 
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #c22825, #e53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#dragonShieldInfoModal .modal-title .sub {
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 2px;
  margin-top: 0.2rem;
}

#dragonShieldInfoModal .close {
  position: absolute;
  top: 15px;    
  right: 15px;    
  z-index: 10;   
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #dragonShieldInfoModal .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0.5rem;
  }

  #dragonShieldInfoModal .vip-row {
    gap: 0.75rem; 
    padding-top: 2rem;
  }

  #dragonShieldInfoModal .vip-card {
    min-width: 240px; 
    padding: 3.5rem 0.75rem 0.75rem;
    margin: 10px;
  }

  #dragonShieldInfoModal .vip-badge {
    width: 70px; 
    transform: translate(-50%, -45%);
  }

  #dragonShieldInfoModal .dragon-name {
    font-size: 1.4rem;
  }

  #dragonShieldInfoModal .vip-level {
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
  }

  #dragonShieldInfoModal .modal-title {
    font-size: 1.2rem;
  }

  #dragonShieldInfoModal .modal-title .highlight {
    font-size: 1.3rem;
  }

  #dragonShieldInfoModal .modal-title .sub {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  #dragonShieldInfoModal .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0.25rem;
  }

  #dragonShieldInfoModal .vip-row {
    gap: 0.5rem; 
    padding-top: 1.5rem;
  }

  #dragonShieldInfoModal .vip-card {
    min-width: 200px;
    padding: 2.5rem 0.5rem 0.5rem;
  }

  #dragonShieldInfoModal .vip-badge {
    width: 55px; 
    transform: translate(-50%, -40%);
  }

  #dragonShieldInfoModal .dragon-name {
    font-size: 1.2rem; 
  }

  #dragonShieldInfoModal .vip-level {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
  }

  #dragonShieldInfoModal .vip-reward {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  #dragonShieldInfoModal .vip-features {
    font-size: 0.75rem;
  }

  #dragonShieldInfoModal .modal-title {
    font-size: 1rem; 
  }

  #dragonShieldInfoModal .modal-title .highlight {
    font-size: 1.2rem;
  }

  #dragonShieldInfoModal .modal-title .sub {
    font-size: 0.75rem;
  }
}

.vip-card.active-card {
  border: 3px solid #c22825;
  box-shadow: 0 0 20px rgba(194, 40, 37, 0.7);
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}

/* =========================== MOBILE RESPONSIVE FIX ========================= */
/* === Dashboard i VIP Dashboard Button === */
@media (max-width: 768px) and (min-width: 577px) {
    .vip-btn-text {
        font-size: 0.85rem;
    }
    
    .btn-casino {
        padding: 0.4rem 0.8rem;
    }

    .mt-3.mb-4.d-flex.justify-content-between.align-items-center {
        padding-top: 1rem !important;
    }
}

@media (max-width: 576px) {
    .mt-3.mb-4.d-flex.justify-content-between.align-items-center {
        padding: 1.5rem 0.5rem 0 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .mt-3.mb-4.d-flex.justify-content-between.align-items-center h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0;
    }
    
    .d-flex.align-items-center.gap-2 {
        gap: 0.75rem !important;
    }
    
    .dragonshield-info-btn {
        min-width: 42px !important;
        min-height: 42px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.2s ease;
    }
    
    .dragonshield-info-btn:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #fff !important;
    }
    
    .dragonshield-info-btn i {
        font-size: 1.1rem;
    }
    
    .btn-casino {
        min-height: 42px !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        font-weight: 500 !important;
        letter-spacing: 0.3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.2s ease;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .btn-casino:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }
    
    .vip-btn-text::after {
        content: 'VIP';
    }
    .vip-btn-text {
        font-size: 0;
    }
}

@media (max-width: 480px) {
    .mt-3.mb-4.d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
        padding: 1.75rem 0.75rem 0.75rem 0.75rem !important; 
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        margin-bottom: 2rem !important;
    }
    
    .mt-3.mb-4.d-flex.justify-content-between.align-items-center h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        align-self: center;
    }
    
    .d-flex.align-items-center.gap-2 {
        align-self: center;
        gap: 1rem !important;
    }
    
    .dragonshield-info-btn {
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    .btn-casino {
        min-height: 48px !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .vip-btn-text::after {
        content: 'VIP Dashboard';
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .mt-3.mb-4.d-flex.justify-content-between.align-items-center {
        padding: 1.5rem 0.5rem 0.5rem 0.5rem !important; 
    }
    
    .mt-3.mb-4.d-flex.justify-content-between.align-items-center h3 {
        font-size: 1.2rem;
    }
    
    .vip-btn-text::after {
        content: 'VIP';
    }
    
    .btn-casino {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
}

/* === Refresh and i inside VIP Game === */
@media (max-width: 768px) {
    .vip-game-header.d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: center !important;
    }

    .vip-game-title-section.d-flex.flex-wrap.align-items-center.mb-4 {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .vip-game-title-section.d-flex.flex-wrap.align-items-center.mb-4 h3 {
        margin-bottom: 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .vip-game-buttons.d-flex.align-items-end {
        align-self: center !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        justify-content: center !important;
    }
    
    .vip-game-buttons .btn-refresh-balance {
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 1rem !important;
        width: 44px !important; 
        min-width: 44px !important; 
        max-width: 44px !important; 
        height: 44px !important; 
        border-radius: 50% !important; 
        padding: 0 !important; 
        flex-shrink: 0 !important;
        display: inline-flex !important; 
        align-items: center !important;
        justify-content: center !important;
    }
    
    .vip-game-buttons .btn-show-package {
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 1rem !important;
        min-width: 44px !important;
        height: 44px !important;
        border-radius: 6px !important;
        padding: 8px 12px !important;
    }
}

@media (max-width: 480px) {
    .vip-game-buttons .btn-refresh-balance {
        width: 40px !important; 
        min-width: 40px !important; 
        max-width: 40px !important; 
        height: 40px !important; 
        border-radius: 50% !important; 
        padding: 0 !important; 
        flex-shrink: 0 !important; 
        display: inline-flex !important; 
        align-items: center !important;
        justify-content: center !important;
    }
    
    .vip-game-buttons .btn-show-package {
        width: 40px !important; 
        min-width: 40px !important; 
        max-width: 40px !important; 
        height: 40px !important; 
        border-radius: 6px !important; 
        padding: 0 !important;
        flex-shrink: 0 !important; 
        display: inline-flex !important; 
        align-items: center !important;
        justify-content: center !important;
    }
}

/* === Mobile Responsive for Reports Module === */
@media screen and (max-width: 1199px) {

  .transection-table td:before {
        color: #c22825 !important;
        font-weight: 700 !important;
        font-size: 16px !important;
    }

    .transection-table-scroller {
        overflow: visible;
    }
    
    .transection-table,
    .transection-table thead,
    .transection-table tbody,
    .transection-table th,
    .transection-table td,
    .transection-table tr {
        display: block;
    }
    
    .transection-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
        visibility: hidden;
    }
    
    .transection-table tbody tr {
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .transection-table tbody tr:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }
    
    .transection-table td {
        border: none;
        padding: 12px 0;
        position: relative;
        padding-left: 0 !important;
        text-align: left;
        min-height: 40px;
        display: block;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .transection-table td:before {
        content: attr(data-label) ": ";
        display: inline-block;
        font-weight: 600;
        color: #666;
        min-width: 120px;
        margin-right: 10px;
        vertical-align: top;
    }
    
    .transection-table td:last-child {
        border-bottom: 0;
    }

    .transection-table tbody tr {
        background: hsl(var(--black) / 0.02);
        border-color: #333;
    }
    
    .transection-table td:before {
        color: #999;
    }
    
    .transection-table td .text-end,
    .transection-table td .text-center {
        display: inline;
        width: auto;
    }
    
    .transection-table td .text--success {
        color: #28a745;
        font-weight: bold;
    }
    
    .transection-table td .text--danger {
        color: #dc3545;
        font-weight: bold;
    }
    
    .transection-table tbody tr.empty-row {
        text-align: center;
        padding: 30px 20px;
    }
    
    .transection-table tbody tr.empty-row td {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .transection-table tbody tr.empty-row td:before {
        display: none;
    }
    
    .transection-table-scroller {
        width: 100%;
        max-width: 100%;
    }
    
    .transection-section {
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
    }
}

@media screen and (max-width: 575px) {
    .pagination,
    .paginate_links,
    .pagination-wrapper,
    .d-flex .pagination {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        overflow: visible !important;
        width: 100% !important;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 24px;
    }
    
    .pagination .page-item,
    .pagination li {
        display: block !important;
        visibility: visible !important;
    }
    
    .pagination .page-item .page-link,
    .pagination li a,
    .pagination li span {
        display: flex !important;
        visibility: visible !important;
        border: 1px solid hsl(var(--black) / 0.15);
        margin: 0 3px;
        border-radius: 5px;
        height: 32px;
        width: 32px;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        font-weight: 500;
        padding: 0;
        color: hsl(var(--body-color));
        font-size: 14px;
    }
    
    .pagination .page-item.active .page-link {
        background-color: hsl(var(--base));
        color: hsl(var(--white));
        border-color: hsl(var(--base));
    }
}

/* =========================== LINKED WALLETS ========================= */

.wallet-cards-container {
    gap: 0rem;
}

.wallet-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(194, 40, 37, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c22825, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wallet-card:hover {
    transform: translateY(-2px);
    border-color: #c22825;
}

.wallet-card:hover::before {
    opacity: 1;
}

.wallet-card--bank:hover {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(52, 144, 220, 0.15);
}

.wallet-card--ewallet:hover {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(40, 167, 69, 0.15);
}

.wallet-card--crypto:hover {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 193, 7, 0.15);
}

.wallet-card__header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wallet-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.wallet-card__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    z-index: 1;
}

.wallet-card__icon i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.wallet-card__icon--bank {
    background: linear-gradient(135deg, #3490dc, #2779bd);
    color: white;
}

.wallet-card__icon--ewallet {
    background: linear-gradient(135deg, #38c172, #2d995b);
    color: white;
}

.wallet-card__icon--crypto {
    background: linear-gradient(135deg, #f6c23e, #dda520);
    color: white;
}


.wallet-card__title {
    flex: 1;
}

.wallet-card__title h6 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.wallet-card__title p {
    color: #b0b0b0;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.wallet-card__body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: #d9534f;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.wallet-status i {
    font-size: 1.2rem;
    color: #d9534f;
}

.wallet-details {
    color: #d0d0d0;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #c22825;
}

.wallet-error-notes {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ff6b6b;
}

.wallet-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.wallet-add-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 120px;
}

.btn-wallet {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-wallet::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn-wallet:hover::before {
    left: 100%;
}

.btn-wallet--add {
    color: white;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    min-width: 180px;
    justify-content: center;
}

.btn-wallet--add.btn-wallet--bank {
    background: linear-gradient(135deg, #3490dc, #2779bd);
    box-shadow: 0 4px 15px rgba(52, 144, 220, 0.3);
}

.btn-wallet--add.btn-wallet--ewallet {
    background: linear-gradient(135deg, #38c172, #2d995b);
    box-shadow: 0 4px 15px rgba(56, 193, 114, 0.3);
}

.btn-wallet--add.btn-wallet--crypto {
    background: linear-gradient(135deg, #f6c23e, #dda520);
    box-shadow: 0 4px 15px rgba(246, 194, 62, 0.3);
}

.btn-wallet--add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-wallet--edit {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    flex: 1;
}

.btn-wallet--edit:hover {
    background: linear-gradient(135deg, #5a6268, #4e555b);
    transform: translateY(-1px);
}

.btn-wallet--delete {
    background: linear-gradient(135deg, #c22825, #a01e1b);
    color: white;
    min-width: 90px;
}

.btn-wallet--delete:hover {
    background: linear-gradient(135deg, #a01e1b, #8b1a17);
    transform: translateY(-1px);
}

.wallet-upload-box {
    border: 2px dashed #4a4a4a;
    border-radius: 12px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wallet-upload-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(194, 40, 37, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.wallet-upload-box:hover {
    border-color: #c22825;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 40, 37, 0.2);
}

.wallet-upload-box:hover::before {
    opacity: 1;
}

.wallet-upload-box i {
    color: #c22825;
    transition: transform 0.3s;
}

.wallet-upload-box:hover i {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .wallet-card {
        min-height: 250px;
    }
    
    .wallet-card__header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .wallet-card__body {
        padding: 0 1.25rem 1.25rem;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .btn-wallet--add {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .wallet-cards-container {
        gap: 1rem;
    }
    
    .wallet-card {
        min-height: 220px;
    }
}

.custom-warning-box {
  background: #fff5f5;
  border-left: 6px solid #c22825;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: "Segoe UI", sans-serif;
}

.custom-warning-header {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #c22825;
  margin-bottom: 10px;
}

.custom-warning-header i {
  font-size: 1.3rem;
  margin-right: 8px;
  color: #c22825;
}

.custom-warning-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #5a2a2a;
}

.custom-warning-list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 22px;
}

.custom-warning-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

.upload-box {
  border: 2px dashed #c22825;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 180px;
}
.upload-box:hover {
  background: #fff5f5;
  border-color: #a81d1d;
}
.upload-preview {
  display: none;
  margin-top: 10px;
}
.upload-preview img {
  max-width: 100%;
  max-height: 150px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.upload-preview .file-name {
  font-size: 12px;
  margin-top: 5px;
  color: #555;
}

.wallet-status-container {
    margin-bottom: 1.5rem;
}

.status-header {
    margin-bottom: 1rem;
}

.status-badge-wrapper {
    display: inline-flex;
    align-items: center;
}

.wallet-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
}

.wallet-details-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
}

.detail-icon {
    color: #c22825;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.detail-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.85rem;
}

.detail-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.rejection-notice {
    margin-top: 1rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 6px;
    padding: 0.75rem;
}

.rejection-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.warning-icon {
    color: #dc3545;
    font-size: 1.1rem;
}

.rejection-title {
    font-weight: 600;
    color: #dc3545;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rejection-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 1.6rem;
}

@media (max-width: 768px) {
    .wallet-info-card {
        padding: 0.75rem;
    }
    
    .wallet-details-content {
        font-size: 0.85rem;
    }
    
    .rejection-content {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }
}

/* Mobile-specific styles for upload boxes */
@media (max-width: 767px) {
    .upload-box {
        min-height: 100px !important;
        padding: 10px !important;
    }
    
    .upload-box i {
        font-size: 1.5rem !important;
    }
    
    .upload-box p {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .upload-preview img {
        max-height: 80px !important;
    }
    
    .upload-preview .file-name {
        font-size: 0.7rem !important;
    }
    
    .upload-preview .btn-sm {
        padding: 1px 4px !important;
        font-size: 16px !important;
    }
    
    .modal-body .col-md-4 {
        margin-bottom: 0.5rem;
    }
    
    @media (max-width: 576px) {
        .modal-body .col-md-4 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .modal-dialog {
        margin: 1.75rem auto !important;
        max-width: 90% !important;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .modal-dialog.modal-lg {
        max-width: 85% !important;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .modal-dialog {
        max-width: 95% !important;
    }
    
    .modal-dialog.modal-lg {
        max-width: 92% !important;
    }
    
    .modal-body .col-md-6,
    .modal-body .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}


/* =========================== AGENTS DASHBOARD ========================= */
.agent-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

/* =================================
   AGENT DASHBOARD SCOPED STYLES
   All styles prefixed with .agent-dashboard-wrapper
   ================================= */

/* =================================
   REFERRAL SECTION STYLES
   ================================= */
.agent-dashboard-wrapper .referralURL {
    background-color: #1a1a1a !important;
    color: white !important;
}

.agent-dashboard-wrapper .referralURL:focus {
    outline: none !important;
    box-shadow: none !important;
}

.agent-dashboard-wrapper .referralURL::selection {
    background-color: #c22725;
    color: white;
}

.agent-dashboard-wrapper .copytext:hover {
    color: #a21b18 !important;
}

/* Alert Styles */
.agent-dashboard-wrapper .alert-danger-custom {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
}

.agent-dashboard-wrapper .alert-success-custom {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
}

.agent-dashboard-wrapper .alert-info-custom {
    background-color: rgba(108, 117, 125, 0.1);
    border: 1px solid rgba(108, 117, 125, 0.3);
    border-radius: 12px;
}

/* =================================
   DATE FILTER STYLES
   ================================= */
.agent-dashboard-wrapper .date-input {
    background-color: #1a1a1a;
}

.agent-dashboard-wrapper .date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.agent-dashboard-wrapper .date-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.agent-dashboard-wrapper .clear-filter-btn {
    background-color: #1a1a1a;
    height: 3.5rem;
    margin-top: 1rem;
}

/* Quick Filter Buttons */
.agent-dashboard-wrapper .quick-filter-btn {
    background-color: #1a1a1a;
    color: #c22725;
    border: 1px solid rgba(194, 39, 37, 0.3);
    transition: all 0.3s ease;
}

.agent-dashboard-wrapper .quick-filter-btn:hover {
    background-color: #c22725;
    color: white;
    border-color: #c22725;
    transform: translateY(-2px);
}

.agent-dashboard-wrapper .quick-filter-btn.active {
    background-color: #c22725;
    color: white;
    border-color: #c22725;
}

/* =================================
   STATISTICS CARD STYLES
   ================================= */
.agent-dashboard-wrapper .stat-card {
    background: linear-gradient(145deg, #1e1e1e, #242424);
    border: 1px solid rgba(194, 39, 37, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.agent-dashboard-wrapper .stat-card:hover {
    border-color: #c22725;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(194, 39, 37, 0.25);
}

.agent-dashboard-wrapper .stat-card:hover .stat-icon {
    color: #ff3b30;
    text-shadow: 0 0 8px rgba(194, 39, 37, 0.8);
}

.agent-dashboard-wrapper .stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: #c5c5c5;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agent-dashboard-wrapper .stat-icon {
    color: #c22725;
    font-size: 1rem;
}

.agent-dashboard-wrapper .stat-value {
    font-weight: 700;
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
}

/* =================================
   PLAYER TABLE STYLES
   ================================= */


.agent-dashboard-wrapper .player-table thead th {
    text-align: center;
    vertical-align: middle;
}

.agent-dashboard-wrapper .player-table thead th .d-flex {
    justify-content: center;
    text-align: center;
}

.agent-dashboard-wrapper .player-table tbody td {
    text-align: center;
}

.agent-dashboard-wrapper .player-card {
    background: linear-gradient(145deg, #2a2a2a, #242424);
    border: 2px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(194, 40, 37, 0.1);
}

.agent-dashboard-wrapper .player-card .card-header {
    background-color: hsl(var(--black));
    padding: 1.5rem 1.5rem;
    font-size: 2px;
}

.agent-dashboard-wrapper .refresh-btn {
    background-color: #c22725;
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    padding: 0.4rem 0.9rem;
    transition: all 0.2s ease;
}

.agent-dashboard-wrapper .refresh-btn:hover {
    background-color: #e73936;
    transform: translateY(-2px);
}

.agent-dashboard-wrapper .player-table thead {
    background-color: hsl(var(--black));
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.agent-dashboard-wrapper .player-table tbody tr {
    transition: all 0.25s ease;
}

.agent-dashboard-wrapper .player-table tbody tr:hover {
    background-color: rgba(194, 39, 37, 0.1);
}

.agent-dashboard-wrapper .player-table td,
.agent-dashboard-wrapper .player-table th {
    padding: 1rem 1.2rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-dashboard-wrapper .status-active {
    background-color: #28a745;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

.agent-dashboard-wrapper .status-banned {
    background-color: #c22725;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

.agent-dashboard-wrapper .action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.agent-dashboard-wrapper .action-btn:hover {
    border-color: #c22725;
    color: #fff;
    background: rgba(194, 39, 37, 0.2);
}

.agent-dashboard-wrapper .pagination-footer {
    background: transparent;
    padding: 1rem;
}

.agent-dashboard-wrapper .table thead tr th {
    color: #fff;
}

.agent-dashboard-wrapper .table th {
    text-transform: none !important;
    font-size: 17px!important;
}

/* =================================
   RESPONSIVE STYLES
   ================================= */
@media (max-width: 768px) {
    .agent-dashboard-wrapper .player-table thead {
        display: none;
    }

    .agent-dashboard-wrapper .player-table tr {
        display: block;
        margin-bottom: 1.2rem;
        border-radius: 12px;
        background: #2a2a2a;
        padding: 1rem;
    }

    .agent-dashboard-wrapper .player-table td {
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: none;
        padding: 0.5rem 0;
    }

    .agent-dashboard-wrapper .player-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #999;
        text-transform: capitalize;
    }
}

/* =================================
   WALLET CARD STYLES (Balance Cards)
   ================================= */
.agent-dashboard-wrapper .wallet-card {
    background: linear-gradient(145deg, #2a2a2a, #242424);
    border: 2px solid rgba(255, 255, 255, 0.05)!important;
    color: #fff;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(194, 40, 37, 0.1);
    min-height: 0px!important;
}

.agent-dashboard-wrapper .wallet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c22825, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agent-dashboard-wrapper .wallet-card:hover {
    transform: translateY(-2px);
    border-color: #c22825;
}


.agent-dashboard-wrapper .stat-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(194, 39, 37, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c22725;
    font-size: 1.5rem;
}

/* =================================
   WALLET TABLE STATUS BADGES
   ================================= */
.agent-dashboard-wrapper .status-pending {
    background-color: #d7a200ff;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.agent-dashboard-wrapper .status-approved {
    background-color: #28a745;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.agent-dashboard-wrapper .status-rejected {
    background-color: #dc3545;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.agent-dashboard-wrapper .status-resubmit {
    background-color: #17a2b8;
    color: #fff;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

/* =================================
   UTILITY STYLES
   ================================= */
.agent-dashboard-wrapper .font-monospace {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
}

/* .agent-dashboard-wrapper .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
    font-weight: 600;
    color: white!important;
} */

.agent-dashboard-wrapper .bg-warning {
    background-color: #ffc107 !important;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0px!important;
}
/* =================================
   RESPONSIVE STYLES
   ================================= */
@media (max-width: 768px) {
    .agent-dashboard-wrapper .player-table thead {
        display: none;
    }

    .agent-dashboard-wrapper .player-table tr {
        display: block;
        margin-bottom: 1.2rem;
        border-radius: 12px;
        background: #2a2a2a;
        padding: 1rem;
    }

    .agent-dashboard-wrapper .player-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        padding: 0.5rem 0;
    }

    .agent-dashboard-wrapper .player-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #999;
        text-transform: capitalize;
    }
    
    .agent-dashboard-wrapper .stat-card {
        margin-bottom: 1rem;
    }
}
/* =================================
   CHART STYLES
   ================================= */

   .agent-dashboard-wrapper .modern-chart-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
        border: 1px solid rgba(194, 39, 37, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .agent-dashboard-wrapper .modern-chart-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #c22725 0%, #8b1a18 100%);
    }
    
    .agent-dashboard-wrapper .chart-wrapper {
        position: relative;
    }
    
    .agent-dashboard-wrapper .chart-container {
        background: rgba(0, 0, 0, 0.2);
        padding: 1.5rem;
        border-radius: 16px;
        border: 1px solid rgba(194, 39, 37, 0.1);
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .agent-dashboard-wrapper .chart-controls {
        display: flex;
        gap: 0.5rem;
    }
    
    .agent-dashboard-wrapper .chart-type-btn {
        background: rgba(194, 39, 37, 0.1);
        border: 1px solid rgba(194, 39, 37, 0.3);
        color: #ffffff;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
    }
    
    .agent-dashboard-wrapper .chart-type-btn:hover {
        background: rgba(194, 39, 37, 0.2);
        border-color: rgba(194, 39, 37, 0.5);
        transform: translateY(-2px);
    }
    
    .agent-dashboard-wrapper .chart-type-btn.active {
        background: linear-gradient(135deg, #c22725 0%, #8b1a18 100%);
        border-color: #c22725;
        box-shadow: 0 4px 15px rgba(194, 39, 37, 0.4);
    }
    
    .agent-dashboard-wrapper .modern-legend {
        margin-top: 2rem;
    }
    
    .agent-dashboard-wrapper .legend-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .agent-dashboard-wrapper .legend-item-modern {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(194, 39, 37, 0.2);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .agent-dashboard-wrapper .legend-item-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(194, 39, 37, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .agent-dashboard-wrapper .legend-item-modern:hover::before {
        opacity: 1;
    }
    
    .agent-dashboard-wrapper .legend-item-modern:hover {
        border-color: rgba(194, 39, 37, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(194, 39, 37, 0.2);
    }
    
    .agent-dashboard-wrapper .legend-item-modern.legend-hidden {
        opacity: 0.4;
    }
    
    .agent-dashboard-wrapper .legend-item-modern.legend-hidden .legend-indicator {
        opacity: 0.3;
    }
    
    .agent-dashboard-wrapper .legend-indicator {
        width: 12px;
        height: 40px;
        border-radius: 6px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .agent-dashboard-wrapper .legend-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .agent-dashboard-wrapper .legend-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .agent-dashboard-wrapper .legend-value {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .agent-dashboard-wrapper .legend-toggle {
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .agent-dashboard-wrapper .legend-item-modern:hover .legend-toggle {
        color: #c22725;
    }
    
    @media (max-width: 768px) {
        .agent-dashboard-wrapper .legend-grid {
            grid-template-columns: 1fr;
        }
        
        .agent-dashboard-wrapper .chart-controls {
            flex-wrap: wrap;
        }
        
        .agent-dashboard-wrapper .chart-container {
            height: 300px !important;
        }
    }
    
    @media (max-width: 576px) {
        .agent-dashboard-wrapper .chart-type-btn {
            padding: 0.4rem 0.6rem;
            font-size: 0.9rem;
        }
    }


/* =========================== COMPLETE KYC FORM ========================= */

.complete-kyc-form .kyc-form-header {
    padding: 2rem;
    text-align: center;
}

.complete-kyc-form .kyc-form-header h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.complete-kyc-form .kyc-form-body {
    padding: 2.5rem;
}

.complete-kyc-form .form-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.complete-kyc-form .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(194, 39, 37, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.complete-kyc-form .section-title i {
    font-size: 1.5rem;
    color: #c22725;
    background: rgba(194, 39, 37, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.complete-kyc-form .section-separator {
    padding-left: 2rem;
}

.complete-kyc-form .form--label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.complete-kyc-form .form--label .text-danger {
    color: #c22725;
    font-size: 1.1rem;
}

.complete-kyc-form .input-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.complete-kyc-form .input-inner:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: #c22725;
    box-shadow: 0 0 0 3px rgba(194, 39, 37, 0.1);
}

.complete-kyc-form .input-inner__icon {
    padding: 0 1rem;
    transition: color 0.3s ease;
}

.complete-kyc-form .form--control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.875rem 1rem;
    flex: 1;
    outline: none;
}

.complete-kyc-form .form--control:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.complete-kyc-form .form--control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.complete-kyc-form .file-upload-wrapper {
    margin-top: 0.75rem;
    position: relative;
}

.complete-kyc-form .file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.complete-kyc-form .file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(194, 39, 37, 0.05);
    border: 2px dashed rgba(194, 39, 37, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.complete-kyc-form .file-upload-label:hover {
    background: rgba(194, 39, 37, 0.1);
    border-color: #c22725;
    color: #c22725;
}

.complete-kyc-form .file-upload-label i {
    font-size: 1.5rem;
}

.complete-kyc-form .id-preview-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(194, 39, 37, 0.2);
}

.complete-kyc-form .id-preview-card img {
    width: 100%;
    height: auto;
    display: block;
}

.complete-kyc-form .id-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 0.75rem;
    text-align: center;
}

.complete-kyc-form .id-preview-overlay small {
    color: #fff;
    font-weight: 500;
}

.complete-kyc-form .form-submit-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.complete-kyc-form .submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #c22725 0%, #a01e1c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(194, 39, 37, 0.3);
}

.complete-kyc-form .submit-btn:active {
    transform: translateY(0);
}

.complete-kyc-form .submit-btn i {
    font-size: 1.25rem;
}

.complete-kyc-form .alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.complete-kyc-form .alert i {
    font-size: 1.25rem;
}

.complete-kyc-form .error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 4px;
}

.complete-kyc-form .error-message::before {
    content: '⚠';
    font-size: 1rem;
}

.form--control.is-invalid {
    border-color: #ff6b6b !important;
}

.complete-kyc-form .input-inner:has(.is-invalid) {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.05);
}

.complete-kyc-form .text-muted {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 991px) {
    .complete-kyc-form .kyc-form-body {
        padding: 1.5rem;
    }
    
    .complete-kyc-form .form-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .complete-kyc-form .section-separator {
        border-left: 3px solid #c22725;
        padding-left: 1.5rem;
    }
    
    .complete-kyc-form .section-title {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
    
    .complete-kyc-form .section-title i {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .complete-kyc-form .kyc-form-header {
        padding: 1.5rem 1rem;
    }
    
    .complete-kyc-form .kyc-form-header h3 {
        font-size: 1.4rem;
    }
    
    .complete-kyc-form .kyc-form-body {
        padding: 1rem;
    }
    
    .complete-kyc-form .form-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .complete-kyc-form .section-separator {
        border-left: 2px solid #c22725;
        padding-left: 1rem;
    }
    
    .complete-kyc-form .section-title {
        font-size: 1rem;
    }
    
    .complete-kyc-form .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .complete-kyc-form .form-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .complete-kyc-form .section-title {
        font-size: 0.95rem;
    }
    
    .complete-kyc-form .section-title i {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .complete-kyc-form .input-inner__icon {
        padding: 0 0.75rem;
        font-size: 0.9rem;
    }
    
    .complete-kyc-form .form--control {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

.complete-kyc-form .submit-btn:disabled {
    background: #3c3c3c;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.complete-kyc-form .submit-btn:disabled:hover {
    transform: none;
}

.complete-kyc-form select.form--control:focus,
input.form--control:focus {
    outline: none;
}

.complete-kyc-form * {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.complete-kyc-form .kyc-form-body::-webkit-scrollbar {
    width: 8px;
}

.complete-kyc-form .kyc-form-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.complete-kyc-form .kyc-form-body::-webkit-scrollbar-thumb {
    background: rgba(194, 39, 37, 0.5);
    border-radius: 4px;
}

.complete-kyc-form .kyc-form-body::-webkit-scrollbar-thumb:hover {
    background: #c22725;
}