/* ==========================================================================
   MN WooEngine - Public Styles
   ========================================================================== */

/* Common Button */
.mnwe-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    line-height: 1.5;
    text-align: center;
}

.mnwe-btn--primary {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.mnwe-btn--primary:hover {
    background: #135e96;
    color: #fff;
}

.mnwe-btn--secondary {
    background: #f0f0f1;
    color: #1d2327;
    border-color: #ddd;
}

.mnwe-btn--secondary:hover {
    background: #dcdcde;
    color: #1d2327;
}

.mnwe-btn--sm {
    padding: 4px 12px;
    font-size: 12px;
}

.mnwe-btn--danger {
    background: #d63638;
    color: #fff;
    border-color: #d63638;
}

.mnwe-btn--danger:hover {
    background: #b32d2e;
    color: #fff;
}
