/********** cookies **********/
.cookiesWrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
}
.cookies {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 44em;
  padding: 2em 2.5em;
  max-height: 100%;
  overflow: auto;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  background-color: #131c45;
  color: #fff;
  font-size: 0.8em;
  accent-color: #66cc00;
}
.cookies a {
  text-decoration: underline;
}
.cookies a:hover {
  color: #fff;
}
@media (min-width: 65em) {
  .cookies {
    font-size: 1em;
  }
}
#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: #fff;
}
.cookiesSettings {
  margin-bottom: 2em;
  padding-left: 3em;
}
.cookiesSettings #cookiesSettings {
  margin-top: 1em;
}
.cookies__question {
  font-weight: bold;
}
.cookies__question small {
  font-weight: normal;
}
.cookies__options {
  accent-color: #66cc00;
}
.cookies__options > * + * {
  margin-top: 0.3em;
}
.cookies__option {
  display: flex;
  align-items: flex-start;
}
.cookies__option input {
  margin-top: 0.4em;
  transform: scale(1.5);
}
.cookies__option label {
  margin-left: 0.5em;
}
.cookies__option b {
  display: block;
}
.cookies__buttons {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 2em;
}
.cookies__buttons button {
  min-height: 3em;
}
.cookies__btn--more .icon {
  transform: rotate(90deg);
  transition: transform 0.4s;
}
.cookies__moreInfo a:hover {
  color: #e4f3db;
}
.cookies--active .cookies__btn--more .icon {
  transform: rotate(-90deg);
}
