.ConfirmCookie__dialog {
  position: fixed;
  z-index: 1000;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 11px 16px;
  background-color: #f8f8f8;
  display: flex;
}
@media (min-width: 1024px) {
  .ConfirmCookie__dialog {
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
  }
}
.ConfirmCookie__dialog--hidden {
  transform: translateY(500px);
}
.ConfirmCookie__message {
  margin-right: 1rem;
  color: #707070;
  font-size: 11px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .ConfirmCookie__message {
    font-size: 14px;
    line-height: 1.5;
  }
}
.ConfirmCookie__message a {
  color: #707070;
  text-decoration: underline;
}
.ConfirmCookie__message a:active,
.ConfirmCookie__message a:hover {
  text-decoration: none;
  color: #0b0b0b;
}
.ConfirmCookie__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ConfirmCookie__controls .ConfirmCookie__agree-button {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  appearance: none;
  border: 0;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-indent: -99px;
  padding: 0;
}
@media (min-width: 1024px) {
  .ConfirmCookie__controls .ConfirmCookie__agree-button {
    text-indent: unset;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.06);
    font-weight: 400;
    text-decoration: none;
    padding: 4px 28px;
    font-size: 13px;
    line-height: 1.5;
    color: #707070;
  }
}
.ConfirmCookie__controls .ConfirmCookie__agree-button::after,
.ConfirmCookie__controls .ConfirmCookie__agree-button::before {
  content: '';
  width: 11px;
  height: 1px;
  border-radius: 1px;
  background-color: #707070;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(45deg);
  position: absolute;
}
@media (min-width: 1024px) {
  .ConfirmCookie__controls .ConfirmCookie__agree-button::after,
  .ConfirmCookie__controls .ConfirmCookie__agree-button::before {
    display: none;
  }
}
.ConfirmCookie__controls .ConfirmCookie__agree-button::before {
  transform: rotate(-45deg);
}
.ConfirmCookie__controls .ConfirmCookie__agree-button:hover {
  background-color: rgba(0, 0, 0, 0.16);
}
.ConfirmCookie__controls .ConfirmCookie__agree-button:active {
  background-color: rgba(0, 0, 0, 0.24);
}
.hidden-info:after {
  content: attr(data-title);
}
