﻿.cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D3431;
  color: #FFFFFF;
  padding: 20px 32px;
  display: none;
  text-align: left;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
  font-size: 1.4rem;
  gap: 16px;
}
.cookieBanner-text {
  line-height: 1.5;
}
.cookieBanner-btnContainer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 16px;
}
.cookieBanner-link {
  color: #9CACA6;
  line-height: 1.5;
  white-space: nowrap;
}
.cookieBanner-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  text-decoration: underline;
  color: #FFFFFF;
  padding: 0;
  line-height: 1.5;
}
.cookieBanner-btn:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .cookieBanner {
    flex-direction: column;
    text-align: center;
  }
  .cookieBanner-btnContainer {
    align-items: center;
  }
}
