.cookies {
  position: fixed;
  z-index: 100;
  bottom: 0;
  width: 100%;
  background-color: var(--color-black);
  padding: 28px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-white-2);
  font-size: var(--font-size-s);
}
.cookies._visible {
  display: flex;
}
@media screen and (max-width: 900px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__content {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 900px) {
  .cookies__content {
    flex-direction: column;
    gap: 16px;
  }
}
.cookies__close {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-color: var(--color-blue-3);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.cookies__close:after {
  content: "";
  position: absolute;
  top: 45%;
  left: 25%;
  z-index: 1;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-white);
  transform: rotate(45deg);
}
.cookies__close:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 25%;
  z-index: 1;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-white);
  transform: rotate(-45deg);
}