.sbsg-button {
    align-items: center;
    background: #fff;
    border: 3px solid #111;
    border-radius: 9px;
    box-shadow: 4px 4px 0 #111;
    color: #111;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 9px;
    letter-spacing: .02em;
    line-height: 1;
    margin: 14px 0 18px;
    min-height: 38px;
    padding: 0 14px;
    text-transform: uppercase;
}

.sbsg-button:hover {
    background: #ffc400;
}

.sbsg-button-icon,
.sbsg-button-icon::before,
.sbsg-button-icon::after {
    background: #111;
    border-radius: 2px;
    content: "";
    display: block;
    height: 2px;
    width: 12px;
}

.sbsg-button-icon::before {
    transform: translateY(-5px);
}

.sbsg-button-icon::after {
    transform: translateY(3px);
}

.sbsg-button-arrow {
    font-size: 22px;
    line-height: 1;
}

.sbsg-modal {
    display: none;
    inset: 0;
    position: fixed;
    z-index: 999999;
}

.sbsg-modal.is-open {
    display: block;
}

.sbsg-backdrop {
    background: rgba(0, 0, 0, .62);
    inset: 0;
    position: absolute;
}

.sbsg-dialog {
    background: #fff;
    border: 3px solid #111;
    border-radius: 14px;
    box-shadow: 8px 8px 0 #111;
    left: 50%;
    max-height: min(760px, calc(100vh - 32px));
    max-width: 760px;
    overflow: auto;
    padding: 28px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 32px);
}

.sbsg-close {
    align-items: center;
    background: #111;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 25px;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
}

.sbsg-eyebrow {
    color: #1a4cff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.sbsg-dialog h2 {
    font-size: clamp(26px, 5vw, 44px);
    line-height: 1;
    margin: 0 42px 12px 0;
    text-transform: uppercase;
}

.sbsg-note {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
}

.sbsg-table-wrap {
    overflow-x: auto;
}

.sbsg-table {
    border-collapse: collapse;
    min-width: 620px;
    width: 100%;
}

.sbsg-table th,
.sbsg-table td {
    border-bottom: 2px dashed #111;
    padding: 14px 12px;
    text-align: center;
}

.sbsg-table th {
    background: #111;
    color: #ffc400;
    font-size: 13px;
    text-transform: uppercase;
}

.sbsg-table td:first-child {
    background: #ffc400;
    color: #111;
    font-weight: 900;
}

.sbsg-help {
    background: #f5f5f3;
    border-left: 5px solid #ffc400;
    margin-top: 22px;
    padding: 16px;
}

.sbsg-help strong {
    display: block;
    margin-bottom: 4px;
}

body.sbsg-lock {
    overflow: hidden;
}

@media (max-width: 520px) {
    .sbsg-dialog {
        border-radius: 10px;
        padding: 22px 16px;
    }
}
