:root {
  --size: 500;
}

@media screen and (min-height: 480px) {
  :root {
    --size: 900;
  }
}
@media screen and (min-height: 768px) {
  :root {
    --size: 900;
  }
}
.cookies {
  position: fixed;
  bottom: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  right: 50%;
  transform: translate(50%, 0);
  background: #000;
  max-width: calc(750 / var(--size) * 100 * var(--vh, 1vh));
  z-index: 100;
  pointer-events: auto;
  border: 1px solid #fff;
  border-radius: calc(15 / var(--size) * 100 * var(--vh, 1vh));
  padding: calc(25 / var(--size) * 100 * var(--vh, 1vh));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: cookies 4s;
}
.cookies__info {
  display: flex;
  gap: calc(36 / var(--size) * 100 * var(--vh, 1vh));
}
.cookies__icon {
  min-width: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  min-height: calc(50 / var(--size) * 100 * var(--vh, 1vh));
  width: calc(56 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(56 / var(--size) * 100 * var(--vh, 1vh));
}
.cookies__text {
  font-weight: 400;
  color: #fff;
  text-align: left;
  font-family: Roboto;
  font-style: normal;
  font-size: calc(16 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(22 / var(--size) * 100 * var(--vh, 1vh));
}
.cookies__buttons {
  display: flex;
  align-items: center;
  margin-top: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
}
.cookies__buttons button {
  border: none;
  outline: none;
  background: #80d207;
  color: #fff;
  padding: calc(16 / var(--size) * 100 * var(--vh, 1vh)) calc(32 / var(--size) * 100 * var(--vh, 1vh));
  border-radius: calc(150 / var(--size) * 100 * var(--vh, 1vh));
  cursor: pointer;
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(30 / var(--size) * 100 * var(--vh, 1vh));
}
.cookies__buttons a {
  color: rgb(183, 183, 183);
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  font-size: calc(18 / var(--size) * 100 * var(--vh, 1vh));
  line-height: calc(30 / var(--size) * 100 * var(--vh, 1vh));
  text-decoration: underline;
}
@media (max-width: 480px) {
  .cookies__buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
@media (max-width: 1025px), (min-width: 1026px) and (orientation: portrait) {
  .cookies {
    left: 50%;
    bottom: calc(50 / var(--size) * 100 * var(--vh, 1vh));
    max-width: 100%;
    width: 80vw;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .cookies {
    width: 92vw;
  }
}
@media (max-width: 360px) {
  .cookies__buttons {
    flex-direction: column;
  }
}

@keyframes cookies {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}