.ot-factbox {
  box-sizing: border-box;
  position: relative;
  background-color: var(--ot-factbox-background);
  padding: var(--ot-factbox-padding);
  width: 100%;
  margin: 0;
  color: var(--ot-factbox-color);
}
.ot-factbox .ck-placeholder {
  font-style: italic;
}
.ot-factbox .ot-factbox-title {
  font-size: var(--ot-factbox-title-size);
  line-height: var(--ot-factbox-title-line-height);
  font-weight: var(--ot-factbox-title-weight);
  margin-bottom: var(--ot-factbox-margin);
  color: var(--ot-factbox-color);
}
.ot-factbox .ot-factbox-content {
  font-size: var(--ot-factbox-content-size);
  line-height: var(--ot-factbox-content-line-height);
}
.ot-factbox .ot-factbox-content p {
  margin-top: 0 !important;
  color: var(--ot-factbox-color);
}
.ot-factbox .ot-factbox-content p:last-child {
  margin-bottom: 0 !important;
}
.ot-factbox .ot-factbox-content p a {
  color: var(--ot-factbox-link-color);
}
.ot-factbox .ot-factbox-content p a:hover {
  color: var(--ot-factbox-link-hover-color);
}
.ot-factbox .ot-factbox-content p a:visited {
  color: var(--ot-factbox-link-hover-color);
}
.ot-factbox .ot-factbox-content + .ot-factbox-caption {
  margin-top: var(--ot-factbox-margin);
}
.ot-factbox .ot-factbox-caption {
  padding: 0 !important;
  background-color: transparent;
  font-size: var(--ot-factbox-caption-size);
  line-height: var(--ot-factbox-caption-line-height);
  color: var(--ot-factbox-color);
  font-weight: var(--ot-factbox-caption-weight);
}
.ot-factbox.collapsible .ot-factbox-content {
  overflow: hidden;
}
.ot-factbox.collapsible .ot-factbox-content-wrapper {
  position: relative;
  display: grid;
  transition: grid-template-rows 0.25s ease-in-out, max-height 0.25s ease-in-out;
}
.ot-factbox.collapsible .ot-factbox-footer {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: var(--ot-factbox-padding) 0;
  margin-top: var(--ot-factbox-margin);
  background: inherit;
}
.ot-factbox.collapsible .ot-factbox-footer:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--ot-factbox-background));
  pointer-events: none;
}
.ot-factbox.collapsible .ot-factbox-btn {
  /* reset */
  padding: 0;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 12px;
  color: inherit;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--ot-factbox-collapse-button);
  color: var(--ot-factbox-collapse-button-color);
  margin: 0 auto;
}
.ot-factbox.collapsible .ot-factbox-btn:after {
  content: "+";
  display: block;
  font-size: 1.2rem;
}
.ot-factbox.collapsible .ot-factbox-btn span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.ot-factbox.collapsible .ot-factbox-btn:hover {
  filter: brightness(120%);
}
.ot-factbox.collapsible.ot-factbox-wrapper_collpased .ot-factbox-content-wrapper {
  grid-template-rows: 0.65fr;
  max-height: var(--ot-factbox-collapsed-height);
}
.ot-factbox.collapsible.ot-footer-static .ot-factbox-footer {
  position: static;
  padding: 0;
}
.ot-factbox.collapsible.ot-footer-static .ot-factbox-footer:before {
  content: none;
}
.ot-factbox.collapsible.open:after {
  opacity: 0;
  pointer-events: none;
  height: 0;
  top: auto;
}
.ot-factbox.collapsible.open .ot-factbox-content-wrapper {
  grid-template-rows: 1fr;
  max-height: unset;
}
.ot-factbox.collapsible.open .ot-factbox-btn:after {
  content: "-";
}
/*# sourceMappingURL=maps/ot-factbox.frontend.css.map */
