<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gdpr-popup {
  width: calc(100% - 60px);
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 25px;
  text-align: left;
  position: fixed;
  bottom: 25px;
  left: calc(50% - 15px);
  transform: translateX(-50%);
  max-width: 334px;
  border-radius: 12px;
  z-index: 3;
  gap: 10px;
  margin: 0 15px;
}

.gdpr-popup h1 {
  font-size: 28px;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 10px;
  color: black;
}

.gdpr-popup-message {
  font-size: 14px;
  display: inline-block;
  word-wrap: break-word;
  max-width: 100%;
  color: rgb(69 81 90);
  font-weight: 400;
  opacity: .8;
  margin: 0 0 15px;
}

.gdpr-btn {
  border: none;
  cursor: pointer;
  padding: 15px 15px;
  border-radius: 9px;
  font-size: 12px;
  transition: background-color 0.3s ease;
  color: #fff;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid transparent;
  flex: 1 1 33%;
}

.gdpr-customize-btn {
  background: #fff;
  border: 2px solid #310B0B;
  color: rgb(12 30 48);
}

.gdpr-agree-btn {
  color: white;
  background: #29476a;
}

.gdpr-popup&gt;div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 420px) and (min-width: 320px) {
  .gdpr-popup-message {
      max-height: 40vh;
      font-size: 13px;
  }

  .gdpr-btn {
      padding: 10px;
      font-size: 11px;
  }

  .gdpr-popup h1 {
      font-size: 16px;
  }

  .gdpr-popup {
      padding: 10px;
  }
}

.gdpr-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}

.gdpr-popup-close&gt;svg {
  width: 30px;
  height: 30px;
}

.gdpr-options-panel {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 150px;
  left: calc(50% - 15px);
  transform: translateX(-50%);
  width: auto;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  border-radius: 10px;
  max-width: 300px;
  width: calc(100% - 60px);
  margin: 0 15px;
}

.gdpr-options-panel .center-text {
  font-size: 19px;
  font-weight: 600;
}

.gdpr-options-panel label {
  margin: 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: rgba(12, 30, 48, 0.1);
  padding: 15px;
  border-radius: 12px;
}

.gdpr-options-panel label svg {
  width: 15px;
  height: 15px;
}

.gdpr-options-panel label&gt;div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 10px;
}

.gdpr-options-panel label input[type="checkbox"] {
  display: none;
}

.gdpr-options-panel label input[type="checkbox"]+.toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  cursor: pointer;
}

.gdpr-options-panel label input[type="checkbox"]+.toggle:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #310B0B;
  left: 2px;
  transition: all 0.3s ease;
}

.gdpr-options-panel label input[type="checkbox"]:checked+.toggle {
  background-color: rgb(12 30 48);
}

.gdpr-options-panel label input[type="checkbox"]:checked+.toggle:before {
  left: 22px;
}

.gdpr-submit-btn {
  background: #fff;
  border: 2px solid #310B0B;
  color: rgb(12 30 48);
}

.hidden {
  display: none !important;
}

.center-text {
  text-align: left;
  margin-bottom: 35px;
  font-size: 25px !important;
}

.align-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.align-center button {
  padding: 15px 30px;
  font-size: 15px;
}

.gdpr-decline-btn {
  color: #222;
}</pre></body></html>