.sg-r-header-promotion {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 6px;
    background: var(--blue-ribbon-950);
    border-radius: 50px;
}

.sg-r-header-bonus {
    flex: 1;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    grid-gap: 10px;
    color: var(--blue-ribbon-400);
    font-size: 24px;
    font-weight: 600;
}

.sg-r-header-bonus--ico {
    height: 48px;
    padding: 12px;
    background: var(--blue-ribbon-900);
    border-radius: 50%;
}

.sg-r-header-bonus--ico svg {
    width: 100%;
    height: 100%;
}

.sg-r-header-bonus-text {
    line-height: 24px;
}

.sg-r-header-promo {
    text-align: center;
    padding: 12px 24px;
    background: var(--blue-ribbon-400);
    color: var(--spun-pearl-100);
    border: 2px dashed var(--blue-ribbon-600);
    border-radius: 32px;
    white-space: nowrap;
    transition: background ease .1s;
}

.sg-r-header-promo:hover {
    background: var(--blue-ribbon-500);
}

.sg-r-header-promo .copy-code,
.sg-r-header-promo .copy-code:hover {
    color: var(--white);
}

.sg-r-header-promo .copy-code-text, 
.sg-r-header-promo .copy-code:hover .copy-code-text {
    border-color: var(--white);
}

.sg-r-header-promotion .csp-btn {
    font-size: 16px;
    padding: 0 32px;
    height: 48px;
    border-radius: 50px;
}

@media (max-width: 1199px) {
    .sg-r-header-promotion {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .sg-r-header-bonus {
        font-size: 20px;
    }

    .sg-r-header-promo {
        flex: 0 0 auto;
    }

    .sg-r-header-promotion .csp-btn {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .sg-r-header-promotion {
        order: 0;
        padding: 12px;
        gap: 12px;
        text-align: center;
        justify-content: center;
        border-radius: 0;
    }

    .sg-r-header-bonus {
        display: block;
        flex-basis: 100%;
    }

    .sg-r-header-bonus--ico {
        display: none;
    }

    .sg-r-header-promotion .csp-btn {
        flex-basis: auto;
    }
}

@media (max-width: 576px) {
    .sg-r-header-promo {
        flex-basis: 100%;
    }

    .sg-r-header-promotion .csp-btn {
        min-width: 142px;
    }
}