#cookie-consent {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 0 20px 0;
  width: 100%;
  color: #fff;
  border-top: 0;
  z-index: 101;
  font-size: 1em;
}

#bclose-popup-policy {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

#bclose-popup-policy:hover {
  transform: scale(1.05);
}

#cookie-consent > p {
  max-width: 600px;
  margin: 10px auto;
  text-align: left;
  padding: 10px;
}

#cookie-consent > p a {
  color: #fff;
  font-weight: bold;
}
#cookie-consent > p a:hover {
	text-decoration: underline;
}
#cookie-consent > p a:visited {
  color: #fff;
}

#cookie-consent > h3 {
  font-weight: 700;
  font-size: 30px;
  margin-top: 13px;
  text-align: center;
  color: #fff;
}

#cookie-consent .center-buttons {
  width: fit-content;
  margin: 0 auto;
}

#cookie-consent .center-buttons button {
  color: #fff;
  padding: 10px;
  /* padding-top: 15px; */
  text-decoration: none;
  margin: 5px 10px;
  background: #367c2b;
  cursor: pointer;
  border: 0;
  outline: none;
  font-family: "Open Sans", "Libre Franklin", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

#cookie-consent .center-buttons button:hover {
	color: #000;
}

@media only screen and (max-width: 400px) {
  #cookie-consent {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: initial;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    padding-bottom: 30px;
    height: auto;
  }
  #cookie-consent > h3 {
    font-size: 32px;
    line-height: 36px;
    padding-top: 30px;
    margin-bottom: 10px;
  }

  #cookie-consent > p {
    font-size: 13px;
    margin: 10px 20px;
    max-height: 300px;
    overflow: auto;
  }

  #cookie-consent .center-buttons {
    display: flex;
    flex-direction: column;
  }

  #cookie-consent .center-buttons button {
    line-height: 20px;
    width: auto;
    cursor: pointer;
  }
}

#cookie-consent-edit-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}