.sticky-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 2;
  display: none;
  background-color: var(--color-surface-default, #FFFFFF);
}
.sticky-bar[style="position: relative;"] {
  display: block;
}
.sticky-bar[style] {
  display: block;
}
.sticky-bar .custom-width-viewport {
  position: absolute;
  height: 100%;
  background-color: rgb(255, 255, 255);
  border-top: 1px solid rgb(213, 213, 213);
}
.sticky-bar .custom-container {
  position: relative;
  z-index: 1;
}
.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm, 8px) 0;
  gap: var(--space-xs, 4px);
}
.sticky-content .description {
  flex: 1;
}
.sticky-content .description p {
  margin-bottom: 0;
}
.container:has(.content_bottom .sticky-bar),
.content_bottom:has(.sticky-bar),
.block--type-sticky-bar-block,
.block--type-sticky-bar-block .block__content,
.block--type-sticky-bar-block .block__content > .field,
.block--type-sticky-bar-block .block__content > .field > .paragraph {
  display: contents;
}
.sticky-content:not(:has(.description)) .text-end,
.sticky-content:not(:has(.description)) .text-center,
.sticky-content:not(:has(.description)) .text-start {
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .sticky-content {
    flex-direction: column;
  }
  .sticky-content .text-end,
  .sticky-content .text-center,
  .sticky-content .text-start,
  .sticky-content .button {
    width: 100%;
    justify-content: center;
  }
}
