/* =========================================================
   GambleXpress.com
   GEU Cookie Consent Banner
========================================================= */

.geu-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  background: #111;
  color: #fff;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;

  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.geu-cookie-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px;

  flex-wrap: wrap;
}

.geu-cookie-text {
  flex: 1 1 560px;

  font-size: 14px;
  line-height: 1.5;
}

.geu-cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.geu-cookie-text a:hover,
.geu-cookie-text a:focus {
  text-decoration-thickness: 2px;
}

.geu-cookie-actions {
  display: flex;
  gap: 10px;

  flex: 0 0 auto;
}

.geu-cookie-btn {
  appearance: none;

  border: 0;
  border-radius: 10px;

  padding: 10px 16px;

  font: inherit;
  font-weight: 700;

  cursor: pointer;

  background: #ff9900;
  color: #111;
}

.geu-cookie-btn:hover,
.geu-cookie-btn:focus {
  filter: brightness(1.08);
}

.geu-cookie-btn-light {
  background: #f3f3f3;
  color: #111;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .geu-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .geu-cookie-inner {
    padding: 12px;
  }

  .geu-cookie-actions {
    width: 100%;
  }

  .geu-cookie-btn {
    flex: 1 1 auto;
  }

}