.cookies {
  display: none;
  position: fixed;
  left: 10px;
  z-index: 199;
  bottom: 10px;
  transform: translateX(130%);
  max-width: 520px;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 5px;
  transition: transform 0.5s ease-in-out;
  border: 1px solid #EB5757;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.cookies.show {
  display: block;
  transform: translateX(0%);
}
@media (max-width: 768px) {
  .cookies {
    bottom: 0;
    left: 0;
    border-radius: 0;
  }
}

.cookies__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.cookies__button {
  display: inline-block;
  background-color: #EB5757;
  border: 1px solid #EB5757;
  color: #ffffff;
  text-decoration: none;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  text-align: center;
  font-size: 16px;
  line-height: 210%;
  border-radius: 0.25rem;
  cursor: pointer;
}
.cookies__button:hover {
  background-color: transparent;
  color: #EB5757;
}
