/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 15 2023 | 00:20:43 */
/* Link underline */
.link-underline a{
    display: inline-block;
    padding: 0 !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    color: inherit !important;
    position: relative;
}
.link-underline a::after{
    content: "";
    transform: scale(1, 1);
    transform-origin: left;
    transition: color 0.2s ease-in-out 0.3s, transform 0.35s ease-out;
    position: absolute;
    bottom: 2px;
    width: 100%;
    left: 0;
    background-color: var( --e-global-color-primary );
    height: 1px;
}
.link-underline.white a::after{
    background-color: white;
}
.link-underline a:hover::after{
    transform-origin: right;
    transition: color 0.2s ease-in-out, transform 0.35s ease-in;
    transform: scale(0, 1);
}
