/*
 * Harmonize the theme's "success" green (#28c76f by default, from
 * colors.min.css) with the site's chosen green (#19763F) wherever it's
 * used on the public portfolio: the "Télécharger PDF" button (.btn-success)
 * and the timeline's checkmark bullets (.timeline-icon.bg-success).
 */
.btn-success {
    border-color: #19763F !important;
    background-color: #19763F !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    border-color: #145c31 !important;
    background-color: #145c31 !important;
}
.timeline-icon.bg-success {
    background-color: #19763F !important;
}

/* components.min.css gives the PDF button a permanent green glow
   (.buy-now .btn box-shadow) that it only clears on :hover - drop the
   glow outright instead of having it flash on/off with the cursor. */
.buy-now .btn,
.buy-now .btn:hover {
    box-shadow: none !important;
}
