#zh-cookie-banner {
  position: fixed;
  bottom: 8px;
  left: 8px;
  z-index: 10000;
  font-family: 'Raleway',sans-serif;
}

#zh-cookie-banner.hidden {
  display: none;
}

.zh-cookie-content {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 500;
  color: var(--black);
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  width: min-content;
  max-width: 400px;
}

.zh-policy {
  color: rgba(246,62,124,1);
}

.zh-cookie-buttons {
  display: flex;
  flex-direction: row;
}

.zh-cookie-buttons__button {
  display: flex;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  transition: background-color 0.15s ease-in-out 0s;
  white-space: nowrap;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(38, 33, 33, 0.13);
  color: rgb(246, 62, 124);
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;

  font-size: 0.875rem;
  line-height: 20px;
  font-weight: 500;
  padding: 0px 24px;
  margin-top:16px;
}

.zh-cookie-buttons__button.primary {
  background-color: rgb(246, 62, 124);
  color: rgb(255, 255, 255);
  margin-left: 8px;
}

/* hubspot's message box has a ridiculous z-index so this makes it possible to overlay if the cookie banner is present */
#hubspot-messages-iframe-container {
  z-index: 99!important;
}