.wccnp-wrap {
    display: flex;
    width: 100%;
    margin: 12px 0;
    box-sizing: border-box;
}

.wccnp-align-left {
    justify-content: flex-start;
}

.wccnp-align-center {
    justify-content: center;
}

.wccnp-align-right {
    justify-content: flex-end;
}

.wccnp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 20px;
    background: var(--wccnp-bg);
    color: var(--wccnp-text) !important;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1;
    border: 0;
    cursor: pointer;
    transition: background-color .2s ease, opacity .2s ease, transform .2s ease;
    white-space: nowrap;
}

.wccnp-button:hover,
.wccnp-button:focus {
    background: var(--wccnp-hover);
    color: var(--wccnp-text) !important;
    text-decoration: none !important;
}

.wccnp-button:active {
    transform: translateY(1px);
}

@media (max-width: 480px) {
    .wccnp-button {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}
