/* Global Styles */

@font-face {
  font-family: "Barlow";
  src: url("/assetsFASGW/fontsSAD/Barlow-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("/assetsFASGW/fontsSAD/Barlow-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("/assetsFASGW/fontsSAD/Barlow-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assetsFASGW/fontsSAD/Montserrat-BoldASFQ.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assetsFASGW/fontsSAD/OpenSans-SemiboldASFW.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: "Barlow", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  background: #394953;
  font-family: "Barlow", sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1300px) {
  .container {
    padding: 0 15px;
  }
}

/* Header */
.header {
  background: #0b1013;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
}

@media (max-width: 620px) {
  .header-inner {
    justify-content: start;
    gap: 25px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo_image {
  width: auto;
  height: auto;
}

@media (max-width: 620px) {
  .logo_image {
    box-sizing: border-box;
    max-width: 200px;
    max-height: 27px;
  }
}

.auth-desktop {
  display: flex;
  gap: 16px;
}

.auth-desktop button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-family: Barlow;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;

  border-radius: 100px;
}

.auth-desktop button:hover {
  opacity: 0.8;
}

.auth-desktop button:nth-child(1) {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.auth-desktop button:nth-child(2) {
  background: #fdb614;
  color: #0b1013;
  border: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

@media (max-width: 620px) {
  .auth-desktop {
    display: none;
  }
  .burger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -1000%;
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: #0b1013;
  padding: 80px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: 0.3s;
  z-index: 1001;
}

.mobile-menu.open {
  left: 0;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  background: none;
  border: none;
  color: #ffffff;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.mobile-nav a {
  color: var(--white, #fff);
  font-family: "Open Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.auth-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* margin-top: auto; */
}

.auth-mobile button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-family: Barlow;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;

  border-radius: 100px;
}

.auth-mobile button:nth-child(1) {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.auth-mobile button:nth-child(2) {
  background: #fdb614;
  color: #0b1013;
  border: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.show {
  display: block;
}

/* AUTH POPUP */
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
  overflow-y: auto;
}

.auth-popup {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  padding: 24px 30px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #2a3841;
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 980px) {
  .auth-popup {
    padding: 14px;
  }
}

@media (max-width: 640px) {
  .auth-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    max-height: calc(100vh - 40px);
    width: calc(100% - 40px);
  }
}

.auth-popup.active,
.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 640px) {
  .auth-popup.active {
    transform: translateX(-50%) scale(1);
  }
}

.auth-close {
  position: absolute;
  right: 16px;
  top: 4px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  color: #ffffff;
}

.auth-content {
  display: none;
  width: 100%;
}

.auth-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  gap: 3px;
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

@media (max-width: 768px) {
  .auth-content.active {
    padding: 12px 6px;
    gap: 2px;
  }
}

@media (max-width: 480px) {
  .auth-content.active {
    gap: 1px;
  }
}

/* Button Label Styles */
.btn-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Barlow;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}

@media (max-width: 768px) {
  .btn-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .btn-label {
    font-size: 10px;
    line-height: 1;
  }
}

/* =========================
   SUCCESS NOTIFICATION
========================= */
.success-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  z-index: 1000;
  animation: slideIn 0.4s ease-out;
  visibility: hidden;
  opacity: 0;
}

.success-notification.show {
  visibility: visible;
  opacity: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(500px);
    opacity: 0;
  }
}

.success-notification.hide {
  animation: slideOut 0.4s ease-out forwards;
}

.notification-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: checkmark 0.6s ease-out 0.2s backwards;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.notification-text {
  flex: 1;
}

.notification-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
}

.notification-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.notification-close:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .success-notification {
    top: 15px;
    right: 15px;
    left: 15px;
    max-width: none;
  }
}

.auth-content span {
  color: #fff;
  font-family: Barlow;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.auth-content p {
  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.auth-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: #f8a11d;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.auth-switch span.active {
  font-weight: 600;
}

.auth-switch button {
  background: none;
  border: none;
  color: #fcfcfc;
  cursor: pointer;
}

.auth-content label {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
}

.auth-content input {
  width: 95%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 100px;
  border: 1px solid #f9f9f9;
  background: transparent;

  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.auth-submit {
  margin-top: 10px;
  width: 100%;
  display: flex;
  height: 40px;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: #cfcfcf;
  color: #647480;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.auth-submit:hover {
  background: #fdb614;
  color: #0b1013;
}

.checkbox {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  border: none;
  align-items: center;
}
.checkbox input {
  width: 14px;
  height: 14px;
}

/* =========================
   AGE POPUP STYLES
========================= */

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.age-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-popup {
  width: 100%;
  max-width: 543px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15.3px;

  border-radius: 12px;
  background: #031c37;

  animation: fadeInUp 0.4s ease forwards;
}

.age-title {
  color: #e5e7eb;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.age-text {
  color: #9ca3af;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.age-actions {
  display: flex;
  gap: 12px;
}

.age-button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: none;
  background: #e36043;

  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 13.1px;
  font-weight: 700;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.age-button:hover {
  transform: scale(1.05);
}

.age-exit {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: 2px solid #e36043;

  color: #e36043;
  font-family: Montserrat, sans-serif;
  font-size: 13.1px;
  font-weight: 700;
  text-decoration: none;
}

.top-main {
  padding-top: 20px;
  padding-bottom: 20px;
}

.top-main .top-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 620px) {
  .top-main .top-content {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
}

.top-main .top-content .first {
  order: 1;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 857px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px 10px 0 10px;
  border-bottom: 3px solid #55738a;
  background: rgba(11, 16, 19, 0.7);
}

.top-main .top-content .first .gray-one-box {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #55738a;
}

.icon_and_text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.icon_and_text h1 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.top-main .top-content .second {
  order: 2;
}

.top-main .top-content .second p {
  text-align: end;
  color: #fff;
  text-align: right;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.table-main {
  padding-bottom: 10px;
}

.table-main .table-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.table-main .table-content .table-first {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 860px;
}

.table-main .table-content .table-first .table-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-sizing: border-box;
  max-width: 860px;
  width: 100%;
}

.table-main .table-content .table-first .table-item .table_item_heading {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  align-items: center;
  gap: 10px;

  border-radius: 10px;
  background: #182126;
}

/* .table-main .table-content .table-first .table-item .table_item_heading p {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 157px;
} */

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_heading
  .name-bet {
  box-sizing: border-box;
  min-width: 306px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1024px) {
  .name-bet {
    box-sizing: border-box !important;
    min-width: 1px !important;
    width: auto !important;
  }
}

.table-main .table-content .table-first .table-item .table_item_heading h2 {
  color: #fff;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_heading
  .name-bet-cecond {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  box-sizing: border-box;
  width: 100%;

  max-width: 157px;
}

.name-bet-last {
  border: none;
  background: transparent;
  padding: 5px;
  cursor: pointer;
}

.table-main .table-content .table-first .table-item .table_item_rows {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: #2a3841;
}

.table-main .table-content .table-first .table-item .table_item_rows .item {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .one-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .one-item
  p {
  color: #fff;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .one-item
  p:first-child {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .one-item
  p:last-child {
  padding-top: 7px;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .two-item
  p {
  color: #fff;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 41px;
  text-align: start;
}

@media (max-width: 620px) {
  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .two-item
    p {
    margin-left: 0 !important;
  }
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .four-item
  p {
  display: flex;
  padding: 5px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: #fdb614;
  color: #2a3841;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 61px;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .five-item {
  display: flex;
  padding: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: #394953;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .five-item
  p {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .five-item
  span {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-style: normal;
  line-height: normal;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .five-item
  span:first-child {
  font-size: 12px;
  font-weight: 500;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .five-item
  span:last-child {
  font-size: 14px;
  font-weight: 700;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  button {
  background: transparent;
  border: none;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .six-item
  span {
  width: 75px;
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
}

.little-bit_longer {
  box-sizing: border-box;
  width: 75px;
}

.table-main
  .table-content
  .table-first
  .table-item
  .table_item_rows
  .item
  .one-item {
  width: 99px;
}

/* // second  */

.table-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
}

.table-right .first {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: #2a3841;
}

.table-right .first svg {
  width: 62px;
  height: 62px;
  aspect-ratio: 1/1;
}

.table-right .first span {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.table-right .first button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #fdb614;

  color: #0b1013;
  font-family: Barlow;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;

  border: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.table-right .first button:hover {
  background: #fff;
  color: #fdb614;
}

.table-right .second {
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid #72838c;
  background: url("/assetsFASGW/imagesFAaf/backgroundFAW/second-headingYSep.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.table-right .second span {
  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.table-right .second .rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.table-right .second .rows .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.table-right .second .rows .row p {
  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.table-right .second .rows .row b {
  display: flex;
  width: 93px;
  padding: 5px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #687f8d;
  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.row-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
}

@media (max-width: 1300px) {
  .table-main .table-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .table-main .table-content .table-first .table-item .table_item_heading h2,
  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_heading
    .name-bet-cecond
    h3 {
    color: #fff;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .table-right .first,
  .table-right .second {
    padding: 20px;
  }
}

@media (max-width: 880px) {
  .hidden,
  .hide {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .top-main .top-content .first {
    order: 2;
  }

  .top-main .top-content .second {
    order: 1;
  }

  .table-main .table-content .table-first .table-item .table_item_heading h2,
  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_heading
    .name-bet-cecond
    h3 {
    font-size: 13px;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .five-item
    p {
    color: #fff;
    text-align: center;
    font-family: Barlow;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .five-item
    span {
    font-size: 15px;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .one-item
    span {
    font-size: 12px;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .five-item,
  .one-item,
  .two-item,
  .three-item,
  .four-item,
  .five-item,
  .six-item {
    width: auto;
  }

  .table-main .table-content .table-first .table-item .table_item_rows .item {
    gap: 5px;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    svg {
    box-sizing: border-box;
    max-width: 17px;
    max-height: 17px;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .two-item
    p {
    width: auto;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .one-item
    p {
    font-size: 12px;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .one-item {
    width: auto;
  }

  .table-right .first {
    padding: 10px;
  }
}

.darken {
  background: #1e292f !important;
}

.footer {
  padding: 70px 20px;
  background: #2a3841;
}

.footer .footer_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  align-self: stretch;
}

.footer .footer_content .first {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 35px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer_content .first nav ul {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 547px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 547px;
}

@media (max-width: 1024px) {
  .footer .footer_content .first nav ul {
    max-width: 100%;
    width: auto;
  }
}

.footer .footer_content .first nav ul li a,
.footer .footer_content .first nav ul li button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;

  color: #fff;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  background: transparent;
  padding: 0;
}

.footer .footer_content .first .footer-images_first {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer .footer_content .first .first-footer-image {
  background-image: url("/assetsFASGW/iconsSDf/tippmixqhRs.webp");
  width: 130px;
  height: 31px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .footer_content .first .second-footer-image {
  background-image: url("/assetsFASGW/iconsSDf/cleverVzTW.webp");
  width: 53px;
  height: 47px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .footer_content .first .third-footer-image {
  background-image: url("/assetsFASGW/iconsSDf/tippixPROBYag.webp");
  width: 170px;
  height: 37px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .footer_content .second {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  width: 100%;

  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.second-list-li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.second-list-li p {
  color: #fff;
  font-family: Barlow;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer .second-images,
.footer .third-images {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 35px;
  flex-wrap: wrap;
}

.footer .second-images:first-child {
  max-width: 650px;
}

.footer .third-images {
  max-width: 262px !important;
  align-items: center;
  justify-content: center;
}

.footer-border-vertical {
  height: 95px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .third-part {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 310px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer .third-part span {
  color: #fff;
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer .third-part p {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

footer .third {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .third p {
  color: #fff;
  text-align: center;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1300px) {
  .footer .footer_content .first {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .footer {
    background: #2a3841;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer .footer_content .second {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer .second-images,
  .third-images {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 880px) {
  .footer .footer_content .first nav ul {
    width: auto;
  }

  .footer .footer_content .first nav ul li a,
  .footer .footer_content .first nav ul li button {
    font-size: 12px;
  }

  .footer-border-vertical {
    display: none;
  }
}

.adatkezeles .content {
  padding: 40px 20px 268px 20px;

  background: #1e292f;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  width: 100%;
  max-width: 1300px;
}

@media (max-width: 880px) {
  .adatkezeles .content {
    padding: 40px 20px;
    width: auto;
  }
}

@media (max-width: 1345px) {
  .adatkezeles .content {
    padding: 40px 20px;
    width: auto;
  }
}

.adatkezeles .content .krosh {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.adatkezeles .content .krosh a {
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.adatkezeles .content .krosh a:first-child {
  color: #fff;
}

.adatkezeles .content .krosh a:last-child {
  color: #fdb614;
}

.adatkezeles .content .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 25px;
}

.adatkezeles .content .links a {
  color: #fdb614;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.links-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.links-box h1,
.links-box p {
  color: #fff;
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.underline-border {
  border-bottom: 1px solid #fff;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contacts-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-box .little_heading {
  color: #fff;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contacts-box b {
  color: #fff;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.little-a {
  color: #fdb614;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: lowercase !important;
}

.gyik-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: 839px;
}

.gyik-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #2a3841;
}

.gyik-category-header {
  display: flex;
  width: 100%;
  padding: 20px 25px;
  justify-content: space-between;
  align-items: center;
  background: #55738a;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gyik-category-header:hover {
  background: #607d94;
}

.gyik-category-header span {
  color: #fff;
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.gyik-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gyik-category.active .gyik-category-header .gyik-arrow {
  transform: rotate(180deg);
}

.gyik-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.gyik-category.active .gyik-category-content {
  max-height: 3000px;
}

.gyik-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gyik-item:last-child {
  border-bottom: none;
}

.gyik-question {
  display: flex;
  width: 100%;
  padding: 18px 25px;
  justify-content: space-between;
  align-items: center;
  background: #2a3841;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;

  color: #fff;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gyik-question:hover {
  background: #334149;
}

.gyik-question span {
  color: #fff;
  font-family: Barlow;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.gyik-item.active .gyik-question .gyik-arrow {
  transform: rotate(180deg);
}

.gyik-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: #1e292f;
}

.gyik-item.active .gyik-answer {
  max-height: 1000px;
  padding: 20px 25px;
}

.gyik-answer p,
.gyik-answer li {
  color: #fff;
  font-family: Barlow;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.gyik-answer ul {
  margin: 15px 0 0 0;
  padding-left: 20px;
  list-style: disc;
}

.gyik-note {
  margin-top: 15px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
}

@media (max-width: 768px) {
  .gyik-category-header {
    padding: 15px 20px;
  }

  .gyik-category-header span {
    font-size: 17px;
  }

  .gyik-question {
    padding: 15px 20px;
  }

  .gyik-question span {
    font-size: 15px;
  }

  .gyik-answer p,
  .gyik-answer ul li {
    font-size: 14px;
  }

  .gyik-item.active .gyik-answer {
    padding: 15px 20px;
  }

  .gyik-answer p,
  .gyik-answer ul li {
    font-size: 14px;
  }

  .gyik-qa-block {
    margin-bottom: 20px;
  }
}

/* tailwind!!!  */

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

/* Justify Content */
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

/* Align Items */
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* Padding */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Margin */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 4px;
}

.m-2 {
  margin: 8px;
}

.m-3 {
  margin: 12px;
}

.m-4 {
  margin: 16px;
}

.m-5 {
  margin: 20px;
}

.m-6 {
  margin: 24px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-1 {
  margin-left: 4px;
  margin-right: 4px;
}

.mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}

.mx-3 {
  margin-left: 12px;
  margin-right: 12px;
}

.mx-4 {
  margin-left: 16px;
  margin-right: 16px;
}

.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Width */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-screen {
  width: 100vw;
}

/* Height */
.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-screen {
  height: 100vh;
}

/* Text Alignment */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

/* Font Weight */
.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Display */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.grid {
  display: grid;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* Border Radius */
.rounded {
  border-radius: 4px;
}

.rounded-md {
  border-radius: 6px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-xl {
  border-radius: 12px;
}

.rounded-2xl {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 9999px;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

/* Flex Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Flex Grow/Shrink */
.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.checkbox-label span {
  color: #fff;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.checkbox-label a {
  color: #f8a11d;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.auth-content p {
  display: flex;
  flex-direction: row !important;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin-top: 15px;
  padding-bottom: 15px;
}

.auth-login-link button {
  display: flex;
  flex-direction: row !important;
  gap: 10px;
  color: #f8a11d;
  font-family: Barlow;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
label {
  width: 100%;
}

/* =========================
   NOTIFICATION STYLES
========================= */
.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10000;
  animation: slideInRight 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.custom-notification.hide {
  opacity: 0;
  pointer-events: none;
}

.custom-notification.success {
  border-left: 4px solid #10b981;
}

.custom-notification.error {
  border-left: 4px solid #ef4444;
}

.custom-notification.info {
  border-left: 4px solid #3b82f6;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.notification-content svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.custom-notification.success svg {
  color: #10b981;
}

.custom-notification.error svg {
  color: #ef4444;
}

.custom-notification.info svg {
  color: #3b82f6;
}

.notification-content span {
  color: #1f2937;
  font-family: Barlow, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.notification-close:hover {
  color: #1f2937;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .custom-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }
}
/* ============================
   Cookie Settings Modal
============================ */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.cookie-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

/* POPUP CONTAINER - СКРОЛЛ ТОЛЬКО ЗДЕСЬ */
.cookie-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 746px;
  max-height: 90vh;

  padding: 0;
  background: #394953;

  overflow-y: auto; /* ✅ СКРОЛЛ ПЕРЕМЕЩЕН СЮДА */
  box-sizing: border-box;
}

/* ============================
   Header
============================ */
.cookie-modal-header {
  padding: 30px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.cookie-modal-logo {
  width: 219px;
  height: 29px;
  object-fit: contain;
}

.cookie-modal-header h2 {
  color: #fff;
  font-family: Barlow, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

/* ============================
   BODY (БЕЗ СКРОЛЛА)
============================ */
.cookie-modal-body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto; /* Убрать overflow */
  background: #394953;
  padding: 10px;
}

/* ============================
   Tabs Navigation
============================ */
.cookie-tabs-nav {
  width: 280px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  flex-shrink: 0;
}

.cookie-tab-btn {
  padding: 15px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin: 5px 0;
  display: flex;
  padding: 15px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: #616d75;
}

.cookie-tab-btn:hover {
  background: #f3f4f6;
  color: #374151;
}

.cookie-tab-btn.active {
  background: transparent;
  border-left: 7px solid #fdb614;

  color: #fff;
  font-family: Barlow;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* ============================
   Tabs Content
============================ */
.cookie-tabs-content {
  flex: 1;
  padding: 30px;
  min-height: 0;
  overflow: visible; /* Убрать автоскролл */
}

.cookie-tab-pane {
  display: none;
}

.cookie-tab-pane.active {
  display: block;
}

.cookie-tab-pane h3 {
  margin: 0 0 20px 0;
  color: #fff;
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cookie-tab-pane p {
  color: #fff;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 15px 0;
}

.cookie-tab-pane a {
  color: #fdb614;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.cookie-link {
  color: #3b82f6;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-link:hover {
  color: #1e40af;
}

/* ============================
   Divider
============================ */
.cookie-divider {
  height: 1px;
  background: white;
  width: 100%;
}

/* ============================
   Footer
============================ */
.cookie-modal-footer {
  padding: 25px 30px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.cookie-btn {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;

  color: #fff;
  font-family: Barlow;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cookie-btn-reject {
  border: 1px solid #fff;
}

.cookie-btn-reject:hover {
  background: #f3f4f6;
  color: #1f2937;
  border-color: #9ca3af;
}

.cookie-btn-accept {
  background: #fdb614;
  border: none;
  color: #0b1013;
}

.cookie-btn-accept:hover {
  background: #da9f16;
}

/* ============================
   Responsive
============================ */
@media (max-width: 800px) {
  .cookie-modal-content {
    width: 95%;
    max-height: 95vh;
  }
}

@media (max-width: 768px) {
  .cookie-modal-body {
    flex-direction: column;
  }

  .cookie-tabs-nav {
    width: 100%;
    border-right: none;
    border-left: 1px solid #ffcc00;
    display: grid;
    flex-direction: row;
    overflow-x: auto;
  }

  .cookie-tab-btn {
    padding: 12px 15px;
    margin: 0 5px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .cookie-tabs-content {
    padding: 20px;
  }

  .cookie-modal-header {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .cookie-modal-header h2 {
    font-size: 20px;
  }

  .cookie-modal-footer {
    padding: 15px 20px;
    gap: 10px;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
.screenreader {
  display: none !important;
}
@media (max-width: 370px) {
  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .five-item
    span:first-child {
    font-size: 10px;
    font-weight: 500;
  }

  .table-main
    .table-content
    .table-first
    .table-item
    .table_item_rows
    .item
    .five-item
    span:last-child {
    font-size: 14px;
    font-weight: 700;
  }
}
