:root {
  --spacing-xs: 0.25rem;
  --spacing-s: 0.5rem;
  --spacing-m: 1rem;
  --spacing-l: 1.25rem;
  --spacing-xl: 1.5rem;
  --spacing-xxl: 2rem;
}

@media only screen and (width <= 380px) {
  :root {
    --spacing-xs: 0.25rem;
    --spacing-s: 0.25rem;
    --spacing-m: 0.5rem;
    --spacing-l: 0.75rem;
    --spacing-xl: 1rem;
    --spacing-xxl: 1.5rem;
  }
}
@media only screen and (width > 767px) {
  :root {
    --spacing-xs: 0.25rem;
    --spacing-s: 0.75rem;
    --spacing-m: 1rem;
    --spacing-l: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }
}
@media only screen and (width >= 1024px) {
  :root {
    --spacing-xs: 0.25rem;
    --spacing-s: 0.75rem;
    --spacing-m: 1rem;
    --spacing-l: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }
}
@layer framework {
  :root {
    --bulma-control-radius: var(--bulma-radius);
    --bulma-control-radius-small: var(--bulma-radius-small);
    --bulma-control-border-width: 1px;
    --bulma-control-height: 2.5em;
    --bulma-control-line-height: 1.5;
    --bulma-control-padding-vertical: calc(0.5em - 1px);
    --bulma-control-padding-horizontal: calc(0.75em - 1px);
    --bulma-control-size: var(--bulma-size-normal);
    --bulma-control-focus-shadow-l: 50%;
  }
  .modal-close {
    --bulma-delete-dimensions: 1.25rem;
    --bulma-delete-background-l: 0%;
    --bulma-delete-background-alpha: 0.5;
    --bulma-delete-color: var(--bulma-white);
    appearance: none;
    background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-delete-background-l), var(--bulma-delete-background-alpha));
    border: none;
    border-radius: var(--bulma-radius-rounded);
    cursor: pointer;
    pointer-events: auto;
    display: inline-flex;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 1em;
    height: var(--bulma-delete-dimensions);
    max-height: var(--bulma-delete-dimensions);
    max-width: var(--bulma-delete-dimensions);
    min-height: var(--bulma-delete-dimensions);
    min-width: var(--bulma-delete-dimensions);
    outline: none;
    position: relative;
    vertical-align: top;
    width: var(--bulma-delete-dimensions);
  }
  .modal-close::before, .modal-close::after {
    background-color: var(--bulma-delete-color);
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
  }
  .modal-close::before {
    height: 2px;
    width: 50%;
  }
  .modal-close::after {
    height: 50%;
    width: 2px;
  }
  .modal-close:hover, .modal-close:focus {
    --bulma-delete-background-alpha: 0.4;
  }
  .modal-close:active {
    --bulma-delete-background-alpha: 0.5;
  }
  .is-small.modal-close {
    --bulma-delete-dimensions: 1rem;
  }
  .is-medium.modal-close {
    --bulma-delete-dimensions: 1.5rem;
  }
  .is-large.modal-close {
    --bulma-delete-dimensions: 2rem;
  }
  .modal, .modal-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .modal {
    --bulma-modal-z: 40;
    --bulma-modal-background-background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.86);
    --bulma-modal-content-width: 28rem;
    --bulma-modal-content-margin-mobile: 1.25rem;
    --bulma-modal-content-spacing-mobile: 10rem;
    --bulma-modal-content-spacing-tablet: 2.5rem;
    --bulma-modal-close-dimensions: 2.5rem;
    --bulma-modal-close-right: 1.25rem;
    --bulma-modal-close-top: 1.25rem;
    --bulma-modal-card-spacing: 2.5rem;
    --bulma-modal-card-head-background-color: var(--bulma-scheme-main);
    --bulma-modal-card-head-padding: 2rem;
    --bulma-modal-card-head-radius: var(--bulma-radius-large);
    --bulma-modal-card-title-color: var(--bulma-text-strong);
    --bulma-modal-card-title-line-height: 1;
    --bulma-modal-card-title-size: var(--bulma-size-4);
    --bulma-modal-card-foot-background-color: var(--bulma-scheme-main-bis);
    --bulma-modal-card-foot-radius: var(--bulma-radius-large);
    --bulma-modal-card-body-background-color: var(--bulma-scheme-main);
    --bulma-modal-card-body-padding: 2rem;
  }
  .modal {
    align-items: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: var(--bulma-modal-z);
  }
  .modal.is-active {
    display: flex;
  }
  .modal-background {
    background-color: var(--bulma-modal-background-background-color);
  }
  .modal-content,
  .modal-card {
    margin: 0 var(--bulma-modal-content-margin-mobile);
    max-height: calc(100vh - var(--bulma-modal-content-spacing-mobile));
    overflow: auto;
    position: relative;
    width: 100%;
  }
  @media screen and (min-width: 769px) {
    .modal-content,
    .modal-card {
      margin: 0 auto;
      max-height: calc(100vh - var(--bulma-modal-content-spacing-tablet));
      width: var(--bulma-modal-content-width);
    }
  }
  .modal-close {
    background: none;
    height: var(--bulma-modal-close-dimensions);
    inset-inline-end: var(--bulma-modal-close-right);
    position: fixed;
    top: var(--bulma-modal-close-top);
    width: var(--bulma-modal-close-dimensions);
  }
  .modal-card {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - var(--bulma-modal-card-spacing));
    overflow: hidden;
    overflow-y: visible;
  }
  .modal-card-head,
  .modal-card-foot {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    padding: var(--bulma-modal-card-head-padding);
    position: relative;
  }
  .modal-card-head {
    background-color: var(--bulma-modal-card-head-background-color);
    border-start-start-radius: var(--bulma-modal-card-head-radius);
    border-start-end-radius: var(--bulma-modal-card-head-radius);
    box-shadow: var(--bulma-shadow);
  }
  .modal-card-title {
    color: var(--bulma-modal-card-title-color);
    flex-grow: 1;
    flex-shrink: 0;
    font-size: var(--bulma-modal-card-title-size);
    line-height: var(--bulma-modal-card-title-line-height);
  }
  .modal-card-foot {
    background-color: var(--bulma-modal-card-foot-background-color);
    border-end-start-radius: var(--bulma-modal-card-foot-radius);
    border-end-end-radius: var(--bulma-modal-card-foot-radius);
  }
  .modal-card-body {
    -webkit-overflow-scrolling: touch;
    background-color: var(--bulma-modal-card-body-background-color);
    flex-grow: 1;
    flex-shrink: 1;
    overflow: auto;
    padding: var(--bulma-modal-card-body-padding);
  }
}
@layer components {
  /* Tweaks to modal defaults */
  .modal {
    z-index: 1001;
  }
  .modal-background {
    background-color: rgba(10, 10, 10, 0.7);
  }
  .modal-card {
    border: 4px solid rgb(65, 81, 201);
    border-radius: 0.75rem;
    position: relative;
  }
  @media only screen and (width <= 768px) {
    .modal-card {
      width: calc(100% - 2rem);
    }
  }
  .modal-card button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgb(65, 81, 201) !important;
  }
  .modal-card-head {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: #fff !important;
    border: none !important;
  }
  .modal-card-head .tag {
    font-size: 0.75rem;
  }
  .modal-card-head .tag:first-of-type {
    margin-left: 2rem;
  }
  .modal-card-head .tag.alcohol, .modal-card-head .tag.tobacco, .modal-card-head .tag.adult-entertainment, .modal-card-head .tag.adult-entertainmentpornography, .modal-card-head .tag.gambling {
    background-color: #a8a0ff;
  }
  .modal-card-head .tag.animal-testing, .modal-card-head .tag.animal-welfare-issues, .modal-card-head .tag.controversies, .modal-card-head .tag.factory-farming, .modal-card-head .tag.high-intensity-poultry, .modal-card-head .tag.fur-and-speciality-leather, .modal-card-head .tag.fur-speciality-leather, .modal-card-head .tag.fur-and-leather {
    background-color: #dd4d7d;
    color: white;
  }
  .modal-card-head .tag.firearms, .modal-card-head .tag.small-arms, .modal-card-head .tag.military-weapons, .modal-card-head .tag.military-contracting, .modal-card-head .tag.controversial-weapons, .modal-card-head .tag.nuclear-weapons {
    background-color: #7f4350;
    color: white;
  }
  .modal-card-head .tag.fossil-fuel-power-generation, .modal-card-head .tag.coal-generation, .modal-card-head .tag.shale-energy, .modal-card-head .tag.oil-and-gas-generation, .modal-card-head .tag.fossil-fuel-production, .modal-card-head .tag.thermal-coal-production, .modal-card-head .tag.arctic-oil-and-gas, .modal-card-head .tag.oil-sands {
    background: #2b358a;
    color: white;
  }
  .modal-card-head .tag.gmos, .modal-card-head .tag.pesticides, .modal-card-head .tag.highly-hazardous-pesticides, .modal-card-head .tag.highly-hazardous-chemicals, .modal-card-head .tag.environmental-damage, .modal-card-head .tag.deforestation, .modal-card-head .tag.palm-oil {
    background-color: #57c7a9;
    color: white;
  }
  .modal-card-head .tag.human-rights, .modal-card-head .tag.human-rights-abuses, .modal-card-head .tag.labour-rights, .modal-card-head .tag.labour-rights-violations, .modal-card-head .tag.war-conflict, .modal-card-head .tag.war-and-conflict, .modal-card-head .tag.public-safety, .modal-card-head .tag.public-safety-issues, .modal-card-head .tag.business-ethics {
    background-color: #feba57;
  }
  .modal-card-body {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .modal-card-body p {
    margin-bottom: 1rem;
  }
}
@layer components {
  #fundsheader {
    border-bottom-color: rgb(214, 213, 211);
    background: rgb(255, 255, 255);
  }
  #fundsheader .column.fund-list-concerns,
  #fundsheader .column.fund-list-disclosure,
  #fundsheader .column.fund-list-fund-type {
    font-weight: 400;
    font-size: 16px;
    padding: 25px 15px;
  }
  #fundsheader .column.fund-list-header-with-icon {
    gap: 0.5rem;
  }
  #fundsheader .fund-list-name .fund-list-name-content,
  #fundslist .fund-list-name .fund-list-name-content {
    padding: var(--spacing-m);
  }
  #fundslist .column.fund-list-concerns .fund-list-concerns-mobile-info {
    margin-inline-start: 0.5rem;
  }
  @media (width <= 767px) {
    #fundsheader .column.fund-list-concerns {
      flex-grow: 3;
      text-align: left !important;
    }
  }
  #fundslist li {
    background: rgb(247, 247, 247);
    border-bottom-color: rgb(255, 255, 255);
  }
  #fundslist li:nth-child(2n+1) {
    background: rgb(255, 255, 255);
  }
  #fundslist li section {
    color: rgb(83, 81, 77);
  }
  #fundslist li section .open a {
    color: rgb(15, 22, 86);
  }
  @media (width <= 767px) {
    #fundslist .columns .column.fund-list-concerns {
      flex-grow: 3;
      text-align: left !important;
    }
  }
}
