.osano-cm-widget {
  bottom: 15px;
  display: none;
}
.osano-cm-widget--position_right {
  right: 15px;
}

/* ---------------------------------------------------------------------------
 * Policy-link label override -> renders "Terms of Use".
 *
 * WHY THIS EXISTS
 * The policy link's label is not free text in Osano. It comes from
 * `config.policyLinkText`, a fixed-enum dropdown offering only:
 *
 *   - Privacy Policy
 *   - Cookie Notice
 *   - Cookie Policy
 *   - Data Storage Policy
 *   - Privacy Notice
 *
 * There is no Terms of Use option, so the label cannot be set correctly from
 * the dashboard.
 *
 * The `--hidden` rules matter: Osano hides its dialogs with
 * `opacity: 0; visibility: hidden`, not `display: none`, so the
 * `visibility: visible` below would otherwise leak this text out of a
 * dismissed banner.
 * ------------------------------------------------------------------------- */

.osano-cm-storage-policy {
  visibility: hidden;
  position: relative;
}
.osano-cm-storage-policy:after {
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  content: 'Terms of Use.';
  text-decoration: underline;
  cursor: pointer;
}
.osano-cm-dialog--hidden .osano-cm-storage-policy,
.osano-cm-dialog--hidden .osano-cm-storage-policy:after {
  display: none;
}

.osano-cm-dialog {
  font-size: 13px;
  padding: 1em;
}
.osano-cm-drawer-item.osano-cm-list__list-item:nth-child(5) {
  display: none;
}
.osano-cm-info-dialog-header__header {
  visibility: hidden;
  position: relative;
}
.osano-cm-info-dialog-header__header:after {
  visibility: visible;
  position: absolute;
  top: 15px;
  left: 10px;
  white-space: nowrap;
  content: 'Sharing Settings';
}
.osano-cm-drawer-item {
  margin-bottom: 1.5em;
}
#osano-cm-consent--view {
  display: none;
}
#osano-cm-consent--view + p {
  display: none;
}
.osano-cm-disclosure--collapse {
  display: none;
}

.osano-cm-toggle__input + .osano-cm-toggle__switch::before {
  content: 'OFF';
  text-indent: 23px;
  line-height: 2.7;
  color: black;
  font-size: 0.625em;
}
.osano-cm-toggle__input:checked + .osano-cm-toggle__switch::before {
  content: 'ON';
  text-indent: 8px;
  line-height: 2.7;
  color: black;
  font-size: 0.625em;
}
.osano-cm-toggle__input:disabled + .osano-cm-toggle__switch::before {
  color: white;
}
