* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#offCanvasCookies{
  background: rgba(0, 0, 0, 0.70);
}
.cookie-content {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  width: 900px;
}
/* a {
  color: inherit;
  text-decoration: none;
} */
.cookie-accept {
  height: 55px;
  width: 225px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  border: 1px solid var(--white);
  background: var(--black);
  border-radius: 0 !important;
}
.cookie-accept:hover {
  color: var(--black);
  background: var(--white);
}
.cookie-decline {
  height: 55px;
  width: 225px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  background: var(--black);
  border: 1px solid var(--white);
  border-radius: 0 !important;
}
.cookie-decline:hover {
  color: var(--black);
  background: var(--white);
}
.cookie-content p a {
  color: var(--white);
}
  
@media screen and (max-width: 576px) {
  #offCanvasCookies{
    background: rgba(0, 0, 0, 0.80);
  }
  .cookie-content {
    font-weight: 400;
    font-size: 14px!important;
    line-height: normal;
    letter-spacing: 0.7px;
  }
  .cookie-content p{
    text-align:left!important;
    margin-bottom: 0!important;
  }
  .cookie-accept {
    width: 165px;
  }

  .cookie-decline {
    width: 165px;
  }
}