/* Shared button styles */

.btn {
    border: none;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 40px;
    line-height: 1;
}

[hidden] {
    display: none !important;
}

.btn:hover:not(:disabled) {
    background: #333;
}

.btn:disabled {
    background: #f0f0f0;
    color: #b5b5b5;
    cursor: not-allowed;
    border: none;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-outline {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.btn-outline:hover:not(:disabled) {
    background: #000;
    color: #fff;
}

.btn-danger {
    background: #c53030;
    color: #fff;
    border: none;
}

.btn-danger:hover:not(:disabled) {
    background: #9b1c1c;
}

.btn-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    padding: 0;
    font-size: 16px;
    line-height: 1;
}

.btn-block {
    width: 100%;
}
