:root {
  --isi-bg-color: var(--grey-light);
  --isi-box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.2);
  --isi-expand-button-bg-color: var(--grey-light);
  --isi-expand-button-width: 100px;
  --isi-expand-button-height: 30px;
  --isi-expand-button-font-color: var(--brand-primary);
  --isi-expand-button-border-radius: 0;
  --isi-h1-font-size: 18px;
  --isi-h1-color: var(--brand-primary);
  --isi-h1-font-weight: bold;
  --isi-h1-margin-top: 12px;
  --isi-h2-font-size: 16px;
  --isi-h2-color: var(--brand-primary);
  --isi-h2-font-weight: bold;
  --isi-h2-margin-top: 12px;
  --isi-p-font-size: 14px;
  --isi-p-color: var(--grey-dark);
  --isi-p-line-height: 1.2;
  --isi-p-margin-top: 0;
  --isi-li-margin-bottom: 0.5em;
  --isi-a-color: var(--brand-primary);
  --isi-a-text-decoration: underline;
  --isi-scrollbar-bg: var(--white);
  --isi-scrollbar-border: 1px solid var(--brand-primary);
  --isi-scrollbar-width: 12px;
  --isi-scrollbar-border-radius: 10px;
  --isi-scrollbar-indicator-bg: var(--brand-primary);
  --height-isi: 150px;
  --isi-height-collapsed: 150px;
}

.cope-core-isi-container.cope-core-isi-container-bg {
  background-color: var(--isi-bg-color);
}

.cope-core-isi-fixed[data-expanding-isi] {
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  transition: height 0.5s ease-in;
  height: var(--isi-height-collapsed);
  background-color: var(--isi-bg-color);
  box-shadow: var(--isi-box-shadow);
}
.cope-core-isi-fixed[data-expanding-isi] [data-expandable-content] {
  position: relative;
  transition: height 0.5s ease-in;
  overflow: hidden;
  min-height: 100%;
  height: var(--isi-height-collapsed);
}
.cope-core-isi-fixed[data-expanding-isi] [data-expandable-content] .cope-core-isi-container.cope-core-isi-container-bg {
  background-color: var(--isi-bg-color);
}
.cope-core-isi-fixed[data-expanding-isi] [data-expandable-content] .cope-core-isi-content {
  min-height: 100%;
  padding: 20px 0;
}
.cope-core-isi-fixed[data-expanding-isi] [data-expandable-content] .iScrollVerticalScrollbar {
  background: white;
  border-radius: var(--isi-scrollbar-border-radius);
  border: var(--isi-scrollbar-border);
  width: var(--isi-scrollbar-width) !important;
  z-index: 1 !important;
}
.cope-core-isi-fixed[data-expanding-isi] [data-expandable-content] .iScrollIndicator {
  background: var(--isi-scrollbar-indicator-bg) !important;
  border-radius: var(--isi-scrollbar-border-radius) !important;
  border: 2px solid var(--isi-scrollbar-bg) !important;
}
.cope-core-isi-fixed[data-expanding-isi] [data-toggle-expand-isi] {
  right: 0;
  bottom: 100%;
  width: var(--isi-expand-button-width);
  height: var(--isi-expand-button-height);
  position: absolute;
  box-shadow: var(--isi-box-shadow);
  background-color: var(--isi-expand-button-bg-color);
  color: var(--isi-expand-button-font-color);
  text-transform: uppercase;
  border-top-left-radius: var(--isi-expand-button-border-radius);
  font-family: var(--frutiger);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.cope-core-isi-fixed[data-expanding-isi] [data-toggle-expand-isi] .cope-core-isi-expand,
.cope-core-isi-fixed[data-expanding-isi] [data-toggle-expand-isi] .cope-core-isi-collapse {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  visibility: visible;
}
.cope-core-isi-fixed[data-expanding-isi] [data-toggle-expand-isi]::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 20px);
  height: 20px;
  top: 100%;
  left: -20px;
  right: 0;
  background-color: var(--isi-bg-color);
}
.cope-core-isi-fixed[data-expanding-isi]:not(.cope-core-isi-is-expanded) .cope-core-isi-collapse {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  height: 0;
}
.cope-core-isi-fixed[data-expanding-isi].cope-core-isi-is-expanded {
  height: 80vh;
}
.cope-core-isi-fixed[data-expanding-isi].cope-core-isi-is-expanded .cope-core-isi-expand {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  height: 0;
}
.cope-core-isi-fixed[data-expanding-isi].cope-core-isi-is-expanded .cope-core-isi-collapse {
  display: flex;
}

.cope-core-isi-content h1 {
  font-size: var(--isi-h1-font-size);
  color: var(--isi-h1-color);
  font-weight: var(--isi-h1-font-weight);
  margin-top: var(--isi-h1-margin-top);
}
.cope-core-isi-content h2 {
  font-size: var(--isi-h2-font-size);
  color: var(--isi-h2-color);
  font-weight: var(--isi-h2-font-weight);
  margin-top: var(--isi-h2-margin-top);
}
.cope-core-isi-content section :first-child {
  margin-top: 0;
}
.cope-core-isi-content ul,
.cope-core-isi-content li,
.cope-core-isi-content p {
  font-size: var(--isi-p-font-size);
  color: var(--isi-p-color);
  font-weight: var(--isi-p-font-weight);
  margin-top: var(--isi-p-margin-top);
}
.cope-core-isi-content ul {
  padding-left: 20px;
}
.cope-core-isi-content li {
  margin-bottom: var(--isi-li-margin-bottom);
}
.cope-core-isi-content a {
  color: var(--isi-a-color);
  text-decoration: var(--isi-a-text-decoration);
}
.cope-core-isi-content .cope-core-isi-single:after {
  clear: both;
  display: table;
  content: "";
}
.cope-core-isi-content .cope-core-isi-single:nth-of-type(1n + 2) {
  margin-top: 40px;
}
.cope-core-isi-content .isi-blackbox {
  padding: 20px;
  border: 1px solid black;
  margin-bottom: 20px;
  overflow: auto;
}
.cope-core-isi-content .isi-blackbox :last-child {
  margin-bottom: 0px;
}
.cope-core-isi-content .cope-core-isi-blackbox {
  display: none;
}
@media screen and (min-width: 768px) {
  .cope-core-isi-content .cope-core-isi-columns {
    display: flex;
    justify-content: space-between;
  }
  .cope-core-isi-content .cope-core-isi-columns .cope-core-isi-single {
    flex: 0 0 49%;
  }
  .cope-core-isi-content .cope-core-isi-columns .cope-core-isi-single:nth-of-type(1n + 2) {
    margin-top: 0;
  }
  .cope-core-isi-content .cope-core-isi-columns .cope-core-isi-single:nth-of-type(1n + 3) {
    display: none;
  }
}