#cookieNotice {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 1rem;
  font-size: 1.3rem;
  line-height: 1.4rem;
  text-align: center;
  border-radius: 5px;
  background-color: var(--black);
  color: var(--white);
}
#cookieNotice p {
  width: 60%;
}
#cookieNotice .btns-container {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#cookieNotice .learn-more {
  font-size: 1.1rem;
  line-height: 1.5rem;
  text-decoration: underline;
  color: #d2d2d2;
}
#cookieNotice .learn-more:hover {
  color: var(--white);
}
.cookies-btn {
  width: 80px;
  margin-right: 2rem;
  padding: 6px 7px;
  color: var(--white);
  background-color: var(--highlight);
  border-radius: 10px;
}
.cookies-btn:hover {
  background-color:  var(btn-hover);
}

@media (max-width: 767px) {
  #cookieNotice {
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.2rem;
    border-radius: 0;
  }
  #cookieNotice p {
    width: 100%;
  }
  #cookieNotice .btns-container {
    width: 100%;
    margin: 0 0 0 10px;
  }
  #cookieNotice .learn-more {
    font-size: 0.9rem;
    line-height: 1.2rem;  
  }
  #cookieNotice .cookies-btn {
    margin-right: 10px;
  }
}

@media (max-width: 550px) {
  #cookieNotice {
    flex-direction: column;
  }
  #cookieNotice .btns-container {
    margin-top: 10px;
  }
}
