/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 16 2025 | 16:06:18 */
.floating-bar-container {
  position: sticky;
  z-index: 99;
  top: 66px;
  background-color: var(--background);
  box-shadow: 0 2px 2px -2px transparent;
  /*
  * Force fullwidth
  */
}
.floating-bar-container.show-border-bottom {
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1000px) {
  .floating-bar-container {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
  }
}
@media (max-width: 1000px) {
  .floating-bar-container {
    overflow-x: scroll;
    top: 56px;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
  .floating-bar-container .floating-bar {
    flex-wrap: nowrap;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .floating-bar-container .gb-button {
    display: block;
    white-space: nowrap;
  }
}
