/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 12 2025 | 11:10:39 */
.px_button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.px_button::before {
    content: "";
    position: absolute;
    display: block !important;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #000;
    transform: translateX(-100%);
    transition: all 0.4s;
}
.px_button:hover::before {
    transform: translateX(0);
}
.px_button::after {
    display: none !important;
}