.pukos-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
}

.pukos-btn {
    appearance: none;
    border: 0;
    border-radius: 8px;
    padding: 11px 17px;
    background: #1677ed;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.pukos-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.pukos-btn:disabled {
    opacity: .55;
    cursor: wait;
    transform: none;
}

.pukos-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
    line-height: 0;
}

.pukos-status {
    display: block;
    flex-basis: 100%;
    min-height: 18px;
    text-align: center;
    font-size: 13px;
    color: #555;
}

@media (max-width: 480px) {
    .pukos-wrap {
        gap: 8px;
    }

    .pukos-btn {
        flex: 1 1 auto;
        min-width: 145px;
        padding: 10px 12px;
        font-size: 13px;
    }
}
