:root {
  --goldenYellow: #c79b24;
  --bg-beige: #f3e7d6;
  --text: #222;
  --background: #111111;
  --white: #ffffff;
  --grey: #191919;
  --yellow: rgb(236, 236, 76);
  --bgyellow: rgba(230, 230, 130, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
  color: var(--text);
}

button {
  border: 0;
  background: transparent;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-5 {
  gap: 1.25rem;
}

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

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

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

.w-full {
  width: 100%;
}

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

.mr-3 {
  margin-right: 0.75rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.p-4 {
  padding: 1rem;
}

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

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

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

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

.bg-\[\#f3e7d6\] {
  background: #f3e7d6;
}

.bg-goldenYellow {
  background: var(--yellow);
}

.cursor-pointer {
  cursor: pointer;
}

.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke;
}

.duration-75 {
  transition-duration: 75ms;
}

.hover\:bg-\[\#f3e7d6\]:hover {
  background: #f3e7d6;
}

.hover\:text-\[\#222\]:hover {
  color: #222;
}

.hover\:border-transparent:hover {
  border-color: transparent;
}

.cookies-eu-banner,
.cookies-eu-edit {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: 720px;
  width: calc(100% - 2rem);
  background: rgb(25, 25, 25, 0.9);
  color: var(--white);
  border: 1px solid rgba(232, 232, 232, 0.08);
  border-radius: 12px;
  padding: 1rem 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999;
}

.cookies-eu-banner {
  bottom: 1rem;
}

.cookies-eu-edit {
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.cookies-button-accept,
.cookies-button-decline,
.cookies-button-edit,
.cookies-button-save {
  background: var(--yellow);
  color: var(--text);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.05s;
}

.cookies-button-edit {
  display: block;
}

.cookies-button-accept:hover,
.cookies-button-decline:hover,
.cookies-button-edit:hover,
.cookies-button-save:hover {
  background: var(--bgyellow);
}

.cookies-button-accept:active,
.cookies-button-decline:active,
.cookies-button-edit:active,
.cookies-button-save:active {
  transform: translateY(1px);
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider,
.slider-tech {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d1d5db;
  transition: background 0.2s;
  border-radius: 999px;
}

.slider::before,
.slider-tech::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.switch input:checked+.slider {
  background: #10b981;
}

.switch input:checked+.slider-tech {
  background: #9ca3af;
}

.switch input:checked+.slider::before,
.switch input:checked+.slider-tech::before {
  transform: translateX(20px);
}

.switch input[disabled]+.slider-tech {
  background: #9ca3af;
  cursor: not-allowed;
  opacity: 0.9;
}

.round {
  border-radius: 999px;
}

.round::before {
  border-radius: 50%;
}

.cookies-eu-edit .bg-\[\#f3e7d6\] {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

@media (max-width: 480px) {

  .cookies-eu-banner,
  .cookies-eu-edit {
    padding: 0.875rem;
  }
}