.cookie-consent-popup {
  display: flex;
  position: fixed;
  bottom: 2%;
  left: 4%;
  width: 489px;
  z-index: 10000;
  right: auto;
  min-height: 200px;
  flex-direction: column;
  align-items: center;
  background: var(--Base-colors-Background-Card, #fff);
  box-shadow: 0 0 32px 0 rgba(34, 34, 34, 0.05);
}
.cookie-banner-container {
  display: flex;
  padding: var(--spacing-l-px, 32px) var(--spacing-m-px, 24px);
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-l, 32px);
  align-self: stretch;
}
.cookie-consent-actions {
  display: flex;
  padding: var(--spacing-s-px, 16px) var(--spacing-m-px, 24px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
}
.consent-buttons-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-l-px, 32px);
  align-self: stretch;
}
.consent-buttons {
  align-self: stretch;
}
.consent-button-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-l-px, 32px);
  align-self: stretch;
  width: 100%;
}
.settings-page {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .settings-page {
    width: 100%;
  }
}
.settings-page.open {
  right: 0;
}
.settings-content {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}
.settings-footer {
  padding: 20px;
  text-align: left;
  border-top: 1px solid #e0e0e0;
}
.settings-header {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.close-settings-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  float: right;
  color: #333;
}
.expandable-section {
  margin-bottom: 10px;
}
.expandable-header {
  background: #f0f0f0;
  border: none;
  padding: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: var(--body-text-default-default-size-font-size-rem);
  font-variation-settings: var(--body-text-default-font-variation-settings);
  font-family: var(--body-text-default-font-family);
  font-weight: bold;
}
.manage-pref-title {
  border: none;
  padding: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: var(--body-text-default-default-size-font-size-rem);
  font-variation-settings: var(--body-text-default-font-variation-settings);
  font-family: var(--body-text-default-font-family);
  font-weight: bold;
}
.expandable-content {
  padding: 10px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
}
.switch {
  position: relative;
  align-items: right;
  display: inline-block;
  width: 34px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-settings {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider-settings:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider-settings {
  background-color: #000;
}
input:checked + .slider-settings:before {
  transform: translateX(14px);
}
.toggle-container {
  display: inline-block;
  float: right;
}
.necessary-text {
  color: #000;
  float: right;
  margin-left: auto;
}
.margin-bottom-table {
  margin-bottom: 5%;
}
.cookie-list-table table {
  width: 100%;
  border-collapse: collapse;
}
.cookie-list-table thead {
  background-color: #fff;
}
.cookie-list-table thead th {
  font-weight: bold;
  text-align: left;
  padding: 10px;
  border-bottom: 2px solid #ddd;
}
.cookie-list-table tr {
  background-color: #fff;
}
.cookie-list-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.cookie-list-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 768px) {
  .cookie-consent-popup {
    width: 100%;
    border-radius: 0;
  }
  .cookie-consent-actions {
    flex-direction: column;
    gap: 12px;
  }
  .consent-buttons {
    width: 100%;
  }
  .settings-page {
    padding: 0;
  }
  .settings-header {
    padding: 12px;
  }
  .settings-content {
    padding: 12px;
  }
  .settings-footer {
    padding: 12px;
  }
}



