/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 28 2026 | 23:06:07 */
.glass-box{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.18) !important;
    border: 1px solid rgba(255,255,255,0.45) !important;
    box-shadow:
        0 10px 30px rgba(93, 63, 145, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.55) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.glass-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0.28) 0%,
        rgba(255,255,255,0.12) 35%,
        rgba(255,255,255,0) 70%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 1;
}

.glass-box::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.glass-box > *{
    position: relative;
    z-index: 2;
}