#clevo-cookie-consent-root,
#clevo-cookie-consent-root * {
  box-sizing: border-box;
}

#clevo-cookie-consent-root {
  color: #020617;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.clevo-cookie-fab {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  bottom: 16px;
  box-shadow: 0 10px 15px -3px rgba(2, 6, 23, .1), 0 4px 6px -4px rgba(2, 6, 23, .1);
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  left: 16px;
  padding: 0;
  position: fixed;
  transition: background-color .15s ease, border-color .15s ease;
  width: 44px;
  z-index: 80;
}

.clevo-cookie-fab:hover,
.clevo-cookie-fab:focus-visible {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.clevo-cookie-panel {
  background: #fff;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  bottom: 16px;
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, .2);
  left: 16px;
  max-width: 576px;
  position: fixed;
  right: auto;
  width: calc(100vw - 32px);
  z-index: 90;
}

.clevo-cookie-panel-inner {
  padding: 16px;
}

.clevo-cookie-main {
  display: grid;
  gap: 16px;
}

.clevo-cookie-intro {
  display: flex;
  gap: 12px;
}

.clevo-cookie-icon {
  align-items: center;
  background: #ecfdf5;
  border-radius: 6px;
  color: #047857;
  display: none;
  flex: 0 0 auto;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.clevo-cookie-icon-svg {
  height: 18px;
  width: 18px;
}

.clevo-cookie-icon .clevo-cookie-icon-svg {
  height: 20px;
  width: 20px;
}

.clevo-cookie-title {
  color: #020617;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}

.clevo-cookie-copy {
  color: #475569;
  font-size: 14px;
  line-height: 24px;
  margin: 4px 0 0;
  max-width: 768px;
}

.clevo-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.clevo-cookie-button {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  flex: 1 1 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  min-height: 40px;
  padding: 0 12px;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}

.clevo-cookie-button-primary {
  background: #047857;
  border: 0;
  color: #fff;
}

.clevo-cookie-button-primary:hover,
.clevo-cookie-button-primary:focus-visible {
  background: #065f46;
  color: #fff;
}

.clevo-cookie-button-secondary {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #020617;
}

.clevo-cookie-button-secondary:hover,
.clevo-cookie-button-secondary:focus-visible {
  background: #f8fafc;
  color: #020617;
}

.clevo-cookie-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-top: 16px;
  padding: 16px;
}

.clevo-cookie-options {
  display: grid;
  gap: 12px;
}

.clevo-cookie-option {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: block;
  margin: 0;
  padding: 16px;
}

.clevo-cookie-option-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.clevo-cookie-option-title {
  color: #020617;
  font-weight: 600;
}

.clevo-cookie-option input {
  accent-color: #047857;
  height: 16px;
  margin: 0;
  width: 16px;
}

.clevo-cookie-option-copy {
  color: #475569;
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-top: 8px;
}

.clevo-cookie-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .clevo-cookie-panel {
    width: 576px;
  }

  .clevo-cookie-panel-inner {
    padding: 20px;
  }

  .clevo-cookie-icon {
    display: flex;
  }

  .clevo-cookie-actions {
    justify-content: flex-end;
  }

  .clevo-cookie-button {
    flex: 0 0 auto;
  }

  .clevo-cookie-detail-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .clevo-cookie-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
