
  div.svelte-e8sysn {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: var(--svg-square-size, var(--svg-width, 100%));
    height: var(--svg-square-size, 100%);
    border-radius: var(--borderRadius, 0);
    overflow: hidden;
  }
  div.svelte-e8sysn > svg {
    width: var(--svg-square-size, var(--svg-width, 100%));
    height: var(--svg-square-size, 100%);
  }
  div.rotate.svelte-e8sysn {
    animation: svelte-e8sysn-spin 1s infinite linear;
  }

  @keyframes svelte-e8sysn-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
:root {
  --black: #1e282d;
  --blackTransparent: rgba(30, 40, 45, 0.8);
  --white: #ffffff;
  --whiteTransparent: rgba(255, 255, 255, 0.8);
  --lighterGray: #faf9f5;
  --lightGray: #f4f4f4;
  --gray: #e7e6e2;
  --menuBorder: #4b5357;
  --darkGray: #5e5c58;
  --blue: #39a5db;
  --lightBlue: #8ec1db;
  --linkColor: #3d64a3;
  --pink: #CD006E;
  --pinkText: #CD006E;
  --red: red;
  --lightRed: #ffe4e7;
  --yellow: #f5ce50;
  --lightYellow: #f5ecce;
  --fieldGray: #dfdfdf;
  --green: #08cb08;
  --lightGreen: #def8cc;
  --brownOnYellow: #40340d;
  --boxShadow: rgba(0, 0, 0, 0.3);

  /* variables prefixed --cetera are external and set  inside _publication-style.html.erb */
  --publication-color-fallback: var(--black);
  --publication-color-inverted-fallback: var(--white);

  --background-color: var(
    --cetera-background-color,
    var(--lightGray)
  );
  --header-background-color: var(
    --cetera-publication-header-background-color,
    var(--white)
  );
  --header-border-color: var(
    --cetera-publication-header-border-color,
    var(--black)
  );
  --publication-color: var(
    --cetera-publication-color,
    var(--publication-color-fallback)
  );
  --publication-color-inverted: var(
    --cetera-publication-color-inverted,
    var(--publication-color-inverted-fallback)
  );

}
    div.svelte-8zhnag {
        width: 100%;
    }
    div.svelte-8zhnag.aid-logo--a {
        fill: var(--pink);
    }
    div.svelte-8zhnag.aid-logo--id {
        fill:var(--black);
    }
