.wf-force-outline-none[tabindex="-1"]:focus{outline:none;}
@media (min-width:992px) {html.w-mod-js:not(.w-mod-ix) [data-w-id="28f0a873-d5b1-a838-9637-1b8f392d66c9"] {-webkit-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);}html.w-mod-js:not(.w-mod-ix) [data-w-id="28f0a873-d5b1-a838-9637-1b8f392d66c7"] {-webkit-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);}html.w-mod-js:not(.w-mod-ix) [data-w-id="d238f74e-8739-1cad-400d-9f3a10c312bf"] {-webkit-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);}html.w-mod-js:not(.w-mod-ix) [data-w-id="d238f74e-8739-1cad-400d-9f3a10c312bd"] {-webkit-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);}}
.anti-flicker, .anti-flicker * {visibility: hidden !important; opacity: 0 !important;}
[data-wf-hidden-variation], [data-wf-hidden-variation] * {
        display: none !important;
      }

html[data-intellimize-anti-flicker-rendering] [data-wf-experience-417241106]:not([data-intellimize-anti-flicker-exp-417241106]), html[data-intellimize-anti-flicker-rendering] [data-wf-experience-417241106]:not([data-intellimize-anti-flicker-exp-417241106]) *, html[data-intellimize-anti-flicker-rendering] [data-wf-style-experience-417241106]:not([data-intellimize-anti-flicker-exp-417241106]), html[data-intellimize-anti-flicker-rendering] [data-wf-style-experience-417241106]:not([data-intellimize-anti-flicker-exp-417241106]) * { visibility: hidden !important; opacity: 0 !important; }

  /* Container styles */
  .bb-custom-select-container {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  /* Opener button styles */
  .bb-custom-select-opener {
    display: none;
  }

  /* Disabled state styles */
  .bb-custom-select-container.bb-is-disabled .bb-custom-select-opener {
    background-color: #e9ecef;
    border-color: #505050;
    color: #6c757d;
    cursor: not-allowed;
  }

  /* Add not-allowed cursor to the entire container when disabled */
  .bb-custom-select-container.bb-is-disabled {
    cursor: not-allowed;
  }

  /* Also ensure the select element shows not-allowed cursor when disabled */
  .bb-custom-select-container.bb-is-disabled select {
    cursor: not-allowed;
  }

  .bb-custom-select-container.bb-is-disabled .bb-custom-select-opener::after {
    border-top-color: #6c757d;
  }

  /* Add dropdown arrow */
  .bb-custom-select-opener::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
  }

  /* Rotate arrow when open */
  .bb-custom-select-opener.bb-is-open::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Keep native select visible */
  .bb-customSelect select {
    position: relative;
    width: 100%;
  }

  /* Dropdown panel */
  .bb-custom-select-panel {
    display: none;  /* Hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999999; /* Should always be on top of other elements */
    margin-top: 4px;
    width: max-content; /* Allow panel to grow based on content */
    min-width: 100%;   /* But ensure it's at least as wide as the opener */
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
  }

  /* Show panel when container has bb-is-open class */
  .bb-custom-select-container.bb-is-open .bb-custom-select-panel {
    display: block;
  }

  /* Option styles */
  .bb-custom-select-option {
    padding: 6px 12px;
    line-height: 1.5;
    cursor: pointer;
    white-space: nowrap;
  }

  .bb-custom-select-option:hover,
  .bb-custom-select-option.bb-has-focus {
    background-color: #f0f9fa;
  }

  .bb-custom-select-option.bb-is-selected {
    background-color: #e9ecef;
  }
