.cookies-msg {
  position: fixed;
  width: 80%;
  background-color: #ffffff;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 15px;
  display: none;
}

.cookies-msg.show {
  display: block;
}

.cookies-msg .cookies-txt {
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 20px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookies-msg .cookies-txt p {
  margin: 0;
}

.cookies-msg .cookies-btn {
  margin-left: 30px;
}

.cookies-msg .cookies-btn button {
  background-color: #111111;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 40px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 5px;
}

.cookies-msg .cookies-btn button:hover {
  transform: scale(0.9);
}

@media (max-width: 1440px) {
  .cookies-msg {
    width: 98%;
  }
  .cookies-msg .cookies-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
  }
  .cookies-msg .cookies-btn {
    margin-left: 0px;
    margin-inline: 1rem;
  }
}
