/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 02 2025 | 01:39:26 */
        .languageBox {
            position: relative;
            cursor: pointer;
        }
        .languageBox:hover .language {
            display: block;
        }
        .language {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 120px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            border-radius: 6px;
            z-index: 1;
            padding: 10px;
            font-size: 12px;
        }
        .language a {
            padding: 6px;
            display: block;
            color: black;
            text-decoration: none;
        }
        .language a:hover {
            color: red;
        }