.ooptlo-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.4;
  z-index: 99999998;
  box-sizing: border-box;
}
.ooptlo-consent-overlay.ooptlo-consent-hidden {
  display: none;
}
.ooptlo-consent-box {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 440px;
  max-width: calc(100vw - 48px);
  box-sizing: border-box;
  z-index: 99999999;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #f4f4f4;
  padding: 20px 26px;
  box-shadow: 0 -1px 10px 0 rgba(172, 171, 171, 0.3);
}
.ooptlo-consent-box.ooptlo-consent-hidden {
  display: none;
}
.ooptlo-consent-box .ooptlo-consent-text {
  color: #212121;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 16px 0;
}
.ooptlo-consent-box .ooptlo-consent-text p {
  margin: 0;
  color: inherit;
}
.ooptlo-consent-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ooptlo-consent-btn {
  font-size: 14px;
  font-family: inherit;
  line-height: 24px;
  padding: 8px 16px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  border: 2px solid transparent;
  transition: opacity 0.2s;
}
.ooptlo-consent-btn:hover {
  opacity: 0.85;
}
.ooptlo-consent-btn-reject {
  color: #868686;
  background: transparent;
  border-color: #868686;
}
.ooptlo-consent-btn-accept {
  color: #ffffff;
  background: #868686;
  border-color: #868686;
}
@media (max-width: 576px) {
  .ooptlo-consent-box {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 6px 6px 0 0;
    padding: 20px 24px;
  }
}
@media (max-width: 440px) {
  .ooptlo-consent-box {
    padding: 20px 16px;
  }
  .ooptlo-consent-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .ooptlo-consent-btn {
    width: 100%;
    margin: 0;
  }
  .ooptlo-consent-btn-accept { order: 1; }
  .ooptlo-consent-btn-reject { order: 2; }
}
@media (max-width: 352px) {
  .ooptlo-consent-box .ooptlo-consent-text {
    font-size: 12px;
    line-height: 20px;
  }
  .ooptlo-consent-btn { font-size: 12px; }
}