.bx-cookie-consent[hidden] {
  display: none !important;
}

.bx-cookie-consent {
  position: fixed;
  z-index: 999999;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 16px;
  background: #fff;
  color: #4f5968;
  box-shadow: 0 -7px 24px rgba(0, 0, 0, .2);
}

.bx-cookie-consent__inner {
  width: min(100%, 1000px);
  margin-inline: auto;
  text-align: center;
}

.bx-cookie-consent h2 {
  margin: 0 0 10px;
  color: #232323;
  font-size: 19px;
  font-weight: 600;
}

.bx-cookie-consent p {
  margin: 0;
  color: #687486;
  font-size: 13px;
  line-height: 1.6;
}

.bx-cookie-consent a {
  color: #343434;
  font-weight: 600;
  text-decoration: underline;
}

.bx-cookie-consent__actions {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 700px);
  margin: 17px auto 0;
}

.bx-cookie-consent__actions button {
  min-width: 130px;
  min-height: 38px;
  padding: 8px 22px;
  border: 0;
  border-radius: 0;
  background: #777;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.bx-cookie-consent__actions button[data-bx-cookie-accept] {
  background: #606060;
}

.bx-cookie-consent__actions button:hover {
  background: #262626;
}

@media (max-width: 600px) {
  .bx-cookie-consent {
    padding: 18px 16px;
  }

  .bx-cookie-consent__actions {
    gap: 10px;
  }

  .bx-cookie-consent__actions button {
    width: 50%;
    min-width: 0;
  }
}
