/* ==========================================
   BUTTON SYSTEM
========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 24px;

    border: none;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;

    text-decoration: none;
}

.btn:hover{
    transform: translateY(-2px);
}

.btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}

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

.btn-primary:hover{
    background:#000;
}

.btn-secondary{
    background:#fff;
    color:#111;

    border:1px solid #ddd;
}

.btn-secondary:hover{
    background:#f6f6f6;
}

.btn-success{
    background:#25D366;
    color:#fff;
}

.btn-success:hover{
    background:#1ebe5d;
}

.btn-danger{
    background:#e53935;
    color:#fff;
}

.btn-danger:hover{
    background:#c62828;
}

.btn-outline{
    background:transparent;

    color:#111;

    border:2px solid #111;
}

.btn-outline:hover{

    background:#111;

    color:#fff;

}

.btn-block{

    width:100%;

}
.btn-sm{

    padding:10px 18px;

    font-size:14px;

}
.btn-lg{

    padding:18px 30px;

    font-size:16px;

}
