@import url("root_simple.css");

.cookie-notification {
  display: flex;
  position: fixed;
  bottom: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  background-color: var(--color-header-dark);
  padding: 10px;
  width: 100%;
  color: var(--color-invert-light);
  font-size: 14px;
  font-family: Helvetica, Verdana, Sans;
  text-align: center;
}
.cookie-notification p {
  margin: 0;
  width: 50%;
}
.cookie-notification .cookie-info {
  cursor: pointer;
  color: var(--color-highlight);
  text-decoration: underline;
}
.cookie-notification .cookie-info:hover {
  color: var(--color-benext-green);
}
.cookie-notification .cookie-info:visited {
  color: var(--color-benext-green);
}
.cookie-notification ul.cookie-buttons {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cookie-notification ul.cookie-buttons li {
  flex: 0 0 auto;
}
.cookie-notification button {
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: var(--color-highlight);
  padding: 10px 2px;
  color: white;
  font-size: 14px;
  white-space: nowrap;
}
.cookie-notification button:hover {
  background-color: var(--color-benext-green);
}
.hidden {
  display: none;
}
@media only screen and (max-width: 800px) {
  .cookie-notification {
    flex-wrap: wrap;
    margin-left: 0;
    width: fit-content;
    max-width: 100%;
  }
  .cookie-notification p {
    flex: 1 1 auto;
    margin: 0;
    padding: 5px 10px 5px 10px;
    font-size: 12px;
  }
  .cookie-notification .cookie-info {
    flex: 0 0 auto;
    font-size: 12px;
    white-space: nowrap;
  }
  .cookie-notification ul.cookie-buttons {
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    width: 100%;
    text-align: center;
  }
  .cookie-notification ul.cookie-buttons li {
    width: 100%;
    text-align: center;
  }
  .cookie-notification button {
    margin: 0 auto;
    width: 60%;
    font-size: 12px;
  }
}
@media only screen and (width: 412px), only screen and (height: 1024px) {
  .cookie-notification {
    flex-wrap: wrap;
    margin-left: 0;
    max-width: 100%;
  }
  .cookie-notification ul.cookie-buttons {
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    width: 100%;
    text-align: center;
  }
  .cookie-notification button {
    flex: 0 0 auto;
    margin: 0 auto;
    width: 60%;
    font-size: 12px;
  }
  .cookie-notification ul.cookie-buttons li {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (width: 915px), only screen and (height: 412px) {
  .cookie-notification button {
    padding: 5px 10px;
  }
}
@media only screen and (width: 912px), only screen and (height: 1368px) {
  .cookie-notification p {
    padding: 5px 20px 5px 10px;
  }
}
@media only screen and (width: 1180px), only screen and (height: 820px) {
  .cookie-notification .cookie-info {
    flex: 0 0 auto;
    font-size: 12px;
    white-space: nowrap;
  }
  .cookie-notification ul.cookie-buttons {
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    width: 95%;
    text-align: center;
  }
  .cookie-notification ul.cookie-buttons li {
    padding: 0px 10px;
    width: 100%;
    text-align: center;
  }
  .cookie-notification button {
    flex: 0 0 auto;
    margin: 0 auto;
    width: 60%;
    font-size: 12px;
  }
}
@media only screen and (width: 1280px), only screen and (height: 853px) {
  .cookie-notification {
    flex-wrap: wrap;
    margin-left: 0;
    max-width: 100%;
  }
  .cookie-notification p {
    padding: 5px 20px 5px 20px;
  }
}
@media only screen and (width: 540px), only screen and (height: 720px) {
  .cookie-notification p {
    width: 95%;
  }
}
@media only screen and (width: 1024px), only screen and (height: 768px) {
  .cookie-notification {
    width: 100%;
  }
}
