/* Pricing Modal */
.bx-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; }
.bx-modal[aria-hidden="false"] { display: flex; }
.bx-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.bx-modal__dialog { position: relative; background: #fff; color: #000; max-width: 960px; width: calc(100% - 40px); max-height: 90vh; overflow: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 20px; }
.bx-modal__close { position: absolute; right: 12px; top: 8px; border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: #000; }
.bx-modal__title { margin: 0 0 12px 0; }
.bx-modal__note { margin-top: 8px; font-size: 14px; opacity: .8; }
.bx-modal__body { overflow-x: auto; }

.bx-modal table { width: 100%; border-collapse: collapse; }
.bx-modal th, .bx-modal td { padding: 10px 12px; border: 1px solid #eee; text-align: left; }
.bx-modal thead th { background: #000; color: #fff; font-weight: 400; }
.bx-modal tbody tr:nth-child(odd) td { background: #f7f7f7; }

