#rt-cookie-banner {
  display: none;
}
.rt-cookie-banner {
  position: fixed;

  bottom: 24px;
  left: 24px;
  right: 24px;

  background: rgba(20, 20, 20, 0.96);

  backdrop-filter: blur(12px);

  border-radius: 16px;

  padding: 24px;

  z-index: 999999;

  color: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.rt-cookie-content {
  display: flex;

  justify-content: space-between;

  gap: 24px;

  align-items: center;
}

.rt-cookie-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.rt-cookie-buttons button,
.rt-cookie-modal button {
  border: 0;

  border-radius: 10px;

  padding: 12px 18px;

  cursor: pointer;
}

#rt-accept-all,
#rt-save-preferences {
  background: #fff;

  color: #000;
}

#rt-reject,
#rt-open-settings {
  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: #fff;
}

.rt-cookie-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 9999999;
}

.rt-cookie-modal-inner {
  background: #fff;

  border-radius: 18px;

  padding: 32px;

  width: 90%;

  max-width: 520px;
}
