/* cookies */
.cookie-card {
  max-width: 320px;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.251);
  border: 1px solid #808080;
  position: fixed;
  left: 3%;
  bottom: 3%;
  z-index: 99;
}
.cookie-card-title {
  font-weight: 600;
  color: var(--text-color-primary);
}
.cookie-card-description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-color-secondary);
}
.cookie-card-description a {
  --tw-text-opacity: 1;
  color: rgb(59 130 246);
}
.cookie-card-description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.cookie-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}
.pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31 41 55);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.pref:hover {
  color: rgb(156 163 175);
}
.pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.accept {
  font-size: 0.86rem;
  line-height: 1rem;
  background-color: var(--main-color);
  font-weight: 500;
  border-radius: 0.5rem;
  color: var(--white);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.accept:hover {
  background-color: var(--hover-color);
  color: var(--black);
  border: 1px solid var(--main-color);
}
.accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}