.cookiesWrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 47.9375em) {
  .cookiesWrap .cookies {
    max-height: 95%;
    overflow: auto;
    max-width: 90%;
  }
}
.cookies {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 48em;
  padding: 2em 2.5em;
  max-height: 100%;
  overflow: auto;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
  color: #000;
  font-size: 0.8em;
  accent-color: var(--color__text);
}
.cookies a {
  text-decoration: underline;
}
.cookies a:hover {
  color: #fff;
}
#cookiesSave {
  display: none;
}
.cookiesWrap .cookies--active .cookies__options {
  max-height: 50em;
}
.cookiesWrap .cookies--active #cookiesConfirm {
  display: none;
}
.cookiesWrap .cookies--active #cookiesSave {
  display: inline-block;
}
.cookies__inner > * + *,
.cookies__intro > * + * {
  margin-top: 0.7em;
}
.cookiesWrap .cookies__options {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 0.8s;
}
.cookies__title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--color__text);
  line-height: 1.2;
  margin-bottom: 0.6em;
}
.cookiesSettings {
  margin-bottom: 2em;
  padding-left: 1em;
}
.cookiesSettings #cookiesSettings {
  margin-top: 1em;
}
.cookiesSettings button {
  padding: 0.7em 1.5em;
  min-width: auto;
}
.cookies__question {
  font-weight: bold;
}
.cookies__question small {
  font-weight: normal;
}
.cookies__options {
  accent-color: var(--color__text);
}
.cookies__options > * + * {
  margin-top: 0.3em;
}
.cookies__option {
  display: flex;
  align-items: flex-start;
}
.cookies__option input {
  margin-top: 0.4em;
}
.cookies__option label {
  margin-left: 0.5em;
}
.cookies__option b {
  display: block;
  color: var(--color__text);
}
.cookies__buttons {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 2em;
}
.cookies__buttons button {
  padding: 0.7em 1.5em;
  min-width: auto;
  margin-bottom: 0.5em;
}
.cookies__buttons button.b--red {
  border: 1px solid var(--color__text);
  transition: background 0.6s, border 0.6s;
}
.cookies__buttons button.b--red:hover {
  border: 1px solid var(--color__text);
}
.cookies__btnMore {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cookies__btnMore .icon {
  margin-left: 1em;
  width: 1em;
  transition: transform 0.4s;
  
  width: 0.7em;
  height: 0.7em;
  transform: scale(1.2);
}
.cookies__moreInfo a:hover {
  color: var(--color__text);
}
.cookies--active .cookies__btnMore .icon {
  transform: rotate(180deg) scale(1.2);
}
