#cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  background: #f9f9f9;
  padding: 16px;
  /* border-top: 1px solid #ccc;  */
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  margin: auto;

  width: 852px;
  height: 92px;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px 16px;
  box-shadow: rgba(151, 151, 151, 0.5) 0px 1px 4px 0px;
  background-color: rgb(255, 255, 255);
}
#cookie-consent p {
  line-height: 18px;
  margin-bottom: 0px;
  height: 100%;
  width: 690px;
  font-size: 12px;
  color: rgb(0, 0, 0);
  word-break: break-word;
  overflow-wrap: break-word;
  display: inline-block;
    vertical-align: top;
}
#cookie-consent a {
  color: rgb(0, 0, 0);
  text-decoration: underline!important;
}
#cookie-accept {
  line-height: 21px;
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
  padding-left: 4rem;
      background: none;
    border: none;
}



@media (max-width: 852px) {
  #cookie-consent {
    width: 100%;
    height: auto;
    flex-direction: column;
    bottom: 0;
    padding: 10px;
  }

  #cookie-consent p {
    width: 100%;
    margin-bottom: 36px;
    font-size: 12px;
  }

  #cookie-accept {
    padding: 15px 0;
  }
}