.external-content-host {
  position: relative;
  min-height: var(--external-content-min-height, 320px);
}

.external-content-frame {
  display: block;
  width: 100%;
  max-width: 100%;
}

.external-content-frame[hidden] {
  display: none;
}

.external-content-consent {
  box-sizing: border-box;
  color: #222;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: var(--external-content-min-height, 320px);
  padding: 20px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.external-content-consent__notice {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.external-content-consent__button {
  color: #fff;
  background: #35486f;
  border: 0;
  border-radius: 4px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.external-content-consent__button:hover {
  background: #243553;
}

.external-content-consent__button:focus-visible {
  outline: 3px solid #f2c94c;
  outline-offset: 3px;
}

.external-content-consent__button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.external-content-consent__status {
  min-height: 1.2em;
  font-size: 13px;
  line-height: 1.2;
}

.external-content-consent--widget {
  z-index: 99999;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 36px));
  min-height: 0;
  padding: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.external-content-consent--widget .external-content-consent__notice {
  font-size: 13px;
}

.external-content-consent--widget [data-external-script] {
  display: none;
}

@media screen and (max-width: 479px) {
  .external-content-consent {
    padding: 14px;
  }

  .external-content-consent__notice {
    font-size: 13px;
  }

  .external-content-consent--widget {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }
}
