/* notifications and cookies*/
.notif-alert {
  background-image: url("../img/icons/notif-vector.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  left: 20px;
  top: 100px;
  z-index: 15;

  height: 100%;
  width: 100%;
  max-width: 500px;
  max-height: 209px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-content {
  width: 100%;
  padding: 20px 40px;
  margin-left: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.notif-content img {
  align-self: start;
  margin-bottom: 15px;
}

.notif-content p {
  margin-bottom: 25px;
}

.notif-alert button {
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 20px;
}

.notif-btns {
  display: flex;
  align-items: center;
}

#btn-reject-notif {
  border: 1.5px solid var(--black);
  background: var(--white);
  color: var(--black);
  margin-right: 5px;
}

#btn-reject-notif:hover {
  border: 1.5px solid var(--grey);
  background: var(--grey);
}

/* cookies */
.cookies-notice {
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 18px 20px 25px 20px;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 15;
}

.cookies-content {
  margin: 0 auto;
  width: 100%;
  max-width: 790px;
  height: auto;
}

.cookies-content h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.cookies-content p {
  color: #fff;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 12px;
}

.cookies-content button {
  font-size: 16px;
  display: inline-block;
  min-height: 40px;
  padding: 0 20px;
}

#btn-accept-cookies {
  border: none;
  background: var(--white);
  color: var(--black);
  margin-right: 20px;
}

#btn-cookies-adjust {
  border: 1.5px solid var(--white);
  color: var(--white);
}

#btn-accept-cookies:hover {
  background: var(--black);
  color: var(--white);
}

#btn-cookies-adjust:hover {
  border: 1.5px solid var(--black);
  background: var(--grey);
  color: var(--black);
}
.nt-unread {
  font-weight: 700;
}
.nt-read {
  font-weight: normal !important;
}
