:root {
  --cp-background-value: var(--cp-background, rgba(0, 0, 0, 0.87));
  --cp-text-color-value: var(--cp-text-color, #fff);
  --cp-text-color-primary-value: var(--cp-text-color-primary, #ffd900);
  --cp-accept-background-value: var(--cp-accept-background, transparent);
}

.cookie-policy-plate {
  position: fixed;
  bottom: 0;
  background: var(--cp-background-value);
  z-index: 9999;
  font-size: 14px;
  color: var(--cp-text-color-value);
  width: 100%;
  line-height: 18px;
}
.cookie-policy-plate__content {
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-policy-plate__link {
  margin-left: 1rem;
  color: var(--cp-text-color-value);
  text-decoration: underline;
}
.cookie-policy-plate__link:hover {
  color: var(--cp-text-color-value);
  text-decoration: none;
}
.cookie-policy-plate__accept {
  cursor: pointer;
  border: 1px solid var(--cp-text-color-value);
  border-radius: 5px;
  color: var(--cp-text-color-primary-value);
  background: var(--cp-accept-background-value);
  padding: 6px 13px;
  text-decoration: none;
}
